diff --git a/crates/pico-quarto-render/src/main.rs b/crates/pico-quarto-render/src/main.rs index b28b9e9..d656212 100644 --- a/crates/pico-quarto-render/src/main.rs +++ b/crates/pico-quarto-render/src/main.rs @@ -127,6 +127,7 @@ fn process_qmd_file( qmd_path.to_str().unwrap_or(""), &mut output_stream, true, + None, ) .map_err(|diagnostics| { // Format error messages using DiagnosticMessage API diff --git a/crates/qmd-syntax-helper/src/conversions/apostrophe_quotes.rs b/crates/qmd-syntax-helper/src/conversions/apostrophe_quotes.rs new file mode 100644 index 0000000..5fa0bb3 --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/apostrophe_quotes.rs @@ -0,0 +1,199 @@ +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 ApostropheQuotesConverter {} + +#[derive(Debug, Clone)] +struct ApostropheViolation { + offset: usize, // Offset of the apostrophe character + error_location: Option, // For reporting +} + +impl ApostropheQuotesConverter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-10 apostrophe violations + fn get_apostrophe_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-10 error + if diagnostic.code.as_deref() != Some("Q-2-10") { + continue; + } + + // Extract location + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(ApostropheViolation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content 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 { + // The offset points to the space after the apostrophe, + // so we need to insert the backslash at offset-1 (before the apostrophe) + result.insert(violation.offset - 1, '\\'); + } + + 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 ApostropheQuotesConverter { + fn name(&self) -> &str { + "apostrophe-quotes" + } + + fn description(&self) -> &str { + "Fix Q-2-10: Escape apostrophes misinterpreted as quote closes" + } + + fn check(&self, file_path: &Path, _verbose: bool) -> Result> { + let violations = self.get_apostrophe_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-10 apostrophe violation at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-10".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_apostrophe_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-10 apostrophe 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-10 apostrophe 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-10 apostrophe 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/attribute_ordering.rs b/crates/qmd-syntax-helper/src/conversions/attribute_ordering.rs index e536e7e..43ada18 100644 --- a/crates/qmd-syntax-helper/src/conversions/attribute_ordering.rs +++ b/crates/qmd-syntax-helper/src/conversions/attribute_ordering.rs @@ -49,6 +49,7 @@ impl AttributeOrderingConverter { &filename, &mut sink, true, + None, ); let diagnostics = match result { diff --git a/crates/qmd-syntax-helper/src/conversions/div_whitespace.rs b/crates/qmd-syntax-helper/src/conversions/div_whitespace.rs new file mode 100644 index 0000000..e40972f --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/div_whitespace.rs @@ -0,0 +1,360 @@ +use anyhow::{Context, Result}; +use colored::Colorize; +use std::fs; +use std::path::Path; + +use crate::rule::{CheckResult, ConvertResult, Rule}; +use crate::utils::file_io::{read_file, write_file}; + +pub struct DivWhitespaceConverter {} + +impl DivWhitespaceConverter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Parse a file and get diagnostic messages + fn get_parse_errors( + &self, + file_path: &Path, + ) -> Result> { + let content = fs::read_to_string(file_path) + .with_context(|| format!("Failed to read file: {}", file_path.display()))?; + + // Use the quarto-markdown-pandoc library to parse with JSON error formatter + 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, + ); + + match result { + Ok(_) => Ok(Vec::new()), // No errors + Err(diagnostics) => { + // Return diagnostic messages directly + Ok(diagnostics) + } + } + } + + /// Find div fence errors that need whitespace fixes + fn find_div_whitespace_errors( + &self, + content: &str, + errors: &[quarto_error_reporting::DiagnosticMessage], + ) -> Vec { + let mut fix_positions = Vec::new(); + let lines: Vec<&str> = content.lines().collect(); + + // Pre-compute line start offsets for O(1) lookup instead of O(N) per error + let mut line_starts = Vec::with_capacity(lines.len()); + let mut offset = 0; + for line in &lines { + line_starts.push(offset); + offset += line.len() + 1; // +1 for newline + } + + for error in errors { + // Skip errors that are not about div fences + // We're looking for "Missing Space After Div Fence" or errors on lines with ::: + let is_div_error = error.title.contains("Div Fence") || error.title == "Parse error"; + + if !is_div_error { + continue; + } + + // Extract row from location (if available) + // SourceInfo uses 0-indexed rows, div_whitespace uses them too + let error_row = error + .location + .as_ref() + .and_then(|loc| { + // Get the start offset from SourceInfo + let offset = loc.start_offset(); + // Binary search to find which line this offset is on + match line_starts.binary_search(&offset) { + Ok(idx) => Some(idx), + Err(idx) => { + if idx > 0 { + Some(idx - 1) + } else { + Some(0) + } + } + } + }) + .unwrap_or(0); + + // The error might be on the line itself or the line before (for div fences) + // Check both the current line and the previous line + let lines_to_check = if error_row > 0 { + vec![error_row - 1, error_row] + } else { + vec![error_row] + }; + + for &line_idx in &lines_to_check { + if line_idx >= lines.len() { + continue; + } + + let line = lines[line_idx]; + + // Check if this line starts with ::: followed immediately by { + let trimmed = line.trim_start(); + if let Some(after_colon) = trimmed.strip_prefix(":::") { + if after_colon.starts_with('{') { + // Calculate the position right after ::: + // We need byte offset, not char offset + // Use pre-computed offset for O(1) lookup + let line_start = line_starts[line_idx]; + + let indent_bytes = line.len() - trimmed.len(); + let fix_pos = line_start + indent_bytes + 3; // +3 for ":::" + + fix_positions.push(fix_pos); + break; // Found it, no need to check other lines for this error + } + } + } + } + + // Remove duplicates and sort + fix_positions.sort_unstable(); + fix_positions.dedup(); + + fix_positions + } + + /// Convert byte offset to row/column (1-indexed) + fn byte_offset_to_location( + &self, + content: &str, + byte_offset: usize, + ) -> crate::rule::SourceLocation { + let mut row = 1; + let mut column = 1; + let mut current_offset = 0; + + for ch in content.chars() { + if current_offset >= byte_offset { + break; + } + current_offset += ch.len_utf8(); + + if ch == '\n' { + row += 1; + column = 1; + } else { + column += 1; + } + } + + crate::rule::SourceLocation { row, column } + } + + /// Apply fixes to content by inserting spaces at specified positions + fn apply_fixes(&self, content: &str, fix_positions: &[usize]) -> String { + let mut result = String::with_capacity(content.len() + fix_positions.len()); + let mut last_pos = 0; + + for &pos in fix_positions { + // Copy content up to this position + result.push_str(&content[last_pos..pos]); + // Insert a space + result.push(' '); + last_pos = pos; + } + + // Copy remaining content + result.push_str(&content[last_pos..]); + + result + } + + /// Process a single file with iteration + #[allow(dead_code)] + pub fn process_file( + &self, + file_path: &Path, + in_place: bool, + check: bool, + verbose: bool, + ) -> Result<()> { + let max_iterations = 10; + let mut iteration = 0; + let mut total_fixes = 0; + + loop { + iteration += 1; + + // Get parse errors + let errors = self.get_parse_errors(file_path)?; + + if errors.is_empty() { + if verbose && iteration == 1 { + println!(" No div whitespace issues found"); + } + break; + } + + let content = read_file(file_path)?; + + // Find positions that need fixes + let fix_positions = self.find_div_whitespace_errors(&content, &errors); + + if fix_positions.is_empty() { + if verbose && iteration == 1 { + println!(" No div whitespace issues found"); + } + break; + } + + total_fixes += fix_positions.len(); + + if verbose || check { + let prefix = if iteration > 1 { " " } else { "" }; + println!( + "{} Found {} div fence(s) needing whitespace fixes", + prefix, + fix_positions.len().to_string().yellow() + ); + } + + if check { + // In check mode, don't write but continue to find all issues + let new_content = self.apply_fixes(&content, &fix_positions); + // Write to file temporarily for next iteration + write_file(file_path, &new_content)?; + } else { + // Apply fixes + let new_content = self.apply_fixes(&content, &fix_positions); + + if in_place { + write_file(file_path, &new_content)?; + } else { + // For non-in-place, we need to work on content directly + // This is a limitation - for now just write and read back + write_file(file_path, &new_content)?; + } + } + + // Check max iterations + if iteration >= max_iterations { + if verbose { + println!(" Warning: Reached max iterations ({})", max_iterations); + } + break; + } + } + + if total_fixes > 0 { + if check { + println!(" {} No changes written (--check mode)", "✓".green()); + } else if verbose { + println!( + " {} Fixed {} div fence(s) in {} iteration(s)", + "✓".green(), + total_fixes, + iteration + ); + } else { + println!( + " {} Fixed {} div fence(s)", + "✓".green(), + total_fixes + ); + } + } + + Ok(()) + } +} + +impl Rule for DivWhitespaceConverter { + fn name(&self) -> &str { + "div-whitespace" + } + + fn description(&self) -> &str { + "Fix div fences missing whitespace (:::{ -> ::: {)" + } + + fn check(&self, file_path: &Path, verbose: bool) -> Result> { + let content = read_file(file_path)?; + let errors = self.get_parse_errors(file_path)?; + let fix_positions = self.find_div_whitespace_errors(&content, &errors); + + if verbose { + if fix_positions.is_empty() { + println!(" No div whitespace issues found"); + } else { + println!( + " Found {} div fence(s) needing whitespace fixes", + fix_positions.len() + ); + } + } + + let mut results = Vec::new(); + for &pos in &fix_positions { + let location = self.byte_offset_to_location(&content, pos); + results.push(CheckResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + has_issue: true, + issue_count: 1, + message: Some("Div fence missing whitespace (:::{ should be ::: {)".to_string()), + location: Some(location), + error_code: None, + error_codes: None, + }); + } + + Ok(results) + } + + fn convert( + &self, + file_path: &Path, + in_place: bool, + check_mode: bool, + _verbose: bool, + ) -> Result { + let content = read_file(file_path)?; + let errors = self.get_parse_errors(file_path)?; + let fix_positions = self.find_div_whitespace_errors(&content, &errors); + + if fix_positions.is_empty() { + return Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: 0, + message: None, + }); + } + + let new_content = self.apply_fixes(&content, &fix_positions); + + if !check_mode { + if in_place { + write_file(file_path, &new_content)?; + } + } + + Ok(ConvertResult { + rule_name: self.name().to_string(), + file_path: file_path.to_string_lossy().to_string(), + fixes_applied: fix_positions.len(), + message: if in_place { + Some(format!("Fixed {} div fence(s)", fix_positions.len())) + } else { + Some(new_content) + }, + }) + } +} diff --git a/crates/qmd-syntax-helper/src/conversions/mod.rs b/crates/qmd-syntax-helper/src/conversions/mod.rs index 359d8d4..7181c9d 100644 --- a/crates/qmd-syntax-helper/src/conversions/mod.rs +++ b/crates/qmd-syntax-helper/src/conversions/mod.rs @@ -1,3 +1,20 @@ +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; +pub mod q_2_15; +pub mod q_2_16; +pub mod q_2_17; +pub mod q_2_18; +pub mod q_2_19; +pub mod q_2_20; +pub mod q_2_21; +pub mod q_2_22; +pub mod q_2_23; +pub mod q_2_24; +pub mod q_2_25; +pub mod q_2_26; diff --git a/crates/qmd-syntax-helper/src/conversions/q_2_11.rs b/crates/qmd-syntax-helper/src/conversions/q_2_11.rs new file mode 100644 index 0000000..8a0dfa1 --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_11.rs @@ -0,0 +1,209 @@ +// Q-2-11: Unclosed Double Quote +// +// This conversion rule fixes Q-2-11 errors by adding closing double quotes +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-11 +// Title: "Unclosed Double Quote" +// Message: "I reached the end of the block before finding a closing '\"' for the quote." +// +// Example: +// Input: "This is an unclosed quote +// Output: "This is an unclosed quote" +// + +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 Q211Converter {} + +#[derive(Debug, Clone)] +struct Q211Violation { + offset: usize, // Offset where closing quote should be added + error_location: Option, // For reporting +} + +impl Q211Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-11 unclosed double 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-11 error + if diagnostic.code.as_deref() != Some("Q-2-11") { + continue; + } + + // Extract location - this points to the end of the block + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q211Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by adding closing double quotes + 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 closing double quote at the error location (end of block) + 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 Q211Converter { + fn name(&self) -> &str { + "q-2-11" + } + + fn description(&self) -> &str { + "Fix Q-2-11: Add closing double quotes for unclosed quote marks" + } + + 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-11 unclosed double quote at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-11".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-11 unclosed double quote 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-11 unclosed double quote 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-11 unclosed double quote 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_12.rs b/crates/qmd-syntax-helper/src/conversions/q_2_12.rs new file mode 100644 index 0000000..b2b29a8 --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_12.rs @@ -0,0 +1,209 @@ +// Q-2-12: Unclosed Star Emphasis +// +// This conversion rule fixes Q-2-12 errors by adding closing star marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-12 +// Title: "Unclosed Star Emphasis" +// Message: "I reached the end of the block before finding a closing '*' for the emphasis." +// +// Example: +// Input: *This is an unclosed emphasis +// Output: *This is an unclosed emphasis* +// + +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 Q212Converter {} + +#[derive(Debug, Clone)] +struct Q212Violation { + offset: usize, // Offset where closing star should be added + error_location: Option, // For reporting +} + +impl Q212Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-12 unclosed star emphasis 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-12 error + if diagnostic.code.as_deref() != Some("Q-2-12") { + continue; + } + + // Extract location - this points to the end of the block + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q212Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by adding closing star marks + 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 closing star at the error location (end of block) + 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 Q212Converter { + fn name(&self) -> &str { + "q-2-12" + } + + fn description(&self) -> &str { + "Fix Q-2-12: Add closing star marks for unclosed emphasis" + } + + 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-12 unclosed star emphasis at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-12".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-12 unclosed star emphasis 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-12 unclosed star emphasis 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-12 unclosed star emphasis 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_13.rs b/crates/qmd-syntax-helper/src/conversions/q_2_13.rs new file mode 100644 index 0000000..6c55145 --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_13.rs @@ -0,0 +1,209 @@ +// Q-2-13: Unclosed Strong Star Emphasis +// +// This conversion rule fixes Q-2-13 errors by adding closing '**' marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error 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." +// +// Example: +// Input: **This is an unclosed strong +// Output: **This is an unclosed strong** +// + +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 Q213Converter {} + +#[derive(Debug, Clone)] +struct Q213Violation { + offset: usize, // Offset where closing ** should be added + error_location: Option, // For reporting +} + +impl Q213Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-13 unclosed strong star emphasis 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-13 error + if diagnostic.code.as_deref() != Some("Q-2-13") { + continue; + } + + // Extract location - this points to the end of the block + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q213Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by adding closing '**' marks + 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 closing ** at the error location (end of block) + result.insert_str(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 Q213Converter { + fn name(&self) -> &str { + "q-2-13" + } + + fn description(&self) -> &str { + "Fix Q-2-13: Add closing '**' marks for unclosed strong emphasis" + } + + 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-13 unclosed strong star emphasis at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-13".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-13 unclosed strong star emphasis 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-13 unclosed strong star emphasis 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-13 unclosed strong star emphasis 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_14.rs b/crates/qmd-syntax-helper/src/conversions/q_2_14.rs new file mode 100644 index 0000000..397373d --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_14.rs @@ -0,0 +1,196 @@ +// Q-2-14: Unclosed Underscore Emphasis +// +// This conversion rule fixes Q-2-14 errors by adding closing '_' marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-14 +// Title: "Unclosed Underscore Emphasis" +// Message: "I reached the end of the block before finding a closing '_' for the emphasis." +// +// Example: +// Input: _This is an unclosed emphasis +// Output: _This is an unclosed emphasis_ +// + +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 Q214Converter {} + +#[derive(Debug, Clone)] +struct Q214Violation { + offset: usize, + error_location: Option, +} + +impl Q214Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + 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()))?; + + 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, + &filename, + &mut sink, + true, + ); + + let diagnostics = match result { + Ok(_) => return Ok(Vec::new()), + Err(diagnostics) => diagnostics, + }; + + let mut violations = Vec::new(); + + for diagnostic in diagnostics { + if diagnostic.code.as_deref() != Some("Q-2-14") { + continue; + } + + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q214Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + fn apply_fixes(&self, content: &str, mut violations: Vec) -> Result { + if violations.is_empty() { + return Ok(content.to_string()); + } + + violations.sort_by_key(|v| std::cmp::Reverse(v.offset)); + + let mut result = content.to_string(); + + for violation in violations { + result.insert(violation.offset, '_'); + } + + Ok(result) + } + + fn offset_to_row(&self, content: &str, offset: usize) -> usize { + content[..offset].matches('\n').count() + } + + 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 Q214Converter { + fn name(&self) -> &str { + "q-2-14" + } + + fn description(&self) -> &str { + "Fix Q-2-14: Add closing '_' for unclosed underscore emphasis" + } + + 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-14 unclosed underscore emphasis at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-14".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-14 unclosed underscore emphasis 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-14 unclosed underscore emphasis 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-14 unclosed underscore emphasis 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/conversions/q_2_15.rs b/crates/qmd-syntax-helper/src/conversions/q_2_15.rs new file mode 100644 index 0000000..382c5ad --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_15.rs @@ -0,0 +1,191 @@ +// Q-2-15: Unclosed Strong Underscore Emphasis +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error 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." + +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 Q215Converter {} + +#[derive(Debug, Clone)] +struct Q215Violation { + offset: usize, + error_location: Option, +} + +impl Q215Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + 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()))?; + + 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, + &filename, + &mut sink, + true, + None, + ); + + let diagnostics = match result { + Ok(_) => return Ok(Vec::new()), + Err(diagnostics) => diagnostics, + }; + + let mut violations = Vec::new(); + + for diagnostic in diagnostics { + if diagnostic.code.as_deref() != Some("Q-2-15") { + continue; + } + + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q215Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + fn apply_fixes(&self, content: &str, mut violations: Vec) -> Result { + if violations.is_empty() { + return Ok(content.to_string()); + } + + violations.sort_by_key(|v| std::cmp::Reverse(v.offset)); + + let mut result = content.to_string(); + + for violation in violations { + result.insert_str(violation.offset, "__"); + } + + Ok(result) + } + + fn offset_to_row(&self, content: &str, offset: usize) -> usize { + content[..offset].matches('\n').count() + } + + 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 Q215Converter { + fn name(&self) -> &str { + "q-2-15" + } + + fn description(&self) -> &str { + "Fix Q-2-15: Add closing '__' for unclosed strong underscore emphasis" + } + + 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-15 unclosed strong underscore emphasis at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-15".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-15 unclosed strong underscore emphasis 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-15 unclosed strong underscore emphasis 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-15 unclosed strong underscore emphasis 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/conversions/q_2_16.rs b/crates/qmd-syntax-helper/src/conversions/q_2_16.rs new file mode 100644 index 0000000..8b383b9 --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_16.rs @@ -0,0 +1,209 @@ +// Q-2-16: Unclosed Superscript +// +// This conversion rule fixes Q-2-16 errors by adding closing superscript marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-16 +// Title: "Unclosed Superscript" +// Message: "I reached the end of the block before finding a closing '^' for the superscript." +// +// Example: +// Input: x^2 and y^3 +// Output: x^2^ and y^3^ +// + +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 Q216Converter {} + +#[derive(Debug, Clone)] +struct Q216Violation { + offset: usize, // Offset where closing ^ should be added + error_location: Option, // For reporting +} + +impl Q216Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-16 unclosed superscript 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-16 error + if diagnostic.code.as_deref() != Some("Q-2-16") { + continue; + } + + // Extract location - this points to the end of the block + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q216Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by adding closing superscript marks + 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 closing ^ at the error location (end of block) + 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 Q216Converter { + fn name(&self) -> &str { + "q-2-16" + } + + fn description(&self) -> &str { + "Fix Q-2-16: Add closing superscript marks for unclosed superscripts" + } + + 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-16 unclosed superscript at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-16".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-16 unclosed superscript 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-16 unclosed superscript 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-16 unclosed superscript 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_17.rs b/crates/qmd-syntax-helper/src/conversions/q_2_17.rs new file mode 100644 index 0000000..495d99f --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_17.rs @@ -0,0 +1,206 @@ +// Q-2-17: Unclosed Subscript +// +// This conversion rule fixes Q-2-17 errors by adding closing subscript marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-17 +// Title: "Unclosed Subscript" +// Message: "I reached the end of the block before finding a closing '~' for the subscript." +// +// Example: +// Input: H~2O and CO~2 +// Output: H~2~O and CO~2~ +// + +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 Q217Converter {} + +#[derive(Debug, Clone)] +struct Q217Violation { + offset: usize, // Offset where closing ~ should be added + error_location: Option, // For reporting +} + +impl Q217Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-17 unclosed subscript 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-17 error + if diagnostic.code.as_deref() != Some("Q-2-17") { + continue; + } + + // Extract location - this points to the end of the block + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q217Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by adding closing subscript marks + 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 closing ~ at the error location (end of block) + 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 Q217Converter { + fn name(&self) -> &str { + "q-2-17" + } + + fn description(&self) -> &str { + "Fix Q-2-17: Add closing subscript marks for unclosed subscripts" + } + + 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-17 unclosed subscript at offset {}", v.offset)), + location: v.error_location, + error_code: Some("Q-2-17".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-17 unclosed subscript 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-17 unclosed subscript 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-17 unclosed subscript 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_18.rs b/crates/qmd-syntax-helper/src/conversions/q_2_18.rs new file mode 100644 index 0000000..093dabe --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_18.rs @@ -0,0 +1,206 @@ +// Q-2-18: Unclosed Strikeout +// +// This conversion rule fixes Q-2-18 errors by adding closing strikeout marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-18 +// Title: "Unclosed Strikeout" +// Message: "I reached the end of the block before finding a closing '~~' for the strikeout." +// +// Example: +// Input: ~~This is deleted text +// Output: ~~This is deleted text~~ +// + +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 Q218Converter {} + +#[derive(Debug, Clone)] +struct Q218Violation { + offset: usize, // Offset where closing ~~ should be added + error_location: Option, // For reporting +} + +impl Q218Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-18 unclosed strikeout 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-18 error + if diagnostic.code.as_deref() != Some("Q-2-18") { + continue; + } + + // Extract location - this points to the end of the block + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q218Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by adding closing strikeout marks + 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 closing ~~ at the error location (end of block) + result.insert_str(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 Q218Converter { + fn name(&self) -> &str { + "q-2-18" + } + + fn description(&self) -> &str { + "Fix Q-2-18: Add closing strikeout marks for unclosed strikeouts" + } + + 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-18 unclosed strikeout at offset {}", v.offset)), + location: v.error_location, + error_code: Some("Q-2-18".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-18 unclosed strikeout 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-18 unclosed strikeout 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-18 unclosed strikeout 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_19.rs b/crates/qmd-syntax-helper/src/conversions/q_2_19.rs new file mode 100644 index 0000000..86f58a1 --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_19.rs @@ -0,0 +1,209 @@ +// Q-2-19: Unclosed Editorial Insert +// +// This conversion rule fixes Q-2-19 errors by adding closing '++]' marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-19 +// Title: "Unclosed Editorial Insert" +// Message: "I reached the end of the block before finding a closing '++]' for the editorial insert." +// +// Example: +// Input: [++This is an unclosed insert +// Output: [++This is an unclosed insert++] +// + +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 Q219Converter {} + +#[derive(Debug, Clone)] +struct Q219Violation { + offset: usize, // Offset where closing ++] should be added + error_location: Option, // For reporting +} + +impl Q219Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-19 unclosed editorial insert 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-19 error + if diagnostic.code.as_deref() != Some("Q-2-19") { + continue; + } + + // Extract location - this points to the end of the block + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q219Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by adding closing '++]' marks + 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 closing ++] at the error location (end of block) + result.insert_str(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 Q219Converter { + fn name(&self) -> &str { + "q-2-19" + } + + fn description(&self) -> &str { + "Fix Q-2-19: Add closing '++]' marks for unclosed editorial insert" + } + + 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-19 unclosed editorial insert at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-19".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-19 unclosed editorial insert 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-19 unclosed editorial insert 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-19 unclosed editorial insert 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_20.rs b/crates/qmd-syntax-helper/src/conversions/q_2_20.rs new file mode 100644 index 0000000..2c4d1de --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_20.rs @@ -0,0 +1,209 @@ +// Q-2-20: Unclosed Editorial Delete +// +// This conversion rule fixes Q-2-20 errors by adding closing '--]' marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-20 +// Title: "Unclosed Editorial Delete" +// Message: "I reached the end of the block before finding a closing '--]' for the editorial delete." +// +// Example: +// Input: [--This is an unclosed delete +// Output: [--This is an unclosed delete--] +// + +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 Q220Converter {} + +#[derive(Debug, Clone)] +struct Q220Violation { + offset: usize, // Offset where closing --] should be added + error_location: Option, // For reporting +} + +impl Q220Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-20 unclosed editorial delete 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-20 error + if diagnostic.code.as_deref() != Some("Q-2-20") { + continue; + } + + // Extract location - this points to the end of the block + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q220Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by adding closing '--]' marks + 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 closing --] at the error location (end of block) + result.insert_str(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 Q220Converter { + fn name(&self) -> &str { + "q-2-20" + } + + fn description(&self) -> &str { + "Fix Q-2-20: Add closing '--]' marks for unclosed editorial delete" + } + + 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-20 unclosed editorial delete at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-20".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-20 unclosed editorial delete 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-20 unclosed editorial delete 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-20 unclosed editorial delete 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_21.rs b/crates/qmd-syntax-helper/src/conversions/q_2_21.rs new file mode 100644 index 0000000..af58e81 --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_21.rs @@ -0,0 +1,209 @@ +// Q-2-21: Unclosed Editorial Comment +// +// This conversion rule fixes Q-2-21 errors by adding closing ']' marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-21 +// Title: "Unclosed Editorial Comment" +// Message: "I reached the end of the block before finding a closing ']' for the editorial comment." +// +// Example: +// Input: [>>This is an unclosed comment +// Output: [>>This is an unclosed comment] +// + +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 Q221Converter {} + +#[derive(Debug, Clone)] +struct Q221Violation { + offset: usize, // Offset where closing !!] should be added + error_location: Option, // For reporting +} + +impl Q221Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-21 unclosed editorial comment 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-21 error + if diagnostic.code.as_deref() != Some("Q-2-21") { + continue; + } + + // Extract location - this points to the end of the block + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q221Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by adding closing ']' marks + 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 closing ] at the error location (end of block) + 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 Q221Converter { + fn name(&self) -> &str { + "q-2-21" + } + + fn description(&self) -> &str { + "Fix Q-2-21: Add closing ']' for unclosed editorial comment" + } + + 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-21 unclosed editorial comment at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-21".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-21 unclosed editorial comment 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-21 unclosed editorial comment 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-21 unclosed editorial comment 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_22.rs b/crates/qmd-syntax-helper/src/conversions/q_2_22.rs new file mode 100644 index 0000000..099c434 --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_22.rs @@ -0,0 +1,209 @@ +// Q-2-22: Unclosed Editorial Highlight +// +// This conversion rule fixes Q-2-22 errors by adding closing ']' marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-22 +// Title: "Unclosed Editorial Highlight" +// Message: "I reached the end of the block before finding a closing ']' for the editorial highlight." +// +// Example: +// Input: [!!This is an unclosed highlight +// Output: [!!This is an unclosed highlight] +// + +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 Q222Converter {} + +#[derive(Debug, Clone)] +struct Q222Violation { + offset: usize, // Offset where closing <<] should be added + error_location: Option, // For reporting +} + +impl Q222Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-22 unclosed editorial highlight 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-22 error + if diagnostic.code.as_deref() != Some("Q-2-22") { + continue; + } + + // Extract location - this points to the end of the block + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q222Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by adding closing ']' marks + 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 closing ] at the error location (end of block) + 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 Q222Converter { + fn name(&self) -> &str { + "q-2-22" + } + + fn description(&self) -> &str { + "Fix Q-2-22: Add closing ']' for unclosed editorial highlight" + } + + 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-22 unclosed editorial highlight at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-22".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-22 unclosed editorial highlight 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-22 unclosed editorial highlight 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-22 unclosed editorial highlight 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_23.rs b/crates/qmd-syntax-helper/src/conversions/q_2_23.rs new file mode 100644 index 0000000..a1c6936 --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_23.rs @@ -0,0 +1,209 @@ +// Q-2-23: Unclosed Inline Math +// +// This conversion rule fixes Q-2-23 errors by adding closing '$' marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-23 +// Title: "Unclosed Inline Math" +// Message: "I reached the end of the block before finding a closing '$' for the inline math." +// +// Example: +// Input: This is $x + y +// Output: This is $x + y$ +// + +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 Q223Converter {} + +#[derive(Debug, Clone)] +struct Q223Violation { + offset: usize, // Offset where closing $ should be added + error_location: Option, // For reporting +} + +impl Q223Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-23 unclosed inline math 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-23 error + if diagnostic.code.as_deref() != Some("Q-2-23") { + continue; + } + + // Extract location - this points to the end of the block + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q223Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by adding closing '$' marks + 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 closing $ at the error location (end of block) + 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 Q223Converter { + fn name(&self) -> &str { + "q-2-23" + } + + fn description(&self) -> &str { + "Fix Q-2-23: Add closing '$' marks for unclosed inline math" + } + + 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-23 unclosed inline math at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-23".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-23 unclosed inline math 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-23 unclosed inline math 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-23 unclosed inline math 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_24.rs b/crates/qmd-syntax-helper/src/conversions/q_2_24.rs new file mode 100644 index 0000000..443d05e --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_24.rs @@ -0,0 +1,206 @@ +// Q-2-24: Unclosed Code Span +// +// This conversion rule fixes Q-2-24 errors by adding closing '`' marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-24 +// Title: "Unclosed Code Span" +// Message: "I reached the end of the block before finding a closing '`' for the code span." +// +// Example: +// Input: This has `some code +// Output: This has `some code` +// + +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 Q224Converter {} + +#[derive(Debug, Clone)] +struct Q224Violation { + offset: usize, // Offset where closing ` should be added + error_location: Option, // For reporting +} + +impl Q224Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-24 unclosed code span 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-24 error + if diagnostic.code.as_deref() != Some("Q-2-24") { + continue; + } + + // Extract location - this points to the end of the block + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q224Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by adding closing '`' marks + 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 closing ` at the error location (end of block) + 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 Q224Converter { + fn name(&self) -> &str { + "q-2-24" + } + + fn description(&self) -> &str { + "Fix Q-2-24: Add closing '`' marks for unclosed code span" + } + + 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-24 unclosed code span at offset {}", v.offset)), + location: v.error_location, + error_code: Some("Q-2-24".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-24 unclosed code span 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-24 unclosed code span 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-24 unclosed code span 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_25.rs b/crates/qmd-syntax-helper/src/conversions/q_2_25.rs new file mode 100644 index 0000000..2e98cba --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_25.rs @@ -0,0 +1,206 @@ +// Q-2-25: Unclosed Image +// +// This conversion rule fixes Q-2-25 errors by adding closing '](url)' marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-25 +// Title: "Unclosed Image" +// Message: "I reached the end of the block before finding a closing '](url)' for the image." +// +// Example: +// Input: This has ![alt text +// Output: This has ![alt text](url) +// + +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 Q225Converter {} + +#[derive(Debug, Clone)] +struct Q225Violation { + offset: usize, // Offset where closing ](url) should be added + error_location: Option, // For reporting +} + +impl Q225Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-25 unclosed image 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-25 error + if diagnostic.code.as_deref() != Some("Q-2-25") { + continue; + } + + // Extract location - this points to the end of the block + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q225Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by adding closing '](url)' marks + 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 closing ](url) at the error location (end of block) + result.insert_str(violation.offset, "](url)"); + } + + 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 Q225Converter { + fn name(&self) -> &str { + "q-2-25" + } + + fn description(&self) -> &str { + "Fix Q-2-25: Add closing '](url)' marks for unclosed image" + } + + 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-25 unclosed image at offset {}", v.offset)), + location: v.error_location, + error_code: Some("Q-2-25".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-25 unclosed image 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-25 unclosed image 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-25 unclosed image 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_26.rs b/crates/qmd-syntax-helper/src/conversions/q_2_26.rs new file mode 100644 index 0000000..198509d --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_26.rs @@ -0,0 +1,209 @@ +// Q-2-26: Unclosed Inline Footnote +// +// This conversion rule fixes Q-2-26 errors by adding closing ']' marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-26 +// Title: "Unclosed Inline Footnote" +// Message: "I reached the end of the block before finding a closing ']' for the inline footnote." +// +// Example: +// Input: This has ^[a footnote +// Output: This has ^[a footnote] +// + +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 Q226Converter {} + +#[derive(Debug, Clone)] +struct Q226Violation { + offset: usize, // Offset where closing ] should be added + error_location: Option, // For reporting +} + +impl Q226Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + /// Get parse errors and extract Q-2-26 unclosed inline footnote 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-26 error + if diagnostic.code.as_deref() != Some("Q-2-26") { + continue; + } + + // Extract location - this points to the end of the block + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q226Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + /// Apply fixes to the content by adding closing ']' marks + 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 closing ] at the error location (end of block) + 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 Q226Converter { + fn name(&self) -> &str { + "q-2-26" + } + + fn description(&self) -> &str { + "Fix Q-2-26: Add closing ']' marks for unclosed inline footnote" + } + + 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-26 unclosed inline footnote at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-26".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-26 unclosed inline footnote 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-26 unclosed inline footnote 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-26 unclosed inline footnote 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_5.rs b/crates/qmd-syntax-helper/src/conversions/q_2_5.rs new file mode 100644 index 0000000..5776845 --- /dev/null +++ b/crates/qmd-syntax-helper/src/conversions/q_2_5.rs @@ -0,0 +1,197 @@ +// Q-2-5: Unclosed Underscore Emphasis +// +// This conversion rule fixes Q-2-5 errors by adding closing '_' marks +// where they are missing at the end of blocks. +// +// Error catalog entry: crates/quarto-error-reporting/error_catalog.json +// Error code: Q-2-5 +// Title: "Unclosed Underscore Emphasis" +// Message: "I reached the end of the block before finding a closing '_' for the emphasis." +// +// Example: +// Input: _This is an unclosed emphasis +// Output: _This is an unclosed emphasis_ +// + +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 Q25Converter {} + +#[derive(Debug, Clone)] +struct Q25Violation { + offset: usize, + error_location: Option, +} + +impl Q25Converter { + pub fn new() -> Result { + Ok(Self {}) + } + + 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()))?; + + 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, + &filename, + &mut sink, + true, + None, + ); + + let diagnostics = match result { + Ok(_) => return Ok(Vec::new()), + Err(diagnostics) => diagnostics, + }; + + let mut violations = Vec::new(); + + for diagnostic in diagnostics { + if diagnostic.code.as_deref() != Some("Q-2-5") { + continue; + } + + let location = diagnostic.location.as_ref(); + if location.is_none() { + continue; + } + + let offset = location.as_ref().unwrap().start_offset(); + + violations.push(Q25Violation { + offset, + error_location: Some(SourceLocation { + row: self.offset_to_row(&content, offset), + column: self.offset_to_column(&content, offset), + }), + }); + } + + Ok(violations) + } + + fn apply_fixes(&self, content: &str, mut violations: Vec) -> Result { + if violations.is_empty() { + return Ok(content.to_string()); + } + + violations.sort_by_key(|v| std::cmp::Reverse(v.offset)); + + let mut result = content.to_string(); + + for violation in violations { + result.insert(violation.offset, '_'); + } + + Ok(result) + } + + fn offset_to_row(&self, content: &str, offset: usize) -> usize { + content[..offset].matches('\n').count() + } + + 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 Q25Converter { + fn name(&self) -> &str { + "q-2-5" + } + + fn description(&self) -> &str { + "Fix Q-2-5: Add closing '_' for unclosed underscore emphasis" + } + + 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-5 unclosed underscore emphasis at offset {}", + v.offset + )), + location: v.error_location, + error_code: Some("Q-2-5".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-5 unclosed underscore emphasis 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-5 unclosed underscore emphasis 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-5 unclosed underscore emphasis 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/parse_check.rs b/crates/qmd-syntax-helper/src/diagnostics/parse_check.rs index 1f9dbc4..b778235 100644 --- a/crates/qmd-syntax-helper/src/diagnostics/parse_check.rs +++ b/crates/qmd-syntax-helper/src/diagnostics/parse_check.rs @@ -28,6 +28,7 @@ impl ParseChecker { &filename, &mut sink, true, + None, ); match result { diff --git a/crates/qmd-syntax-helper/src/main.rs b/crates/qmd-syntax-helper/src/main.rs index 0477307..f0e681c 100644 --- a/crates/qmd-syntax-helper/src/main.rs +++ b/crates/qmd-syntax-helper/src/main.rs @@ -237,7 +237,8 @@ fn main() -> Result<()> { // Show rule progress if verbose || check_mode { - let prefix = if show_iteration_details { " " } else { " " }; + let prefix = + if show_iteration_details { " " } else { " " }; println!( "{}{} {} - {}", prefix, @@ -249,7 +250,12 @@ fn main() -> Result<()> { } } Err(e) => { - eprintln!(" {} Error converting {}: {}", "✗".red(), rule.name(), e); + eprintln!( + " {} Error converting {}: {}", + "✗".red(), + rule.name(), + e + ); drop(temp_file); // Clean up temp return Err(e); } @@ -259,8 +265,10 @@ fn main() -> Result<()> { // Check for convergence if fixes_this_iteration == 0 { if verbose && show_iteration_details { - println!(" Converged after {} iteration(s) ({} total fixes)", - iteration, total_fixes_for_file); + println!( + " Converged after {} iteration(s) ({} total fixes)", + iteration, total_fixes_for_file + ); } break; } @@ -272,7 +280,8 @@ fn main() -> Result<()> { if oscillation_count >= 3 { eprintln!( " {} Warning: Possible oscillation detected (same fix count for {} consecutive iterations)", - "⚠".yellow(), oscillation_count + 1 + "⚠".yellow(), + oscillation_count + 1 ); eprintln!(" Stopping iteration to prevent infinite loop"); break; @@ -287,7 +296,8 @@ fn main() -> Result<()> { if !no_iteration { eprintln!( " {} Warning: Reached max iterations ({}), but file may still have issues", - "⚠".yellow(), max_iter + "⚠".yellow(), + max_iter ); } break; diff --git a/crates/qmd-syntax-helper/src/rule.rs b/crates/qmd-syntax-helper/src/rule.rs index 28ae9d1..cad3358 100644 --- a/crates/qmd-syntax-helper/src/rule.rs +++ b/crates/qmd-syntax-helper/src/rule.rs @@ -81,6 +81,9 @@ impl RuleRegistry { )); // Register conversion rules + registry.register(Arc::new( + crate::conversions::apostrophe_quotes::ApostropheQuotesConverter::new()?, + )); registry.register(Arc::new( crate::conversions::attribute_ordering::AttributeOrderingConverter::new()?, )); @@ -90,6 +93,22 @@ impl RuleRegistry { registry.register(Arc::new( 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_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()?)); + registry.register(Arc::new(crate::conversions::q_2_15::Q215Converter::new()?)); + registry.register(Arc::new(crate::conversions::q_2_16::Q216Converter::new()?)); + registry.register(Arc::new(crate::conversions::q_2_17::Q217Converter::new()?)); + registry.register(Arc::new(crate::conversions::q_2_18::Q218Converter::new()?)); + registry.register(Arc::new(crate::conversions::q_2_19::Q219Converter::new()?)); + registry.register(Arc::new(crate::conversions::q_2_20::Q220Converter::new()?)); + registry.register(Arc::new(crate::conversions::q_2_21::Q221Converter::new()?)); + registry.register(Arc::new(crate::conversions::q_2_22::Q222Converter::new()?)); + registry.register(Arc::new(crate::conversions::q_2_23::Q223Converter::new()?)); + 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()?)); Ok(registry) } diff --git a/crates/qmd-syntax-helper/tests/apostrophe_quotes_test.rs b/crates/qmd-syntax-helper/tests/apostrophe_quotes_test.rs new file mode 100644 index 0000000..d9b5e74 --- /dev/null +++ b/crates/qmd-syntax-helper/tests/apostrophe_quotes_test.rs @@ -0,0 +1,208 @@ +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 escaped apostrophes or no apostrophes + fs::write( + &test_file, + r#"This is a test with no apostrophes. + +This has an escaped apostrophe: a\' b. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("apostrophe-quotes").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_plain_text() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + fs::write(&test_file, "a' b.\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("apostrophe-quotes").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 1, "Should detect one Q-2-10 violation"); + assert!(results[0].has_issue); +} + +#[test] +fn test_converts_single_violation_plain_text() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "a' b.\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("apostrophe-quotes").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, "a\\' b.\n", "Should escape the apostrophe"); +} + +#[test] +fn test_converts_single_violation_in_bold() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "**a' b.**\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("apostrophe-quotes").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, "**a\\' b.**\n", + "Should escape apostrophe in bold" + ); +} + +#[test] +fn test_converts_single_violation_in_emphasis() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "*a' b.*\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("apostrophe-quotes").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, "*a\\' b.*\n", + "Should escape apostrophe in emphasis" + ); +} + +#[test] +fn test_converts_single_violation_in_link() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "[a' b](url)\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("apostrophe-quotes").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, "[a\\' b](url)\n", + "Should escape apostrophe in link text" + ); +} + +#[test] +fn test_converts_multiple_violations() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + fs::write( + &test_file, + r#"First apostrophe: a' b. + +Second in bold: **c' d.** +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("apostrophe-quotes").unwrap(); + + let result = rule.convert(&test_file, false, false, false).unwrap(); + assert_eq!(result.fixes_applied, 2, "Should fix both violations"); + + let converted = result.message.unwrap(); + assert!( + converted.contains("a\\' b."), + "Should escape first apostrophe" + ); + assert!( + converted.contains("**c\\' d.**"), + "Should escape second apostrophe" + ); +} + +#[test] +fn test_in_place_conversion() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "a' b.\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("apostrophe-quotes").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, "a\\' b.\n"); + assert!(!content.contains("a' b.")); +} + +#[test] +fn test_check_mode() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "a' b.\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("apostrophe-quotes").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, "No problematic apostrophes here.\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("apostrophe-quotes").unwrap(); + + let result = rule.convert(&test_file, false, false, false).unwrap(); + assert_eq!(result.fixes_applied, 0); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_11_test.rs b/crates/qmd-syntax-helper/tests/q_2_11_test.rs new file mode 100644 index 0000000..bf82870 --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_11_test.rs @@ -0,0 +1,138 @@ +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 closed quotes + fs::write( + &test_file, + r#"This has a "properly closed quote" in it. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-11").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"); + + fs::write(&test_file, "\"Unclosed quote at end\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-11").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 1, "Should detect one Q-2-11 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 = "\"Unclosed quote at end\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-11").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, "\"Unclosed quote at end\"\n", + "Should add closing quote" + ); +} + +#[test] +fn test_in_place_conversion() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "\"Unclosed quote\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-11").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, "\"Unclosed quote\"\n"); +} + +#[test] +fn test_check_mode() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "\"Unclosed quote\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-11").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, "\"Properly closed quote\"\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-11").unwrap(); + + let result = rule.convert(&test_file, false, false, false).unwrap(); + assert_eq!(result.fixes_applied, 0); +} + +#[test] +fn test_complex_case_with_content() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + fs::write( + &test_file, + "\"This is a long sentence with lots of content and an unclosed quote\n", + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-11").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, + "\"This is a long sentence with lots of content and an unclosed quote\"\n" + ); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_12_test.rs b/crates/qmd-syntax-helper/tests/q_2_12_test.rs new file mode 100644 index 0000000..7306ce2 --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_12_test.rs @@ -0,0 +1,138 @@ +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 closed star emphasis + fs::write( + &test_file, + r#"This has *properly closed emphasis* in it. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-12").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"); + + fs::write(&test_file, "*Unclosed emphasis\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-12").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 1, "Should detect one Q-2-12 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 = "*Unclosed emphasis\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-12").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, "*Unclosed emphasis*\n", + "Should add closing star" + ); +} + +#[test] +fn test_in_place_conversion() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "*Unclosed emphasis\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-12").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, "*Unclosed emphasis*\n"); +} + +#[test] +fn test_check_mode() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "*Unclosed emphasis\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-12").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, "*Properly closed emphasis*\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-12").unwrap(); + + let result = rule.convert(&test_file, false, false, false).unwrap(); + assert_eq!(result.fixes_applied, 0); +} + +#[test] +fn test_complex_case_with_content() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + fs::write( + &test_file, + "*This is a long sentence with lots of content and an unclosed emphasis\n", + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-12").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, + "*This is a long sentence with lots of content and an unclosed emphasis*\n" + ); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_13_test.rs b/crates/qmd-syntax-helper/tests/q_2_13_test.rs new file mode 100644 index 0000000..6077c3e --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_13_test.rs @@ -0,0 +1,135 @@ +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 closed strong emphasis + fs::write( + &test_file, + r#"This has **properly closed strong** in it. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-13").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"); + + fs::write(&test_file, "**Unclosed strong\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-13").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 1, "Should detect one Q-2-13 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 = "**Unclosed strong\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-13").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, "**Unclosed strong**\n", "Should add closing **"); +} + +#[test] +fn test_in_place_conversion() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "**Unclosed strong\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-13").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, "**Unclosed strong**\n"); +} + +#[test] +fn test_check_mode() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "**Unclosed strong\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-13").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, "**Properly closed strong**\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-13").unwrap(); + + let result = rule.convert(&test_file, false, false, false).unwrap(); + assert_eq!(result.fixes_applied, 0); +} + +#[test] +fn test_complex_case_with_content() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + fs::write( + &test_file, + "**This is a long sentence with lots of content and an unclosed strong\n", + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-13").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, + "**This is a long sentence with lots of content and an unclosed strong**\n" + ); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_15_test.rs b/crates/qmd-syntax-helper/tests/q_2_15_test.rs new file mode 100644 index 0000000..606bb5c --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_15_test.rs @@ -0,0 +1,43 @@ +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"); + fs::write(&test_file, "__Properly closed strong__\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-15").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 0); +} + +#[test] +fn test_detects_single_violation() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + fs::write(&test_file, "__Unclosed strong\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-15").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 1); +} + +#[test] +fn test_converts_single_violation() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + fs::write(&test_file, "__Unclosed strong\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-15").unwrap(); + + let result = rule.convert(&test_file, false, false, false).unwrap(); + assert_eq!(result.fixes_applied, 1); + assert_eq!(result.message.unwrap(), "__Unclosed strong__\n"); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_16_test.rs b/crates/qmd-syntax-helper/tests/q_2_16_test.rs new file mode 100644 index 0000000..7839b9b --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_16_test.rs @@ -0,0 +1,57 @@ +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 closed superscripts + fs::write( + &test_file, + r#"This has x^2^ and y^3^ properly closed superscripts. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-16").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"); + + fs::write(&test_file, "x^2\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-16").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 1, "Should detect one Q-2-16 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 = "x^2\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-16").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, "x^2^\n", "Should add closing superscript mark"); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_17_test.rs b/crates/qmd-syntax-helper/tests/q_2_17_test.rs new file mode 100644 index 0000000..82d31d8 --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_17_test.rs @@ -0,0 +1,57 @@ +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 closed subscripts + fs::write( + &test_file, + r#"This has H~2~O and CO~2~ properly closed subscripts. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-17").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"); + + fs::write(&test_file, "H~2O\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-17").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 1, "Should detect one Q-2-17 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 = "H~2O\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-17").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, "H~2O~\n", "Should add closing subscript mark"); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_18_test.rs b/crates/qmd-syntax-helper/tests/q_2_18_test.rs new file mode 100644 index 0000000..670a99b --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_18_test.rs @@ -0,0 +1,60 @@ +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 closed strikeout + fs::write( + &test_file, + r#"This has ~~deleted text~~ properly closed. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-18").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"); + + fs::write(&test_file, "~~deleted text\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-18").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 1, "Should detect one Q-2-18 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 = "~~deleted text\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-18").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, "~~deleted text~~\n", + "Should add closing strikeout marks" + ); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_19_test.rs b/crates/qmd-syntax-helper/tests/q_2_19_test.rs new file mode 100644 index 0000000..72b4fe5 --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_19_test.rs @@ -0,0 +1,60 @@ +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 closed editorial insert + fs::write( + &test_file, + r#"This has [++properly closed insert++] in it. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-19").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"); + + fs::write(&test_file, "[++Unclosed insert\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-19").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 1, "Should detect one Q-2-19 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 = "[++Unclosed insert\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-19").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, "[++Unclosed insert++]\n", + "Should add closing ++]" + ); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_20_test.rs b/crates/qmd-syntax-helper/tests/q_2_20_test.rs new file mode 100644 index 0000000..3b80c70 --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_20_test.rs @@ -0,0 +1,60 @@ +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 closed editorial delete + fs::write( + &test_file, + r#"This has [--properly closed delete--] in it. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-20").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"); + + fs::write(&test_file, "[--Unclosed delete\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-20").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 1, "Should detect one Q-2-20 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 = "[--Unclosed delete\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-20").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, "[--Unclosed delete--]\n", + "Should add closing --]" + ); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_21_test.rs b/crates/qmd-syntax-helper/tests/q_2_21_test.rs new file mode 100644 index 0000000..8f40300 --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_21_test.rs @@ -0,0 +1,60 @@ +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 closed editorial comment + fs::write( + &test_file, + r#"This has [>>properly closed comment] in it. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-21").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"); + + fs::write(&test_file, "[>>Unclosed comment\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-21").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 1, "Should detect one Q-2-21 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 = "[>>Unclosed comment\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-21").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, "[>>Unclosed comment]\n", + "Should add closing ]" + ); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_22_test.rs b/crates/qmd-syntax-helper/tests/q_2_22_test.rs new file mode 100644 index 0000000..c1b4c3e --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_22_test.rs @@ -0,0 +1,60 @@ +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 closed editorial highlight + fs::write( + &test_file, + r#"This has [!!properly closed highlight] in it. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-22").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"); + + fs::write(&test_file, "[!!Unclosed highlight\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-22").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 1, "Should detect one Q-2-22 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 = "[!!Unclosed highlight\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-22").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, "[!!Unclosed highlight]\n", + "Should add closing ]" + ); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_23_test.rs b/crates/qmd-syntax-helper/tests/q_2_23_test.rs new file mode 100644 index 0000000..25144f3 --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_23_test.rs @@ -0,0 +1,23 @@ +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 closed inline math + fs::write( + &test_file, + r#"This has $x + y$ properly closed math in it. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-23").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 0, "Should not detect any violations"); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_24_test.rs b/crates/qmd-syntax-helper/tests/q_2_24_test.rs new file mode 100644 index 0000000..e0f8f28 --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_24_test.rs @@ -0,0 +1,23 @@ +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 closed code span + fs::write( + &test_file, + r#"This has `properly closed code` in it. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-24").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 0, "Should not detect any violations"); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_25_test.rs b/crates/qmd-syntax-helper/tests/q_2_25_test.rs new file mode 100644 index 0000000..daa3ffc --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_25_test.rs @@ -0,0 +1,23 @@ +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 closed image + fs::write( + &test_file, + r#"This has ![alt text](image.png) properly closed image in it. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-25").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 0, "Should not detect any violations"); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_26_test.rs b/crates/qmd-syntax-helper/tests/q_2_26_test.rs new file mode 100644 index 0000000..9f61980 --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_26_test.rs @@ -0,0 +1,23 @@ +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 closed inline footnote + fs::write( + &test_file, + r#"This has ^[a properly closed footnote] in it. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-26").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 0, "Should not detect any violations"); +} diff --git a/crates/qmd-syntax-helper/tests/q_2_5_test.rs b/crates/qmd-syntax-helper/tests/q_2_5_test.rs new file mode 100644 index 0000000..fae2607 --- /dev/null +++ b/crates/qmd-syntax-helper/tests/q_2_5_test.rs @@ -0,0 +1,108 @@ +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"); + + fs::write( + &test_file, + r#"This has _properly closed emphasis_ in it. +"#, + ) + .unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-5").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"); + + fs::write(&test_file, "_Unclosed emphasis\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-5").unwrap(); + + let results = rule.check(&test_file, false).unwrap(); + assert_eq!(results.len(), 1, "Should detect one Q-2-5 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 = "_Unclosed emphasis\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-5").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, "_Unclosed emphasis_\n", + "Should add closing underscore" + ); +} + +#[test] +fn test_in_place_conversion() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "_Unclosed emphasis\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-5").unwrap(); + + let result = rule.convert(&test_file, true, false, false).unwrap(); + assert_eq!(result.fixes_applied, 1); + + let content = fs::read_to_string(&test_file).unwrap(); + assert_eq!(content, "_Unclosed emphasis_\n"); +} + +#[test] +fn test_check_mode() { + let rm = ResourceManager::new().unwrap(); + let test_file = rm.temp_dir().join("test.qmd"); + + let original = "_Unclosed emphasis\n"; + fs::write(&test_file, original).unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-5").unwrap(); + + let result = rule.convert(&test_file, false, true, false).unwrap(); + assert_eq!(result.fixes_applied, 1); + + 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, "_Properly closed emphasis_\n").unwrap(); + + let registry = RuleRegistry::new().unwrap(); + let rule = registry.get("q-2-5").unwrap(); + + let result = rule.convert(&test_file, false, false, false).unwrap(); + assert_eq!(result.fixes_applied, 0); +} diff --git a/crates/quarto-error-reporting/error_catalog.json b/crates/quarto-error-reporting/error_catalog.json index aaba882..8a2b610 100644 --- a/crates/quarto-error-reporting/error_catalog.json +++ b/crates/quarto-error-reporting/error_catalog.json @@ -153,6 +153,118 @@ "docs_url": "https://quarto.org/docs/errors/Q-2-10", "since_version": "99.9.9" }, + "Q-2-11": { + "subsystem": "markdown", + "title": "Unclosed Double Quote", + "message_template": "I reached the end of the block before finding a closing '\"' for the quote.", + "docs_url": "https://quarto.org/docs/errors/Q-2-11", + "since_version": "99.9.9" + }, + "Q-2-12": { + "subsystem": "markdown", + "title": "Unclosed Star Emphasis", + "message_template": "I reached the end of the block before finding a closing '*' for the emphasis.", + "docs_url": "https://quarto.org/docs/errors/Q-2-12", + "since_version": "99.9.9" + }, + "Q-2-13": { + "subsystem": "markdown", + "title": "Unclosed Strong Star Emphasis", + "message_template": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "docs_url": "https://quarto.org/docs/errors/Q-2-13", + "since_version": "99.9.9" + }, + "Q-2-14": { + "subsystem": "markdown", + "title": "Unclosed Underscore Emphasis", + "message_template": "I reached the end of the block before finding a closing '_' for the emphasis.", + "docs_url": "https://quarto.org/docs/errors/Q-2-14", + "since_version": "99.9.9" + }, + "Q-2-15": { + "subsystem": "markdown", + "title": "Unclosed Strong Underscore Emphasis", + "message_template": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "docs_url": "https://quarto.org/docs/errors/Q-2-15", + "since_version": "99.9.9" + }, + "Q-2-16": { + "subsystem": "markdown", + "title": "Unclosed Superscript", + "message_template": "I reached the end of the block before finding a closing '^' for the superscript.", + "docs_url": "https://quarto.org/docs/errors/Q-2-16", + "since_version": "99.9.9" + }, + "Q-2-17": { + "subsystem": "markdown", + "title": "Unclosed Subscript", + "message_template": "I reached the end of the block before finding a closing '~' for the subscript.", + "docs_url": "https://quarto.org/docs/errors/Q-2-17", + "since_version": "99.9.9" + }, + "Q-2-18": { + "subsystem": "markdown", + "title": "Unclosed Strikeout", + "message_template": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "docs_url": "https://quarto.org/docs/errors/Q-2-18", + "since_version": "99.9.9" + }, + "Q-2-19": { + "subsystem": "markdown", + "title": "Unclosed Editorial Insert", + "message_template": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "docs_url": "https://quarto.org/docs/errors/Q-2-19", + "since_version": "99.9.9" + }, + "Q-2-20": { + "subsystem": "markdown", + "title": "Unclosed Editorial Delete", + "message_template": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "docs_url": "https://quarto.org/docs/errors/Q-2-20", + "since_version": "99.9.9" + }, + "Q-2-21": { + "subsystem": "markdown", + "title": "Unclosed Editorial Comment", + "message_template": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "docs_url": "https://quarto.org/docs/errors/Q-2-21", + "since_version": "99.9.9" + }, + "Q-2-22": { + "subsystem": "markdown", + "title": "Unclosed Editorial Highlight", + "message_template": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "docs_url": "https://quarto.org/docs/errors/Q-2-22", + "since_version": "99.9.9" + }, + "Q-2-23": { + "subsystem": "markdown", + "title": "Unclosed Inline Math", + "message_template": "I reached the end of the block before finding a closing '$' for the inline math.", + "docs_url": "https://quarto.org/docs/errors/Q-2-23", + "since_version": "99.9.9" + }, + "Q-2-24": { + "subsystem": "markdown", + "title": "Unclosed Code Span", + "message_template": "I reached the end of the block before finding a closing '`' for the code span.", + "docs_url": "https://quarto.org/docs/errors/Q-2-24", + "since_version": "99.9.9" + }, + "Q-2-25": { + "subsystem": "markdown", + "title": "Unclosed Image", + "message_template": "I reached the end of the block before finding a closing '](url)' for the image.", + "docs_url": "https://quarto.org/docs/errors/Q-2-25", + "since_version": "99.9.9" + }, + "Q-2-26": { + "subsystem": "markdown", + "title": "Unclosed Inline Footnote", + "message_template": "I reached the end of the block before finding a closing ']' for the inline footnote.", + "docs_url": "https://quarto.org/docs/errors/Q-2-26", + "since_version": "99.9.9" + }, "Q-3-1": { "subsystem": "writer", "title": "IO Error During Write", diff --git a/crates/quarto-markdown-pandoc/CLAUDE.md b/crates/quarto-markdown-pandoc/CLAUDE.md index e959b37..48ca6fb 100644 --- a/crates/quarto-markdown-pandoc/CLAUDE.md +++ b/crates/quarto-markdown-pandoc/CLAUDE.md @@ -56,11 +56,92 @@ We're not using "merr" here; we are merely implementing the same technique. ## Creating error examples -The corpus of error examples in this repository exists in resources/error-corpus. +The corpus of error examples in this repository uses a consolidated format where each error code has a single JSON file with multiple test cases. + +### Error Corpus Structure + +- **Source files**: `resources/error-corpus/Q-*.json` - One file per error code +- **Generated files**: `resources/error-corpus/case-files/*.qmd` - Test case files (generated by build script) +- **Autogen table**: `resources/error-corpus/_autogen-table.json` - Parser state mappings (generated) + +### JSON Format + +Each `Q-*.json` file contains: +- Error metadata (code, title, message, notes) - appears once +- `cases` array - multiple test scenarios that trigger the error in different contexts + +Example structure: +```json +{ + "code": "Q-2-10", + "title": "Error Title", + "message": "Error message text", + "notes": [ + { + "message": "Additional context", + "label": "capture-label", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Description of this test case", + "content": "test content that triggers the error", + "captures": [ + { + "label": "capture-label", + "row": 0, + "column": 5, + "size": 1 + } + ] + }, + { + "name": "in-emphasis", + "description": "Error inside emphasis markup", + "content": "*test content*", + "captures": [...] + } + ] +} +``` + +### Adding New Error Cases + +To add a new test case to an existing error: + +1. Edit the appropriate `resources/error-corpus/Q-*.json` file +2. Add a new object to the `cases` array with: + - `name`: kebab-case identifier (e.g., "in-link-text") + - `description`: Human-readable explanation + - `content`: The qmd text that triggers the error + - `captures`: Array of capture coordinates (row, column, size, label) +3. Run `./scripts/build_error_table.ts` to regenerate the error table +4. Test your changes with `cargo test` + +### Adding New Error Codes + +To add a completely new error code: + +1. Create a new `resources/error-corpus/Q-*.json` file following the format above +2. Add at least one case (usually named "simple") +3. Run `./scripts/build_error_table.ts` +4. The build script will: + - Generate `.qmd` files in `case-files/` directory + - Run the parser to capture error states + - Update `_autogen-table.json` with the (state, sym) mappings ## Recompiling -After changing any of the resources/error-corpus/*.{json,qmd} files, run the script `scripts/build_error_table.ts`. It's executable with a deno hashbang line. Deno is installed on the environment you'll be running. +After changing any `resources/error-corpus/Q-*.json` files, run `./scripts/build_error_table.ts`. The script: +1. Clears and regenerates `resources/error-corpus/case-files/` directory +2. Creates `.qmd` files for each test case +3. Runs the parser to capture error states +4. Updates `_autogen-table.json` +5. Rebuilds the Rust code with the new table + +The script is executable with a deno hashbang line. Deno is installed on the environment. ## Binary usage diff --git a/crates/quarto-markdown-pandoc/fuzz/fuzz_targets/hello_fuzz.rs b/crates/quarto-markdown-pandoc/fuzz/fuzz_targets/hello_fuzz.rs index 7a9a467..dc4bd9b 100644 --- a/crates/quarto-markdown-pandoc/fuzz/fuzz_targets/hello_fuzz.rs +++ b/crates/quarto-markdown-pandoc/fuzz/fuzz_targets/hello_fuzz.rs @@ -10,7 +10,13 @@ use quarto_markdown_pandoc::readers; fuzz_target!(|data: &[u8]| { if let Ok(s) = std::str::from_utf8(data) { - let _ = - crate::readers::qmd::read(s.as_bytes(), false, "", &mut std::io::sink(), true); + let _ = crate::readers::qmd::read( + s.as_bytes(), + false, + "", + &mut std::io::sink(), + true, + None, + ); } }); 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 new file mode 100644 index 0000000..b70c366 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-1.json @@ -0,0 +1,27 @@ +{ + "code": "Q-2-1", + "title": "Unclosed Span", + "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", + "label": "span-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "an [unclosed span\n", + "captures": [ + { + "label": "span-start", + "row": 0, + "column": 3, + "size": 1 + } + ] + } + ] +} diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-10.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-10.json new file mode 100644 index 0000000..51a9198 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-10.json @@ -0,0 +1,45 @@ +{ + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "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"] + ] + } + ] +} 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 new file mode 100644 index 0000000..629d742 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-11.json @@ -0,0 +1,44 @@ +{ + "code": "Q-2-11", + "title": "Unclosed Double Quote", + "message": "I reached the end of the block before finding a closing '\"' for the quote.", + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "\"", + "captures": [ + { + "label": "quote-start", + "row": 0, + "column": 0, + "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 " + ] + } + ] +} 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 new file mode 100644 index 0000000..90e088c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-12.json @@ -0,0 +1,28 @@ +{ + "code": "Q-2-12", + "title": "Unclosed Star Emphasis", + "message": "I reached the end of the block before finding a closing '*' for the emphasis.", + "notes": [ + { + "message": "This is the opening '*' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "*Unclosed emphasis\n", + "captures": [ + { + "label": "emphasis-start", + "row": 0, + "column": 0, + "size": 1 + } + ], + "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "^["] + } + ] +} 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 new file mode 100644 index 0000000..cc81d4a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-13.json @@ -0,0 +1,28 @@ +{ + "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.", + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "**Unclosed strong emphasis\n", + "captures": [ + { + "label": "strong-start", + "row": 0, + "column": 0, + "size": 2 + } + ], + "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "^["] + } + ] +} diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-14.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-14.json new file mode 100644 index 0000000..d45db39 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-14.json @@ -0,0 +1,28 @@ +{ + "code": "Q-2-14", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "notes": [ + { + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "_Unclosed emphasis\n", + "captures": [ + { + "label": "emphasis-start", + "row": 0, + "column": 0, + "size": 1 + } + ], + "prefixes": ["[", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "*", "**", "^["] + } + ] +} 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 new file mode 100644 index 0000000..a007be2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-15.json @@ -0,0 +1,28 @@ +{ + "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.", + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "__Unclosed strong emphasis\n", + "captures": [ + { + "label": "strong-start", + "row": 0, + "column": 0, + "size": 2 + } + ], + "prefixes": ["[", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "*", "**", "^["] + } + ] +} 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 new file mode 100644 index 0000000..c43baa7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-16.json @@ -0,0 +1,28 @@ +{ + "code": "Q-2-16", + "title": "Unclosed Superscript", + "message": "I reached the end of the block before finding a closing '^' for the superscript.", + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "^Unclosed superscript\n", + "captures": [ + { + "label": "super-start", + "row": 0, + "column": 0, + "size": 1 + } + ], + "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "*", "**", "^["] + } + ] +} 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 new file mode 100644 index 0000000..4fdc4eb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-17.json @@ -0,0 +1,28 @@ +{ + "code": "Q-2-17", + "title": "Unclosed Subscript", + "message": "I reached the end of the block before finding a closing '~' for the subscript.", + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "~Unclosed subscript\n", + "captures": [ + { + "label": "sub-start", + "row": 0, + "column": 0, + "size": 1 + } + ], + "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "'", "\"", "*", "**", "^["] + } + ] +} 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 new file mode 100644 index 0000000..6c34e0e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-18.json @@ -0,0 +1,28 @@ +{ + "code": "Q-2-18", + "title": "Unclosed Strikeout", + "message": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "~~Unclosed strikeout\n", + "captures": [ + { + "label": "strike-start", + "row": 0, + "column": 0, + "size": 2 + } + ], + "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "'", "\"", "*", "**", "^["] + } + ] +} 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 new file mode 100644 index 0000000..0757d4b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-19.json @@ -0,0 +1,28 @@ +{ + "code": "Q-2-19", + "title": "Unclosed Editorial Insert", + "message": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "[++Unclosed editorial insert\n", + "captures": [ + { + "label": "insert-start", + "row": 0, + "column": 0, + "size": 3 + } + ], + "prefixes": ["[", "_", "__", "![", "[--", "[!!", "[>>", "~", "~~", "'", "\"", "*", "**", "^["] + } + ] +} diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-2.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-2.json new file mode 100644 index 0000000..4a1fdee --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-2.json @@ -0,0 +1,27 @@ +{ + "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.", + "notes": [ + { + "message": "The attribute specifier starts here.", + "label": "attribute-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "A bad [attribute]{[", + "captures": [ + { + "label": "attribute-start", + "row": 0, + "column": 17, + "size": 1 + } + ] + } + ] +} 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 new file mode 100644 index 0000000..2999760 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-20.json @@ -0,0 +1,28 @@ +{ + "code": "Q-2-20", + "title": "Unclosed Editorial Delete", + "message": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "[--Unclosed editorial delete\n", + "captures": [ + { + "label": "delete-start", + "row": 0, + "column": 0, + "size": 3 + } + ], + "prefixes": ["[", "_", "__", "![", "[++", "[!!", "[>>", "~", "~~", "'", "\"", "*", "**", "^["] + } + ] +} 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 new file mode 100644 index 0000000..6334f60 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-21.json @@ -0,0 +1,28 @@ +{ + "code": "Q-2-21", + "title": "Unclosed Editorial Comment", + "message": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "[>>Unclosed editorial comment\n", + "captures": [ + { + "label": "comment-start", + "row": 0, + "column": 0, + "size": 3 + } + ], + "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "~", "~~", "'", "\"", "*", "**", "^["] + } + ] +} 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 new file mode 100644 index 0000000..d7ff6fe --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-22.json @@ -0,0 +1,28 @@ +{ + "code": "Q-2-22", + "title": "Unclosed Editorial Highlight", + "message": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "[!!Unclosed editorial highlight\n", + "captures": [ + { + "label": "highlight-start", + "row": 0, + "column": 0, + "size": 3 + } + ], + "prefixes": ["[", "_", "__", "![", "[++", "[--", "[>>", "~", "~~", "'", "\"", "*", "**", "^["] + } + ] +} 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 new file mode 100644 index 0000000..27b6193 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-23.json @@ -0,0 +1,28 @@ +{ + "code": "Q-2-23", + "title": "Unclosed Inline Math", + "message": "I reached the end of the block before finding a closing '$' for the inline math.", + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "$Unclosed inline math\n", + "captures": [ + { + "label": "math-start", + "row": 0, + "column": 0, + "size": 1 + } + ], + "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "*", "**", "^["] + } + ] +} 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 new file mode 100644 index 0000000..d1032c6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-24.json @@ -0,0 +1,27 @@ +{ + "code": "Q-2-24", + "title": "Unclosed Code Span", + "message": "I reached the end of the block before finding a closing '`' for the code span.", + "notes": [ + { + "message": "This is the opening '`' mark", + "label": "code-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "`Unclosed code span\n", + "captures": [ + { + "label": "code-start", + "row": 0, + "column": 0, + "size": 1 + } + ] + } + ] +} 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 new file mode 100644 index 0000000..fb4a02e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-25.json @@ -0,0 +1,28 @@ +{ + "code": "Q-2-25", + "title": "Unclosed Image", + "message": "I reached the end of the block before finding a closing '](url)' for the image.", + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "![Unclosed image\n", + "captures": [ + { + "label": "image-start", + "row": 0, + "column": 0, + "size": 2 + } + ], + "prefixes": ["[", "_", "__", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "*", "**", "^["] + } + ] +} 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 new file mode 100644 index 0000000..11b0426 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-26.json @@ -0,0 +1,28 @@ +{ + "code": "Q-2-26", + "title": "Unclosed Inline Footnote", + "message": "I reached the end of the block before finding a closing ']' for the inline footnote.", + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "^[Unclosed inline footnote\n", + "captures": [ + { + "label": "footnote-start", + "row": 0, + "column": 0, + "size": 2 + } + ], + "prefixes": ["[", "_", "__", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "*", "**"] + } + ] +} 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 new file mode 100644 index 0000000..d009e6c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-3.json @@ -0,0 +1,27 @@ +{ + "code": "Q-2-3", + "title": "Key-value Pair Before Class Specifier in Attribute", + "message": "This class specifier appears after the key-value pair.", + "notes": [ + { + "message": "This key-value pair cannot appear before the class specifier.", + "noteType": "simple", + "label": "key-value" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "[foo]{#id key=value .class}\n", + "captures": [ + { + "label": "key-value", + "row": 0, + "column": 10, + "size": 9 + } + ] + } + ] +} 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 new file mode 100644 index 0000000..34933aa --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-5.json @@ -0,0 +1,54 @@ +{ + "code": "Q-2-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", + "notes": [ + { + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "Unfinished _emph.\n", + "captures": [ + { + "label": "emphasis-start", + "row": 0, + "column": 10, + "size": 2 + } + ] + }, + { + "name": "in-link", + "description": "Inside link", + "content": "[_document](a)", + "captures": [ + { + "label": "emphasis-start", + "row": 0, + "column": 1, + "size": 1 + } + ] + }, + { + "name": "at-start", + "description": "Unclosed emphasis at start of line", + "content": "_Unclosed emphasis\n", + "captures": [ + { + "label": "emphasis-start", + "row": 0, + "column": 0, + "size": 1 + } + ], + "prefixes": ["[", "![", "[++", "[--", "[!!", "[>>", "^", "~", "~~", "'", "\"", "*", "**", "^["] + } + ] +} 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 new file mode 100644 index 0000000..7794b62 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-7.json @@ -0,0 +1,41 @@ +{ + "code": "Q-2-7", + "title": "Unclosed Single Quote", + "message": "I reached the end of the block before finding a closing \"'\" for the quote.", + "notes": [ + { + "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", + "label": "quote-start", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "'Tis the season to make apostrophe mistakes.", + "captures": [ + { + "label": "quote-start", + "row": 0, + "column": 0, + "size": 1 + } + ] + }, + { + "name": "in-link", + "description": "Inside link", + "content": "[`a`'s](b)", + "captures": [ + { + "label": "quote-start", + "row": 0, + "column": 4, + "size": 1 + } + ] + } + ] +} diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-8.json b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-8.json new file mode 100644 index 0000000..c65101a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/Q-2-8.json @@ -0,0 +1,27 @@ +{ + "code": "Q-2-8", + "title": "Unsupported Code Block Syntax", + "message": "Quarto Markdown requires executable code block options in YAML.", + "notes": [ + { + "message": "use a YAML block syntax in a comment with `|`.", + "label": "invalid-attr", + "noteType": "simple", + "trimLeadingSpace": true + } + ], + "cases": [ + { + "name": "simple", + "description": "Simple case", + "content": "```{r eval=FALSE}\ncat(\"hello\")\n```\n", + "captures": [ + { + "label": "invalid-attr", + "row": 0, + "column": 5 + } + ] + } + ] +} 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 bc1912b..9f9e57a 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": 1247, + "state": 1184, "sym": "_close_block", "errorInfo": { "code": "Q-2-1", @@ -11,7 +11,7 @@ "captures": [ { "column": 3, - "lrState": 137, + "lrState": 175, "row": 0, "size": 1, "sym": "[", @@ -26,190 +26,15295 @@ } ] }, - "name": "001" + "name": "Q-2-1/simple" + }, + { + "column": 2, + "row": 0, + "state": 683, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 1, + "lrState": 683, + "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" + } + ] + }, + "name": "Q-2-10/simple" + }, + { + "column": 4, + "row": 0, + "state": 735, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 3, + "lrState": 735, + "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" + } + ] + }, + "name": "Q-2-10/simple-1" + }, + { + "column": 3, + "row": 0, + "state": 736, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "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" + } + ] + }, + "name": "Q-2-10/simple-2" + }, + { + "column": 3, + "row": 0, + "state": 666, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 2, + "lrState": 666, + "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" + } + ] + }, + "name": "Q-2-10/simple-3" + }, + { + "column": 3, + "row": 0, + "state": 678, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 2, + "lrState": 678, + "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" + } + ] + }, + "name": "Q-2-10/simple-4" + }, + { + "column": 3, + "row": 0, + "state": 654, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 2, + "lrState": 654, + "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" + } + ] + }, + "name": "Q-2-10/simple-5" + }, + { + "column": 4, + "row": 0, + "state": 719, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 3, + "lrState": 719, + "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" + } + ] + }, + "name": "Q-2-10/simple-6" + }, + { + "column": 4, + "row": 0, + "state": 666, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 3, + "lrState": 666, + "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" + } + ] + }, + "name": "Q-2-10/simple-7" + }, + { + "column": 3, + "row": 0, + "state": 728, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 2, + "lrState": 728, + "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" + } + ] + }, + "name": "Q-2-10/simple-8" + }, + { + "column": 5, + "row": 0, + "state": 708, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 4, + "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" + } + ] + }, + "name": "Q-2-10/simple-9" + }, + { + "column": 5, + "row": 0, + "state": 708, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 4, + "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" + } + ] + }, + "name": "Q-2-10/simple-10" + }, + { + "column": 5, + "row": 0, + "state": 708, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 4, + "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" + } + ] + }, + "name": "Q-2-10/simple-11" + }, + { + "column": 5, + "row": 0, + "state": 666, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 4, + "lrState": 666, + "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" + } + ] + }, + "name": "Q-2-10/simple-12" + }, + { + "column": 7, + "row": 0, + "state": 709, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 6, + "lrState": 709, + "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" + } + ] + }, + "name": "Q-2-10/simple-13" + }, + { + "column": 3, + "row": 0, + "state": 652, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 2, + "lrState": 652, + "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" + } + ] + }, + "name": "Q-2-10/simple-14" + }, + { + "column": 4, + "row": 0, + "state": 682, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 3, + "lrState": 682, + "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" + } + ] + }, + "name": "Q-2-10/simple-15" + }, + { + "column": 5, + "row": 0, + "state": 683, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-10", + "title": "Closed Quote Without Matching Open Quote", + "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "captures": [ + { + "column": 4, + "lrState": 683, + "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" + } + ] + }, + "name": "Q-2-10/simple-16" + }, + { + "column": 1, + "row": 0, + "state": 691, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple" + }, + { + "column": 1, + "row": 0, + "state": 691, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-1" + }, + { + "column": 4, + "row": 0, + "state": 1732, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-2" + }, + { + "column": 6, + "row": 0, + "state": 1904, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-3" + }, + { + "column": 8, + "row": 0, + "state": 1899, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-4" + }, + { + "column": 6, + "row": 0, + "state": 1904, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-5" + }, + { + "column": 8, + "row": 0, + "state": 1899, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-6" + }, + { + "column": 6, + "row": 0, + "state": 1922, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-7" + }, + { + "column": 8, + "row": 0, + "state": 1927, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-8" + }, + { + "column": 6, + "row": 0, + "state": 1892, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-9" + }, + { + "column": 8, + "row": 0, + "state": 1891, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-10" + }, + { + "column": 6, + "row": 0, + "state": 1221, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-11" + }, + { + "column": 6, + "row": 0, + "state": 1886, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-12" + }, + { + "column": 6, + "row": 0, + "state": 691, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-13" + }, + { + "column": 6, + "row": 0, + "state": 1893, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-14" + }, + { + "column": 8, + "row": 0, + "state": 2181, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-15" + }, + { + "column": 9, + "row": 0, + "state": 2181, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-16" + }, + { + "column": 7, + "row": 0, + "state": 1898, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-17" + }, + { + "column": 3, + "row": 0, + "state": 900, + "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": 0, + "lrState": 691, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-18" + }, + { + "column": 2, + "row": 0, + "state": 667, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-19" + }, + { + "column": 5, + "row": 0, + "state": 1732, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-20" + }, + { + "column": 7, + "row": 0, + "state": 1904, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-21" + }, + { + "column": 9, + "row": 0, + "state": 1899, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-22" + }, + { + "column": 7, + "row": 0, + "state": 1904, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-23" + }, + { + "column": 9, + "row": 0, + "state": 1899, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-24" + }, + { + "column": 7, + "row": 0, + "state": 1922, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-25" + }, + { + "column": 9, + "row": 0, + "state": 1927, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-26" + }, + { + "column": 7, + "row": 0, + "state": 1892, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-27" + }, + { + "column": 9, + "row": 0, + "state": 1891, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-28" + }, + { + "column": 7, + "row": 0, + "state": 1221, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-29" + }, + { + "column": 7, + "row": 0, + "state": 1886, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-30" + }, + { + "column": 7, + "row": 0, + "state": 667, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-31" + }, + { + "column": 7, + "row": 0, + "state": 1893, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-32" + }, + { + "column": 9, + "row": 0, + "state": 2181, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-33" + }, + { + "column": 10, + "row": 0, + "state": 2181, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-34" + }, + { + "column": 8, + "row": 0, + "state": 1898, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-35" + }, + { + "column": 4, + "row": 0, + "state": 900, + "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": 1, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-36" + }, + { + "column": 2, + "row": 0, + "state": 653, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-37" + }, + { + "column": 5, + "row": 0, + "state": 1732, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-38" + }, + { + "column": 7, + "row": 0, + "state": 1904, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-39" + }, + { + "column": 9, + "row": 0, + "state": 1899, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-40" + }, + { + "column": 7, + "row": 0, + "state": 1904, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-41" + }, + { + "column": 9, + "row": 0, + "state": 1899, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-42" + }, + { + "column": 7, + "row": 0, + "state": 1922, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-43" + }, + { + "column": 9, + "row": 0, + "state": 1927, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-44" + }, + { + "column": 7, + "row": 0, + "state": 1892, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-45" + }, + { + "column": 9, + "row": 0, + "state": 1891, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-46" + }, + { + "column": 7, + "row": 0, + "state": 1221, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-47" + }, + { + "column": 7, + "row": 0, + "state": 1886, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-48" + }, + { + "column": 7, + "row": 0, + "state": 653, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-49" + }, + { + "column": 7, + "row": 0, + "state": 1893, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-50" + }, + { + "column": 9, + "row": 0, + "state": 2181, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-51" + }, + { + "column": 10, + "row": 0, + "state": 2181, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-52" + }, + { + "column": 8, + "row": 0, + "state": 1898, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-53" + }, + { + "column": 4, + "row": 0, + "state": 900, + "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": 1, + "lrState": 653, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-54" + }, + { + "column": 3, + "row": 0, + "state": 687, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-55" + }, + { + "column": 6, + "row": 0, + "state": 1732, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-56" + }, + { + "column": 8, + "row": 0, + "state": 1904, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-57" + }, + { + "column": 10, + "row": 0, + "state": 1899, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-58" + }, + { + "column": 8, + "row": 0, + "state": 1904, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-59" + }, + { + "column": 10, + "row": 0, + "state": 1899, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-60" + }, + { + "column": 8, + "row": 0, + "state": 1922, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-61" + }, + { + "column": 10, + "row": 0, + "state": 1927, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-62" + }, + { + "column": 8, + "row": 0, + "state": 1892, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-63" + }, + { + "column": 10, + "row": 0, + "state": 1891, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-64" + }, + { + "column": 8, + "row": 0, + "state": 1221, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-65" + }, + { + "column": 8, + "row": 0, + "state": 1886, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-66" + }, + { + "column": 8, + "row": 0, + "state": 687, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-67" + }, + { + "column": 8, + "row": 0, + "state": 1893, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-68" + }, + { + "column": 10, + "row": 0, + "state": 2181, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-69" + }, + { + "column": 11, + "row": 0, + "state": 2181, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-70" + }, + { + "column": 9, + "row": 0, + "state": 1898, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-71" + }, + { + "column": 5, + "row": 0, + "state": 900, + "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": 2, + "lrState": 687, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-72" + }, + { + "column": 3, + "row": 0, + "state": 667, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-73" + }, + { + "column": 6, + "row": 0, + "state": 1732, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-74" + }, + { + "column": 8, + "row": 0, + "state": 1904, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-75" + }, + { + "column": 10, + "row": 0, + "state": 1899, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-76" + }, + { + "column": 8, + "row": 0, + "state": 1904, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-77" + }, + { + "column": 10, + "row": 0, + "state": 1899, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-78" + }, + { + "column": 8, + "row": 0, + "state": 1922, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-79" + }, + { + "column": 10, + "row": 0, + "state": 1927, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-80" + }, + { + "column": 8, + "row": 0, + "state": 1892, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-81" + }, + { + "column": 10, + "row": 0, + "state": 1891, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-82" + }, + { + "column": 8, + "row": 0, + "state": 1221, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-83" + }, + { + "column": 8, + "row": 0, + "state": 1886, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-84" + }, + { + "column": 8, + "row": 0, + "state": 667, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-85" + }, + { + "column": 8, + "row": 0, + "state": 1893, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-86" + }, + { + "column": 10, + "row": 0, + "state": 2181, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-87" + }, + { + "column": 11, + "row": 0, + "state": 2181, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-88" + }, + { + "column": 9, + "row": 0, + "state": 1898, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-89" + }, + { + "column": 5, + "row": 0, + "state": 900, + "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": 2, + "lrState": 667, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-90" + }, + { + "column": 4, + "row": 0, + "state": 718, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-91" + }, + { + "column": 7, + "row": 0, + "state": 1732, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-92" + }, + { + "column": 9, + "row": 0, + "state": 1904, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-93" + }, + { + "column": 11, + "row": 0, + "state": 1899, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-94" + }, + { + "column": 9, + "row": 0, + "state": 1904, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-95" + }, + { + "column": 11, + "row": 0, + "state": 1899, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-96" + }, + { + "column": 9, + "row": 0, + "state": 1922, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-97" + }, + { + "column": 11, + "row": 0, + "state": 1927, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-98" + }, + { + "column": 9, + "row": 0, + "state": 1892, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-99" + }, + { + "column": 11, + "row": 0, + "state": 1891, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-100" + }, + { + "column": 9, + "row": 0, + "state": 1221, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-101" + }, + { + "column": 9, + "row": 0, + "state": 1886, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-102" + }, + { + "column": 9, + "row": 0, + "state": 718, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-103" + }, + { + "column": 9, + "row": 0, + "state": 1893, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-104" + }, + { + "column": 11, + "row": 0, + "state": 2181, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-105" + }, + { + "column": 12, + "row": 0, + "state": 2181, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-106" + }, + { + "column": 10, + "row": 0, + "state": 1898, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-107" + }, + { + "column": 6, + "row": 0, + "state": 900, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-108" + }, + { + "column": 4, + "row": 0, + "state": 718, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-109" + }, + { + "column": 7, + "row": 0, + "state": 1732, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-110" + }, + { + "column": 9, + "row": 0, + "state": 1904, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-111" + }, + { + "column": 11, + "row": 0, + "state": 1899, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-112" + }, + { + "column": 9, + "row": 0, + "state": 1904, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-113" + }, + { + "column": 11, + "row": 0, + "state": 1899, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-114" + }, + { + "column": 9, + "row": 0, + "state": 1922, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-115" + }, + { + "column": 11, + "row": 0, + "state": 1927, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-116" + }, + { + "column": 9, + "row": 0, + "state": 1892, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-117" + }, + { + "column": 11, + "row": 0, + "state": 1891, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-118" + }, + { + "column": 9, + "row": 0, + "state": 1221, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-119" + }, + { + "column": 9, + "row": 0, + "state": 1886, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-120" + }, + { + "column": 9, + "row": 0, + "state": 718, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-121" + }, + { + "column": 9, + "row": 0, + "state": 1893, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-122" + }, + { + "column": 11, + "row": 0, + "state": 2181, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-123" + }, + { + "column": 12, + "row": 0, + "state": 2181, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-124" + }, + { + "column": 10, + "row": 0, + "state": 1898, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-125" + }, + { + "column": 6, + "row": 0, + "state": 900, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-126" + }, + { + "column": 4, + "row": 0, + "state": 718, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-127" + }, + { + "column": 7, + "row": 0, + "state": 1732, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-128" + }, + { + "column": 9, + "row": 0, + "state": 1904, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-129" + }, + { + "column": 11, + "row": 0, + "state": 1899, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-130" + }, + { + "column": 9, + "row": 0, + "state": 1904, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-131" + }, + { + "column": 11, + "row": 0, + "state": 1899, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-132" + }, + { + "column": 9, + "row": 0, + "state": 1922, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-133" + }, + { + "column": 11, + "row": 0, + "state": 1927, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-134" + }, + { + "column": 9, + "row": 0, + "state": 1892, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-135" + }, + { + "column": 11, + "row": 0, + "state": 1891, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-136" + }, + { + "column": 9, + "row": 0, + "state": 1221, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-137" + }, + { + "column": 9, + "row": 0, + "state": 1886, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-138" + }, + { + "column": 9, + "row": 0, + "state": 718, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-139" + }, + { + "column": 9, + "row": 0, + "state": 1893, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-140" + }, + { + "column": 11, + "row": 0, + "state": 2181, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-141" + }, + { + "column": 12, + "row": 0, + "state": 2181, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-142" + }, + { + "column": 10, + "row": 0, + "state": 1898, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-143" + }, + { + "column": 6, + "row": 0, + "state": 900, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-144" + }, + { + "column": 4, + "row": 0, + "state": 718, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-145" + }, + { + "column": 7, + "row": 0, + "state": 1732, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-146" + }, + { + "column": 9, + "row": 0, + "state": 1904, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-147" + }, + { + "column": 11, + "row": 0, + "state": 1899, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-148" + }, + { + "column": 9, + "row": 0, + "state": 1904, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-149" + }, + { + "column": 11, + "row": 0, + "state": 1899, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-150" + }, + { + "column": 9, + "row": 0, + "state": 1922, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-151" + }, + { + "column": 11, + "row": 0, + "state": 1927, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-152" + }, + { + "column": 9, + "row": 0, + "state": 1892, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-153" + }, + { + "column": 11, + "row": 0, + "state": 1891, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-154" + }, + { + "column": 9, + "row": 0, + "state": 1221, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-155" + }, + { + "column": 9, + "row": 0, + "state": 1886, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-156" + }, + { + "column": 9, + "row": 0, + "state": 718, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-157" + }, + { + "column": 9, + "row": 0, + "state": 1893, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-158" + }, + { + "column": 11, + "row": 0, + "state": 2181, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-159" + }, + { + "column": 12, + "row": 0, + "state": 2181, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-160" + }, + { + "column": 10, + "row": 0, + "state": 1898, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-161" + }, + { + "column": 6, + "row": 0, + "state": 900, + "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, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-162" + }, + { + "column": 2, + "row": 0, + "state": 679, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-163" + }, + { + "column": 5, + "row": 0, + "state": 1732, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-164" + }, + { + "column": 7, + "row": 0, + "state": 1904, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-165" + }, + { + "column": 9, + "row": 0, + "state": 1899, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-166" + }, + { + "column": 7, + "row": 0, + "state": 1904, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-167" + }, + { + "column": 9, + "row": 0, + "state": 1899, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-168" + }, + { + "column": 7, + "row": 0, + "state": 1922, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-169" + }, + { + "column": 9, + "row": 0, + "state": 1927, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-170" + }, + { + "column": 7, + "row": 0, + "state": 1892, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-171" + }, + { + "column": 9, + "row": 0, + "state": 1891, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-172" + }, + { + "column": 7, + "row": 0, + "state": 1221, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-173" + }, + { + "column": 7, + "row": 0, + "state": 1886, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-174" + }, + { + "column": 7, + "row": 0, + "state": 679, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-175" + }, + { + "column": 7, + "row": 0, + "state": 1893, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-176" + }, + { + "column": 9, + "row": 0, + "state": 2181, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-177" + }, + { + "column": 10, + "row": 0, + "state": 2181, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-178" + }, + { + "column": 8, + "row": 0, + "state": 1898, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-179" + }, + { + "column": 4, + "row": 0, + "state": 900, + "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": 1, + "lrState": 679, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-180" + }, + { + "column": 2, + "row": 0, + "state": 655, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-181" + }, + { + "column": 5, + "row": 0, + "state": 1732, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-182" + }, + { + "column": 7, + "row": 0, + "state": 1904, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-183" + }, + { + "column": 9, + "row": 0, + "state": 1899, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-184" + }, + { + "column": 7, + "row": 0, + "state": 1904, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-185" + }, + { + "column": 9, + "row": 0, + "state": 1899, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-186" + }, + { + "column": 7, + "row": 0, + "state": 1922, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-187" + }, + { + "column": 9, + "row": 0, + "state": 1927, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-188" + }, + { + "column": 7, + "row": 0, + "state": 1892, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-189" + }, + { + "column": 9, + "row": 0, + "state": 1891, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-190" + }, + { + "column": 7, + "row": 0, + "state": 1221, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-191" + }, + { + "column": 7, + "row": 0, + "state": 1886, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-192" + }, + { + "column": 7, + "row": 0, + "state": 655, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-193" + }, + { + "column": 7, + "row": 0, + "state": 1893, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-194" + }, + { + "column": 9, + "row": 0, + "state": 2181, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-195" + }, + { + "column": 10, + "row": 0, + "state": 2181, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-196" + }, + { + "column": 8, + "row": 0, + "state": 1898, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-197" + }, + { + "column": 4, + "row": 0, + "state": 900, + "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": 1, + "lrState": 655, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-198" + }, + { + "column": 3, + "row": 0, + "state": 722, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-199" + }, + { + "column": 6, + "row": 0, + "state": 1732, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-200" + }, + { + "column": 8, + "row": 0, + "state": 1904, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-201" + }, + { + "column": 10, + "row": 0, + "state": 1899, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-202" + }, + { + "column": 8, + "row": 0, + "state": 1904, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-203" + }, + { + "column": 10, + "row": 0, + "state": 1899, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-204" + }, + { + "column": 8, + "row": 0, + "state": 1922, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-205" + }, + { + "column": 10, + "row": 0, + "state": 1927, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-206" + }, + { + "column": 8, + "row": 0, + "state": 1892, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-207" + }, + { + "column": 10, + "row": 0, + "state": 1891, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-208" + }, + { + "column": 8, + "row": 0, + "state": 1221, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-209" + }, + { + "column": 8, + "row": 0, + "state": 1886, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-210" + }, + { + "column": 8, + "row": 0, + "state": 722, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-211" + }, + { + "column": 8, + "row": 0, + "state": 1893, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-212" + }, + { + "column": 10, + "row": 0, + "state": 2181, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-213" + }, + { + "column": 11, + "row": 0, + "state": 2181, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-214" + }, + { + "column": 9, + "row": 0, + "state": 1898, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-215" + }, + { + "column": 5, + "row": 0, + "state": 900, + "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": 2, + "lrState": 722, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-216" + }, + { + "column": 2, + "row": 0, + "state": 677, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-217" + }, + { + "column": 5, + "row": 0, + "state": 1732, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-218" + }, + { + "column": 7, + "row": 0, + "state": 1904, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-219" + }, + { + "column": 9, + "row": 0, + "state": 1899, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-220" + }, + { + "column": 7, + "row": 0, + "state": 1904, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-221" + }, + { + "column": 9, + "row": 0, + "state": 1899, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-222" + }, + { + "column": 7, + "row": 0, + "state": 1922, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-223" + }, + { + "column": 9, + "row": 0, + "state": 1927, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-224" + }, + { + "column": 7, + "row": 0, + "state": 1892, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-225" + }, + { + "column": 9, + "row": 0, + "state": 1891, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-226" + }, + { + "column": 7, + "row": 0, + "state": 1221, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-227" + }, + { + "column": 7, + "row": 0, + "state": 1886, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-228" + }, + { + "column": 7, + "row": 0, + "state": 677, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-229" + }, + { + "column": 7, + "row": 0, + "state": 1893, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-230" + }, + { + "column": 9, + "row": 0, + "state": 2181, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-231" + }, + { + "column": 10, + "row": 0, + "state": 2181, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-232" + }, + { + "column": 8, + "row": 0, + "state": 1898, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-233" + }, + { + "column": 4, + "row": 0, + "state": 900, + "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": 1, + "lrState": 677, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-234" + }, + { + "column": 2, + "row": 0, + "state": 738, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-235" + }, + { + "column": 5, + "row": 0, + "state": 1732, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-236" + }, + { + "column": 7, + "row": 0, + "state": 1904, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-237" + }, + { + "column": 9, + "row": 0, + "state": 1899, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-238" + }, + { + "column": 7, + "row": 0, + "state": 1904, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-239" + }, + { + "column": 9, + "row": 0, + "state": 1899, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-240" + }, + { + "column": 7, + "row": 0, + "state": 1922, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-241" + }, + { + "column": 9, + "row": 0, + "state": 1927, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-242" + }, + { + "column": 7, + "row": 0, + "state": 1892, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-243" + }, + { + "column": 9, + "row": 0, + "state": 1891, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-244" + }, + { + "column": 7, + "row": 0, + "state": 1221, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-245" + }, + { + "column": 7, + "row": 0, + "state": 1886, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-246" + }, + { + "column": 7, + "row": 0, + "state": 738, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-247" + }, + { + "column": 7, + "row": 0, + "state": 1893, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-248" + }, + { + "column": 9, + "row": 0, + "state": 2181, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-249" + }, + { + "column": 10, + "row": 0, + "state": 2181, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-250" + }, + { + "column": 8, + "row": 0, + "state": 1898, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-251" + }, + { + "column": 4, + "row": 0, + "state": 900, + "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": 1, + "lrState": 738, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-252" + }, + { + "column": 3, + "row": 0, + "state": 737, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-253" + }, + { + "column": 6, + "row": 0, + "state": 1732, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-254" + }, + { + "column": 8, + "row": 0, + "state": 1904, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-255" + }, + { + "column": 10, + "row": 0, + "state": 1899, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-256" + }, + { + "column": 8, + "row": 0, + "state": 1904, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-257" + }, + { + "column": 10, + "row": 0, + "state": 1899, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-258" + }, + { + "column": 8, + "row": 0, + "state": 1922, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-259" + }, + { + "column": 10, + "row": 0, + "state": 1927, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-260" + }, + { + "column": 8, + "row": 0, + "state": 1892, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-261" + }, + { + "column": 10, + "row": 0, + "state": 1891, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-262" + }, + { + "column": 8, + "row": 0, + "state": 1221, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-263" + }, + { + "column": 8, + "row": 0, + "state": 1886, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-264" + }, + { + "column": 8, + "row": 0, + "state": 737, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-265" + }, + { + "column": 8, + "row": 0, + "state": 1893, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-266" + }, + { + "column": 10, + "row": 0, + "state": 2181, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-267" + }, + { + "column": 11, + "row": 0, + "state": 2181, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-268" + }, + { + "column": 9, + "row": 0, + "state": 1898, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-269" + }, + { + "column": 5, + "row": 0, + "state": 900, + "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": 2, + "lrState": 737, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-270" + }, + { + "column": 3, + "row": 0, + "state": 717, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-271" + }, + { + "column": 6, + "row": 0, + "state": 1732, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-272" + }, + { + "column": 8, + "row": 0, + "state": 1904, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-273" + }, + { + "column": 10, + "row": 0, + "state": 1899, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-274" + }, + { + "column": 8, + "row": 0, + "state": 1904, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-275" + }, + { + "column": 10, + "row": 0, + "state": 1899, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-276" + }, + { + "column": 8, + "row": 0, + "state": 1922, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-277" + }, + { + "column": 10, + "row": 0, + "state": 1927, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-278" + }, + { + "column": 8, + "row": 0, + "state": 1892, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-279" + }, + { + "column": 10, + "row": 0, + "state": 1891, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-280" + }, + { + "column": 8, + "row": 0, + "state": 1221, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-281" + }, + { + "column": 8, + "row": 0, + "state": 1886, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-282" + }, + { + "column": 8, + "row": 0, + "state": 717, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-283" + }, + { + "column": 8, + "row": 0, + "state": 1893, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-284" + }, + { + "column": 10, + "row": 0, + "state": 2181, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-285" + }, + { + "column": 11, + "row": 0, + "state": 2181, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-286" + }, + { + "column": 9, + "row": 0, + "state": 1898, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-287" + }, + { + "column": 5, + "row": 0, + "state": 900, + "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": 2, + "lrState": 717, + "row": 0, + "size": 1, + "sym": "double_quote", + "label": "quote-start" + } + ], + "notes": [ + { + "message": "This is the opening quote mark", + "label": "quote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-11/simple-288" + }, + { + "column": 18, + "row": 0, + "state": 1478, + "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": [ + { + "column": 0, + "lrState": 758, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '*' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-12/simple" + }, + { + "column": 19, + "row": 0, + "state": 1478, + "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": [ + { + "column": 1, + "lrState": 863, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '*' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-12/simple-1" + }, + { + "column": 19, + "row": 0, + "state": 1478, + "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": [ + { + "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" + } + ] + }, + "name": "Q-2-12/simple-2" + }, + { + "column": 20, + "row": 0, + "state": 1478, + "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": [ + { + "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" + } + ] + }, + "name": "Q-2-12/simple-3" + }, + { + "column": 20, + "row": 0, + "state": 1478, + "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": [ + { + "column": 2, + "lrState": 863, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '*' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-12/simple-4" + }, + { + "column": 21, + "row": 0, + "state": 1478, + "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": [ + { + "column": 3, + "lrState": 776, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '*' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-12/simple-5" + }, + { + "column": 21, + "row": 0, + "state": 1478, + "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": [ + { + "column": 3, + "lrState": 776, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '*' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-12/simple-6" + }, + { + "column": 21, + "row": 0, + "state": 1478, + "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": [ + { + "column": 3, + "lrState": 776, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '*' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-12/simple-7" + }, + { + "column": 21, + "row": 0, + "state": 1478, + "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": [ + { + "column": 3, + "lrState": 776, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '*' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-12/simple-8" + }, + { + "column": 19, + "row": 0, + "state": 1478, + "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": [ + { + "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" + } + ] + }, + "name": "Q-2-12/simple-9" + }, + { + "column": 19, + "row": 0, + "state": 1478, + "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": [ + { + "column": 1, + "lrState": 807, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '*' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-12/simple-10" + }, + { + "column": 20, + "row": 0, + "state": 1478, + "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": [ + { + "column": 2, + "lrState": 799, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '*' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-12/simple-11" + }, + { + "column": 19, + "row": 0, + "state": 1478, + "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": [ + { + "column": 1, + "lrState": 783, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '*' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-12/simple-12" + }, + { + "column": 19, + "row": 0, + "state": 1478, + "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": [ + { + "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" + } + ] + }, + "name": "Q-2-12/simple-13" + }, + { + "column": 20, + "row": 0, + "state": 1478, + "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": [ + { + "column": 2, + "lrState": 823, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '*' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-12/simple-14" + }, + { + "column": 26, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 0, + "lrState": 756, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple" + }, + { + "column": 27, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 1, + "lrState": 861, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple-1" + }, + { + "column": 27, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 1, + "lrState": 853, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple-2" + }, + { + "column": 28, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 2, + "lrState": 837, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple-3" + }, + { + "column": 28, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 2, + "lrState": 861, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple-4" + }, + { + "column": 29, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 3, + "lrState": 774, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple-5" + }, + { + "column": 29, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 3, + "lrState": 774, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple-6" + }, + { + "column": 29, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 3, + "lrState": 774, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple-7" + }, + { + "column": 29, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 3, + "lrState": 774, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple-8" + }, + { + "column": 27, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 1, + "lrState": 813, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple-9" + }, + { + "column": 27, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 1, + "lrState": 805, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple-10" + }, + { + "column": 28, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 2, + "lrState": 797, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple-11" + }, + { + "column": 27, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 1, + "lrState": 781, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple-12" + }, + { + "column": 27, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 1, + "lrState": 789, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple-13" + }, + { + "column": 28, + "row": 0, + "state": 2005, + "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.", + "captures": [ + { + "column": 2, + "lrState": 821, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '**' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-13/simple-14" + }, + { + "column": 26, + "row": 0, + "state": 2139, + "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": 0, + "lrState": 757, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple" + }, + { + "column": 27, + "row": 0, + "state": 2139, + "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": 1, + "lrState": 862, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple-1" + }, + { + "column": 28, + "row": 0, + "state": 2139, + "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, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple-2" + }, + { + "column": 29, + "row": 0, + "state": 2139, + "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": 3, + "lrState": 775, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple-3" + }, + { + "column": 29, + "row": 0, + "state": 2139, + "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": 3, + "lrState": 775, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple-4" + }, + { + "column": 29, + "row": 0, + "state": 2139, + "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": 3, + "lrState": 775, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple-5" + }, + { + "column": 29, + "row": 0, + "state": 2139, + "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": 3, + "lrState": 775, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple-6" + }, + { + "column": 27, + "row": 0, + "state": 2139, + "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": 1, + "lrState": 814, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple-7" + }, + { + "column": 27, + "row": 0, + "state": 2139, + "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": 1, + "lrState": 806, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple-8" + }, + { + "column": 28, + "row": 0, + "state": 2139, + "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": 798, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple-9" + }, + { + "column": 27, + "row": 0, + "state": 2139, + "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": 1, + "lrState": 782, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple-10" + }, + { + "column": 27, + "row": 0, + "state": 2139, + "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": 1, + "lrState": 790, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple-11" + }, + { + "column": 27, + "row": 0, + "state": 2139, + "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": 1, + "lrState": 846, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple-12" + }, + { + "column": 28, + "row": 0, + "state": 2139, + "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": 830, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple-13" + }, + { + "column": 28, + "row": 0, + "state": 2139, + "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": 822, + "row": 0, + "size": 2, + "sym": "strong_emphasis_delimiter", + "label": "strong-start" + } + ], + "notes": [ + { + "message": "This is the opening '__' mark", + "label": "strong-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-15/simple-14" + }, + { + "column": 21, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 0, + "lrState": 769, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple" + }, + { + "column": 22, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 1, + "lrState": 860, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-1" + }, + { + "column": 22, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 1, + "lrState": 852, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-2" + }, + { + "column": 23, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 2, + "lrState": 836, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-3" + }, + { + "column": 23, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 2, + "lrState": 860, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-4" + }, + { + "column": 24, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 3, + "lrState": 772, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-5" + }, + { + "column": 24, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 3, + "lrState": 772, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-6" + }, + { + "column": 24, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 3, + "lrState": 772, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-7" + }, + { + "column": 24, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 3, + "lrState": 772, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-8" + }, + { + "column": 22, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 1, + "lrState": 812, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-9" + }, + { + "column": 22, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 1, + "lrState": 804, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-10" + }, + { + "column": 23, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 2, + "lrState": 796, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-11" + }, + { + "column": 22, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 1, + "lrState": 780, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-12" + }, + { + "column": 22, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 1, + "lrState": 788, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-13" + }, + { + "column": 22, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 1, + "lrState": 844, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-14" + }, + { + "column": 23, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 2, + "lrState": 828, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-15" + }, + { + "column": 23, + "row": 0, + "state": 1784, + "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.", + "captures": [ + { + "column": 2, + "lrState": 820, + "row": 0, + "size": 1, + "sym": "superscript_delimiter", + "label": "super-start" + } + ], + "notes": [ + { + "message": "This is the opening '^' mark", + "label": "super-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-16/simple-16" + }, + { + "column": 19, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 0, + "lrState": 760, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple" + }, + { + "column": 20, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 1, + "lrState": 859, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple-1" + }, + { + "column": 20, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 1, + "lrState": 851, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple-2" + }, + { + "column": 21, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 2, + "lrState": 835, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple-3" + }, + { + "column": 21, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 2, + "lrState": 859, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple-4" + }, + { + "column": 22, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 3, + "lrState": 771, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple-5" + }, + { + "column": 22, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 3, + "lrState": 771, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple-6" + }, + { + "column": 22, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 3, + "lrState": 771, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple-7" + }, + { + "column": 22, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 3, + "lrState": 771, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple-8" + }, + { + "column": 20, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 1, + "lrState": 811, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple-9" + }, + { + "column": 20, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 1, + "lrState": 779, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple-10" + }, + { + "column": 20, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 1, + "lrState": 787, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple-11" + }, + { + "column": 20, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 1, + "lrState": 843, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple-12" + }, + { + "column": 21, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 2, + "lrState": 827, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple-13" + }, + { + "column": 21, + "row": 0, + "state": 1668, + "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.", + "captures": [ + { + "column": 2, + "lrState": 819, + "row": 0, + "size": 1, + "sym": "subscript_delimiter", + "label": "sub-start" + } + ], + "notes": [ + { + "message": "This is the opening '~' mark", + "label": "sub-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-17/simple-14" + }, + { + "column": 20, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 0, + "lrState": 753, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple" + }, + { + "column": 21, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 1, + "lrState": 858, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple-1" + }, + { + "column": 21, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 1, + "lrState": 850, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple-2" + }, + { + "column": 22, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 2, + "lrState": 834, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple-3" + }, + { + "column": 22, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 2, + "lrState": 858, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple-4" + }, + { + "column": 23, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 3, + "lrState": 770, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple-5" + }, + { + "column": 23, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 3, + "lrState": 770, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple-6" + }, + { + "column": 23, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 3, + "lrState": 770, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple-7" + }, + { + "column": 23, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 3, + "lrState": 770, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple-8" + }, + { + "column": 21, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 1, + "lrState": 810, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple-9" + }, + { + "column": 21, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 1, + "lrState": 778, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple-10" + }, + { + "column": 21, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 1, + "lrState": 786, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple-11" + }, + { + "column": 21, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 1, + "lrState": 842, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple-12" + }, + { + "column": 22, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 2, + "lrState": 826, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple-13" + }, + { + "column": 22, + "row": 0, + "state": 2151, + "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.", + "captures": [ + { + "column": 2, + "lrState": 818, + "row": 0, + "size": 2, + "sym": "strikeout_delimiter", + "label": "strike-start" + } + ], + "notes": [ + { + "message": "This is the opening '~~' mark", + "label": "strike-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-18/simple-14" + }, + { + "column": 28, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 0, + "lrState": 219, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple" + }, + { + "column": 29, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 296, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple-1" + }, + { + "column": 29, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 293, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple-2" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 285, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple-3" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 296, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple-4" + }, + { + "column": 31, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 3, + "lrState": 252, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple-5" + }, + { + "column": 31, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 3, + "lrState": 252, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple-6" + }, + { + "column": 31, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 3, + "lrState": 252, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple-7" + }, + { + "column": 29, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 269, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple-8" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 265, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple-9" + }, + { + "column": 29, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 257, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple-10" + }, + { + "column": 29, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 261, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple-11" + }, + { + "column": 29, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 289, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple-12" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 281, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple-13" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 277, + "row": 0, + "size": 3, + "sym": "insert_delimiter", + "label": "insert-start" + } + ], + "notes": [ + { + "message": "This is the opening '[++' mark", + "label": "insert-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-19/simple-14" + }, + { + "column": 18, + "row": 0, + "state": 2411, + "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.", + "captures": [ + { + "column": 17, + "lrState": 2411, + "row": 0, + "size": 1, + "sym": "{", + "label": "attribute-start" + } + ], + "notes": [ + { + "message": "The attribute specifier starts here.", + "label": "attribute-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-2/simple" + }, + { + "column": 28, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 0, + "lrState": 220, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple" + }, + { + "column": 29, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 297, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple-1" + }, + { + "column": 29, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 214, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple-2" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 286, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple-3" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 297, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple-4" + }, + { + "column": 31, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 3, + "lrState": 253, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple-5" + }, + { + "column": 31, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 3, + "lrState": 253, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple-6" + }, + { + "column": 31, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 3, + "lrState": 253, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple-7" + }, + { + "column": 29, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 270, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple-8" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 266, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple-9" + }, + { + "column": 29, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 258, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple-10" + }, + { + "column": 29, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 262, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple-11" + }, + { + "column": 29, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 290, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple-12" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 282, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple-13" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 278, + "row": 0, + "size": 3, + "sym": "delete_delimiter", + "label": "delete-start" + } + ], + "notes": [ + { + "message": "This is the opening '[--' mark", + "label": "delete-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-20/simple-14" + }, + { + "column": 29, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 0, + "lrState": 221, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 298, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple-1" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 294, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple-2" + }, + { + "column": 31, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 287, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple-3" + }, + { + "column": 31, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 298, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple-4" + }, + { + "column": 32, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 3, + "lrState": 254, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple-5" + }, + { + "column": 32, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 3, + "lrState": 254, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple-6" + }, + { + "column": 32, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 3, + "lrState": 254, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple-7" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 271, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple-8" + }, + { + "column": 31, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 267, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple-9" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 259, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple-10" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 263, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple-11" + }, + { + "column": 30, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 291, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple-12" + }, + { + "column": 31, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 283, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple-13" + }, + { + "column": 31, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 279, + "row": 0, + "size": 3, + "sym": "edit_comment_delimiter", + "label": "comment-start" + } + ], + "notes": [ + { + "message": "This is the opening '[>>' mark", + "label": "comment-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-21/simple-14" + }, + { + "column": 31, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 0, + "lrState": 218, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple" + }, + { + "column": 32, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 295, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple-1" + }, + { + "column": 32, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 292, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple-2" + }, + { + "column": 33, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 284, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple-3" + }, + { + "column": 33, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 295, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple-4" + }, + { + "column": 34, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 3, + "lrState": 251, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple-5" + }, + { + "column": 34, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 3, + "lrState": 251, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple-6" + }, + { + "column": 34, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 3, + "lrState": 251, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple-7" + }, + { + "column": 32, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 268, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple-8" + }, + { + "column": 33, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 264, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple-9" + }, + { + "column": 32, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 256, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple-10" + }, + { + "column": 32, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 260, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple-11" + }, + { + "column": 32, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 1, + "lrState": 288, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple-12" + }, + { + "column": 33, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 280, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple-13" + }, + { + "column": 33, + "row": 0, + "state": 1943, + "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.", + "captures": [ + { + "column": 2, + "lrState": 276, + "row": 0, + "size": 3, + "sym": "highlight_delimiter", + "label": "highlight-start" + } + ], + "notes": [ + { + "message": "This is the opening '[!!' mark", + "label": "highlight-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-22/simple-14" + }, + { + "column": 21, + "row": 0, + "state": 3407, + "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.", + "captures": [ + { + "column": 0, + "lrState": 3713, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple" + }, + { + "column": 22, + "row": 0, + "state": 3259, + "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.", + "captures": [ + { + "column": 1, + "lrState": 3828, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-1" + }, + { + "column": 22, + "row": 0, + "state": 3839, + "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.", + "captures": [ + { + "column": 1, + "lrState": 3802, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-2" + }, + { + "column": 23, + "row": 0, + "state": 3226, + "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.", + "captures": [ + { + "column": 2, + "lrState": 3750, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-3" + }, + { + "column": 23, + "row": 0, + "state": 3259, + "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.", + "captures": [ + { + "column": 2, + "lrState": 3828, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-4" + }, + { + "column": 24, + "row": 0, + "state": 3879, + "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.", + "captures": [ + { + "column": 3, + "lrState": 3513, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-5" + }, + { + "column": 24, + "row": 0, + "state": 3879, + "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.", + "captures": [ + { + "column": 3, + "lrState": 3513, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-6" + }, + { + "column": 24, + "row": 0, + "state": 3879, + "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.", + "captures": [ + { + "column": 3, + "lrState": 3513, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-7" + }, + { + "column": 24, + "row": 0, + "state": 3879, + "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.", + "captures": [ + { + "column": 3, + "lrState": 3513, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-8" + }, + { + "column": 22, + "row": 0, + "state": 3470, + "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.", + "captures": [ + { + "column": 1, + "lrState": 3672, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-9" + }, + { + "column": 22, + "row": 0, + "state": 3334, + "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.", + "captures": [ + { + "column": 1, + "lrState": 3646, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-10" + }, + { + "column": 23, + "row": 0, + "state": 3656, + "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.", + "captures": [ + { + "column": 2, + "lrState": 3620, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-11" + }, + { + "column": 22, + "row": 0, + "state": 3250, + "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.", + "captures": [ + { + "column": 1, + "lrState": 3568, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-12" + }, + { + "column": 22, + "row": 0, + "state": 3702, + "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.", + "captures": [ + { + "column": 1, + "lrState": 3594, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-13" + }, + { + "column": 22, + "row": 0, + "state": 3607, + "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.", + "captures": [ + { + "column": 1, + "lrState": 3776, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-14" + }, + { + "column": 23, + "row": 0, + "state": 3791, + "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.", + "captures": [ + { + "column": 2, + "lrState": 3724, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-15" + }, + { + "column": 23, + "row": 0, + "state": 3629, + "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.", + "captures": [ + { + "column": 2, + "lrState": 3698, + "row": 0, + "size": 1, + "sym": "$", + "label": "math-start" + } + ], + "notes": [ + { + "message": "This is the opening '$' mark", + "label": "math-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-23/simple-16" + }, + { + "column": 0, + "row": 1, + "state": 2944, + "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.", + "captures": [ + { + "column": 0, + "lrState": 2864, + "row": 0, + "size": 1, + "sym": "code_span_delimiter", + "label": "code-start" + } + ], + "notes": [ + { + "message": "This is the opening '`' mark", + "label": "code-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-24/simple" + }, + { + "column": 16, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 0, + "lrState": 135, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple" + }, + { + "column": 17, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 1, + "lrState": 166, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-1" + }, + { + "column": 17, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 1, + "lrState": 164, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-2" + }, + { + "column": 18, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 2, + "lrState": 160, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-3" + }, + { + "column": 19, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 3, + "lrState": 140, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-4" + }, + { + "column": 19, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 3, + "lrState": 140, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-5" + }, + { + "column": 19, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 3, + "lrState": 140, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-6" + }, + { + "column": 19, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 3, + "lrState": 140, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-7" + }, + { + "column": 17, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 1, + "lrState": 154, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-8" + }, + { + "column": 17, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 1, + "lrState": 152, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-9" + }, + { + "column": 18, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 2, + "lrState": 150, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-10" + }, + { + "column": 17, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 1, + "lrState": 146, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-11" + }, + { + "column": 17, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 1, + "lrState": 148, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-12" + }, + { + "column": 17, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 1, + "lrState": 162, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-13" + }, + { + "column": 18, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 2, + "lrState": 158, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-14" + }, + { + "column": 18, + "row": 0, + "state": 1184, + "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.", + "captures": [ + { + "column": 2, + "lrState": 156, + "row": 0, + "size": 2, + "sym": "![", + "label": "image-start" + } + ], + "notes": [ + { + "message": "This is the opening '![' mark", + "label": "image-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-25/simple-15" + }, + { + "column": 26, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 0, + "lrState": 350, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple" + }, + { + "column": 27, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 1, + "lrState": 442, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-1" + }, + { + "column": 27, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 1, + "lrState": 441, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-2" + }, + { + "column": 28, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 2, + "lrState": 439, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-3" + }, + { + "column": 28, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 2, + "lrState": 442, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-4" + }, + { + "column": 29, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 3, + "lrState": 428, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-5" + }, + { + "column": 29, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 3, + "lrState": 428, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-6" + }, + { + "column": 29, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 3, + "lrState": 428, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-7" + }, + { + "column": 29, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 3, + "lrState": 428, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-8" + }, + { + "column": 27, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 1, + "lrState": 436, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-9" + }, + { + "column": 27, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 1, + "lrState": 435, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-10" + }, + { + "column": 28, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 2, + "lrState": 434, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-11" + }, + { + "column": 27, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 1, + "lrState": 432, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-12" + }, + { + "column": 27, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 1, + "lrState": 433, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-13" + }, + { + "column": 27, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 1, + "lrState": 440, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-14" + }, + { + "column": 28, + "row": 0, + "state": 1887, + "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.", + "captures": [ + { + "column": 2, + "lrState": 438, + "row": 0, + "size": 2, + "sym": "inline_note_delimiter", + "label": "footnote-start" + } + ], + "notes": [ + { + "message": "This is the opening '^[' mark", + "label": "footnote-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-26/simple-15" + }, + { + "column": 20, + "row": 0, + "state": 2557, + "sym": "pandoc_str", + "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": 2557, + "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" + } + ] + }, + "name": "Q-2-3/simple" + }, + { + "column": 17, + "row": 0, + "state": 1565, + "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": 759, + "row": 0, + "size": 2, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-5/simple" + }, + { + "column": 10, + "row": 0, + "state": 1565, + "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": 864, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-5/in-link" }, { "column": 18, "row": 0, - "state": 2459, + "state": 1565, + "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": 759, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-5/at-start" + }, + { + "column": 19, + "row": 0, + "state": 1565, + "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": 864, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-5/at-start-1" + }, + { + "column": 20, + "row": 0, + "state": 1565, + "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": 864, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-5/at-start-2" + }, + { + "column": 21, + "row": 0, + "state": 1565, + "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": 748, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-5/at-start-3" + }, + { + "column": 21, + "row": 0, + "state": 1565, "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-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", "captures": [ { - "column": 17, - "lrState": 2459, + "column": 3, + "lrState": 748, "row": 0, "size": 1, - "sym": "{", - "label": "attribute-start" + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "The attribute specifier starts here.", - "label": "attribute-start", + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-5/at-start-4" + }, + { + "column": 21, + "row": 0, + "state": 1565, + "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": 748, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-5/at-start-5" + }, + { + "column": 21, + "row": 0, + "state": 1565, + "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": 748, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-5/at-start-6" + }, + { + "column": 19, + "row": 0, + "state": 1565, + "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": 816, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-5/at-start-7" + }, + { + "column": 19, + "row": 0, + "state": 1565, + "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": 808, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark", + "label": "emphasis-start", "noteType": "simple" } ] }, - "name": "002" + "name": "Q-2-5/at-start-8" }, { "column": 20, "row": 0, - "state": 2630, - "sym": "pandoc_str", + "state": 1565, + "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-5", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", "captures": [ { - "column": 10, - "lrState": 2630, + "column": 2, + "lrState": 800, "row": 0, - "size": 9, - "sym": "key_value_specifier", - "label": "key-value" + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "This key-value pair cannot appear before the class specifier.", - "noteType": "simple", - "label": "key-value" + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" } ] }, - "name": "003" + "name": "Q-2-5/at-start-9" }, { - "column": 17, + "column": 19, "row": 0, - "state": 1621, + "state": 1565, "sym": "_close_block", "errorInfo": { "code": "Q-2-5", - "title": "Unclosed Emphasis", + "title": "Unclosed Underscore Emphasis", "message": "I reached the end of the block before finding a closing '_' for the emphasis.", "captures": [ { - "column": 10, - "lrState": 755, + "column": 1, + "lrState": 784, "row": 0, - "size": 2, + "size": 1, "sym": "emphasis_delimiter", "label": "emphasis-start" } ], "notes": [ { - "message": "This is the opening delimiter for the emphasis", + "message": "This is the opening '_' mark", "label": "emphasis-start", - "noteType": "simple", - "trimLeadingSpace": true + "noteType": "simple" } ] }, - "name": "005" + "name": "Q-2-5/at-start-10" }, { - "column": 44, + "column": 19, "row": 0, - "state": 2025, + "state": 1565, "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.", + "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": 662, + "column": 1, + "lrState": 792, "row": 0, "size": 1, - "sym": "single_quote", - "label": "quote-start" + "sym": "emphasis_delimiter", + "label": "emphasis-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 + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" } ] }, - "name": "006" + "name": "Q-2-5/at-start-11" }, { - "column": 10, + "column": 19, "row": 0, - "state": 1621, + "state": 1565, "sym": "_close_block", "errorInfo": { "code": "Q-2-5", - "title": "Unclosed emphasis", - "message": "I reached the end of the block before finding a closing _ for the emphasis.", + "title": "Unclosed Underscore Emphasis", + "message": "I reached the end of the block before finding a closing '_' for the emphasis.", "captures": [ { "column": 1, - "lrState": 864, + "lrState": 848, "row": 0, "size": 1, "sym": "emphasis_delimiter", - "label": "emph-start" + "label": "emphasis-start" } ], "notes": [ { - "message": "(Emphasis start) If you meant an underscore, escape it with a backslash.", - "label": "emph-start", - "noteType": "simple", - "trimLeadingSpace": true + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" } ] }, - "name": "007" + "name": "Q-2-5/at-start-12" }, { - "column": 5, + "column": 20, "row": 0, - "state": 3402, - "sym": "_whitespace", + "state": 1565, + "sym": "_close_block", "errorInfo": { - "code": "Q-2-8", - "title": "Unsupported Code Block Syntax", - "message": "Quarto Markdown requires executable code block options in YAML.", + "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": 5, - "lrState": 2631, + "column": 2, + "lrState": 832, "row": 0, - "size": 5, - "sym": "key_value_key", - "label": "invalid-attr" + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" } ], "notes": [ { - "message": "use a YAML block syntax in a comment with `|`.", - "label": "invalid-attr", - "noteType": "simple", - "trimLeadingSpace": true + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" } ] }, - "name": "008" + "name": "Q-2-5/at-start-13" }, { - "column": 6, + "column": 20, + "row": 0, + "state": 1565, + "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": 824, + "row": 0, + "size": 1, + "sym": "emphasis_delimiter", + "label": "emphasis-start" + } + ], + "notes": [ + { + "message": "This is the opening '_' mark", + "label": "emphasis-start", + "noteType": "simple" + } + ] + }, + "name": "Q-2-5/at-start-14" + }, + { + "column": 44, "row": 0, - "state": 2025, + "state": 1787, "sym": "_close_block", "errorInfo": { "code": "Q-2-7", @@ -217,8 +15322,8 @@ "message": "I reached the end of the block before finding a closing \"'\" for the quote.", "captures": [ { - "column": 4, - "lrState": 667, + "column": 0, + "lrState": 683, "row": 0, "size": 1, "sym": "single_quote", @@ -229,25 +15334,26 @@ { "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true } ] }, - "name": "009" + "name": "Q-2-7/simple" }, { - "column": 2, + "column": 6, "row": 0, - "state": 662, - "sym": "_whitespace", + "state": 1787, + "sym": "_close_block", "errorInfo": { - "code": "Q-2-10", - "title": "Closed Quote Without Matching Open Quote", - "message": "A space is causing a quote mark to be interpreted as a quotation close.", + "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": 662, + "column": 4, + "lrState": 666, "row": 0, "size": 1, "sym": "single_quote", @@ -258,10 +15364,41 @@ { "message": "This is the opening quote. If you need an apostrophe, escape it with a backslash.", "label": "quote-start", - "noteType": "simple" + "noteType": "simple", + "trimLeadingSpace": true + } + ] + }, + "name": "Q-2-7/in-link" + }, + { + "column": 5, + "row": 0, + "state": 3897, + "sym": "_whitespace", + "errorInfo": { + "code": "Q-2-8", + "title": "Unsupported Code Block Syntax", + "message": "Quarto Markdown requires executable code block options in YAML.", + "captures": [ + { + "column": 5, + "lrState": 2597, + "row": 0, + "size": 5, + "sym": "key_value_key", + "label": "invalid-attr" + } + ], + "notes": [ + { + "message": "use a YAML block syntax in a comment with `|`.", + "label": "invalid-attr", + "noteType": "simple", + "trimLeadingSpace": true } ] }, - "name": "010" + "name": "Q-2-8/simple" } ] diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-1-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-1-simple.qmd new file mode 100644 index 0000000..9e7751d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-1-simple.qmd @@ -0,0 +1 @@ +an [unclosed span diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-1.qmd new file mode 100644 index 0000000..deb7244 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-1.qmd @@ -0,0 +1 @@ +**a' b.** diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-10.qmd new file mode 100644 index 0000000..d66083f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-10.qmd @@ -0,0 +1 @@ +[--a' b.] diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-11.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-11.qmd new file mode 100644 index 0000000..b199a4b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-11.qmd @@ -0,0 +1 @@ +[>>a' b.] diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-12.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-12.qmd new file mode 100644 index 0000000..510fba7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-12.qmd @@ -0,0 +1 @@ +[==a' b.] diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-13.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-13.qmd new file mode 100644 index 0000000..239db3e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-13.qmd @@ -0,0 +1 @@ +foo^[a' b.] diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-14.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-14.qmd new file mode 100644 index 0000000..5d7a5b7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-14.qmd @@ -0,0 +1 @@ +_a' b._ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-15.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-15.qmd new file mode 100644 index 0000000..63b0aa0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-15.qmd @@ -0,0 +1 @@ +__a' b.__ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-16.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-16.qmd new file mode 100644 index 0000000..7fde4f6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-16.qmd @@ -0,0 +1 @@ +## a' b. diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-2.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-2.qmd new file mode 100644 index 0000000..50b1e7d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-2.qmd @@ -0,0 +1 @@ +*a' b.* diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-3.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-3.qmd new file mode 100644 index 0000000..d0a51bc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-3.qmd @@ -0,0 +1 @@ +[a' b.](url) diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-4.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-4.qmd new file mode 100644 index 0000000..c011d4f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-4.qmd @@ -0,0 +1 @@ +^a' b.^ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-5.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-5.qmd new file mode 100644 index 0000000..79b2488 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-5.qmd @@ -0,0 +1 @@ +~a' b.~ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-6.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-6.qmd new file mode 100644 index 0000000..ef429ed --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-6.qmd @@ -0,0 +1 @@ +~~a' b.~~ diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-7.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-7.qmd new file mode 100644 index 0000000..30d5ef2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-7.qmd @@ -0,0 +1 @@ +![a' b.](url) diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-8.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-8.qmd new file mode 100644 index 0000000..a6b24d0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-8.qmd @@ -0,0 +1 @@ +"a' b." diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-9.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-9.qmd new file mode 100644 index 0000000..cc33b08 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple-9.qmd @@ -0,0 +1 @@ +[++a' b.] diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple.qmd new file mode 100644 index 0000000..261b354 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-10-simple.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-simple-1.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-1.qmd new file mode 100644 index 0000000..9d68933 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-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-11-simple-10.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-10.qmd new file mode 100644 index 0000000..c02a96c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-10.qmd @@ -0,0 +1 @@ +"a ~~a~~ \ 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 new file mode 100644 index 0000000..76deb55 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-100.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..c246be1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-101.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..af2ddc3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-102.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..d1b5ae7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-103.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..dcc5bb4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-104.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..f19b0e2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-105.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..6625960 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-106.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..05686d7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-107.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..15693b4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-108.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-11-simple-109.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-109.qmd new file mode 100644 index 0000000..58c331b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-109.qmd @@ -0,0 +1 @@ +[--" \ 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 new file mode 100644 index 0000000..c41b179 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-11.qmd @@ -0,0 +1 @@ +"a `a` \ 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 new file mode 100644 index 0000000..c90a07f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-110.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..ebf9623 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-111.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..0ee18f8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-112.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..53e5aa9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-113.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..9430c04 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-114.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..2d47fac --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-115.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..2c45b68 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-116.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..0b60ab6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-117.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..b5423ee --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-118.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..25f64a9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-119.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..589106b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-12.qmd @@ -0,0 +1 @@ +"a 'a' \ 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 new file mode 100644 index 0000000..8a53f33 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-120.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..cbcc851 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-121.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..0248af8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-122.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..5c0e877 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-123.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..509a929 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-124.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..ac5af9f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-125.qmd @@ -0,0 +1 @@ +[--"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 new file mode 100644 index 0000000..4728dad --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-126.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-11-simple-127.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-127.qmd new file mode 100644 index 0000000..e4c7a87 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-127.qmd @@ -0,0 +1 @@ +[!!" \ 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 new file mode 100644 index 0000000..f4c6fb3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-128.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..d8c9286 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-129.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..b093119 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-13.qmd @@ -0,0 +1 @@ +"a "a" \ 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 new file mode 100644 index 0000000..a18a6a5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-130.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..3cd7129 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-131.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..998ba4c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-132.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..e97051b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-133.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..60f05d5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-134.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..55e3a15 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-135.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..0b4fc38 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-136.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..7c9bca7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-137.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..b5499ff --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-138.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..92a8c8a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-139.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..5e50454 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-14.qmd @@ -0,0 +1 @@ +"a ^a^ \ 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 new file mode 100644 index 0000000..7acc3d5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-140.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..7a408ca --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-141.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..facceb6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-142.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..398e20b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-143.qmd @@ -0,0 +1 @@ +[!!"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 new file mode 100644 index 0000000..e3e5f81 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-144.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-11-simple-145.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-145.qmd new file mode 100644 index 0000000..f0a56cf --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-145.qmd @@ -0,0 +1 @@ +[>>" \ 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 new file mode 100644 index 0000000..f908d80 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-146.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..434e85d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-147.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..2862525 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-148.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..7779ff5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-149.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..849dc23 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-15.qmd @@ -0,0 +1 @@ +"a [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 new file mode 100644 index 0000000..b46614a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-150.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..8d2bb33 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-151.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..237f2d9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-152.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..bb2cd00 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-153.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..d23ed6e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-154.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..afd9728 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-155.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..0eddffb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-156.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..fdef658 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-157.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..15d9022 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-158.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..f565a01 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-159.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..4e21557 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-16.qmd @@ -0,0 +1 @@ +"a ![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 new file mode 100644 index 0000000..59a6347 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-160.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..0614987 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-161.qmd @@ -0,0 +1 @@ +[>>"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 new file mode 100644 index 0000000..abe68f1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-162.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-11-simple-163.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-163.qmd new file mode 100644 index 0000000..68a90da --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-163.qmd @@ -0,0 +1 @@ +^" \ 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 new file mode 100644 index 0000000..f2f49ad --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-164.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..2a48fee --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-165.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..a95fa9b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-166.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..3ef000f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-167.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..f2f73ff --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-168.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..9bd11f0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-169.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..d4d3ead --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-17.qmd @@ -0,0 +1 @@ +"a ^[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 new file mode 100644 index 0000000..bef19ee --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-170.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..3acc39b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-171.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..b25511d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-172.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..2475469 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-173.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..e5ca930 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-174.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..bd6d82c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-175.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..8a2f2b6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-176.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..c152d9e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-177.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..ff79fa1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-178.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..8e7752d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-179.qmd @@ -0,0 +1 @@ +^"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 new file mode 100644 index 0000000..8896676 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-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-11-simple-180.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-180.qmd new file mode 100644 index 0000000..6c26265 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-180.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-11-simple-181.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-181.qmd new file mode 100644 index 0000000..33b0a2e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-181.qmd @@ -0,0 +1 @@ +~" \ 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 new file mode 100644 index 0000000..c54b040 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-182.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..63c6939 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-183.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..65b195d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-184.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..80ccaab --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-185.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..d7c01e7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-186.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..5f9b10b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-187.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..620d639 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-188.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..b4d762a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-189.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..4b3ced8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-19.qmd @@ -0,0 +1 @@ +[" \ 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 new file mode 100644 index 0000000..bdafd67 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-190.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..cb8a534 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-191.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..cb57690 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-192.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..01f254c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-193.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..b7116eb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-194.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..fb26484 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-195.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..3cb9ea4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-196.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..626410f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-197.qmd @@ -0,0 +1 @@ +~"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 new file mode 100644 index 0000000..9e3497d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-198.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-11-simple-199.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-199.qmd new file mode 100644 index 0000000..8d7881d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-199.qmd @@ -0,0 +1 @@ +~~" \ 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 new file mode 100644 index 0000000..98e904a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-2.qmd @@ -0,0 +1 @@ +"a a \ 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 new file mode 100644 index 0000000..f5f8af9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-20.qmd @@ -0,0 +1 @@ +["a 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 new file mode 100644 index 0000000..2f2fdde --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-200.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..c7399b5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-201.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..355ff15 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-202.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..a891d53 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-203.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..de7419f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-204.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..c0a9376 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-205.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..f42e120 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-206.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..831b746 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-207.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..3682186 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-208.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..35df24e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-209.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..6b454df --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-21.qmd @@ -0,0 +1 @@ +["a _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 new file mode 100644 index 0000000..0149082 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-210.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..fd689f5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-211.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..a260c38 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-212.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..17060f8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-213.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..81219e3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-214.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..775e088 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-215.qmd @@ -0,0 +1 @@ +~~"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 new file mode 100644 index 0000000..08aec4a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-216.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-11-simple-217.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-217.qmd new file mode 100644 index 0000000..61110e4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-217.qmd @@ -0,0 +1 @@ +'" \ 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 new file mode 100644 index 0000000..4dc5800 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-218.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..6a089af --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-219.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..6542d87 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-22.qmd @@ -0,0 +1 @@ +["a __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 new file mode 100644 index 0000000..5646bcf --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-220.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..8df766c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-221.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..f30e824 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-222.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..21ab117 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-223.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..4f04f5c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-224.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..bbeea9f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-225.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..eb744f6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-226.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..66c756d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-227.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..1302273 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-228.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..cfa206c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-229.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..f390cb9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-23.qmd @@ -0,0 +1 @@ +["a *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 new file mode 100644 index 0000000..11d11bf --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-230.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..ef0980d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-231.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..36cb6ff --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-232.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..0eda099 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-233.qmd @@ -0,0 +1 @@ +'"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 new file mode 100644 index 0000000..76f1a2f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-234.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-11-simple-235.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-235.qmd new file mode 100644 index 0000000..7142c70 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-235.qmd @@ -0,0 +1 @@ +*" \ 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 new file mode 100644 index 0000000..88d7256 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-236.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..1856574 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-237.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..486e1e0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-238.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..90350b9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-239.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..44c8d1d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-24.qmd @@ -0,0 +1 @@ +["a **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 new file mode 100644 index 0000000..e186765 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-240.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..c350185 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-241.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..1acc2f0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-242.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..0a5627d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-243.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..78a7e09 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-244.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..3fd6722 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-245.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..613cdf3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-246.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..90ce7b0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-247.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..30da570 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-248.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..2e9184e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-249.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..7e5f0ad --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-25.qmd @@ -0,0 +1 @@ +["a $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 new file mode 100644 index 0000000..165c403 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-250.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..0c8b0dc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-251.qmd @@ -0,0 +1 @@ +*"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 new file mode 100644 index 0000000..1844a74 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-252.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-11-simple-253.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-253.qmd new file mode 100644 index 0000000..82a616d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-253.qmd @@ -0,0 +1 @@ +**" \ 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 new file mode 100644 index 0000000..3a5807d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-254.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..b0ca3de --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-255.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..d4577a6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-256.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..0779b85 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-257.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..2360ce6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-258.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..d02d86d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-259.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..ab0a42d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-26.qmd @@ -0,0 +1 @@ +["a $$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 new file mode 100644 index 0000000..0235801 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-260.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..b796119 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-261.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..21f1d8d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-262.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..9c09ac0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-263.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..43f861c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-264.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..6a7bafc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-265.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..17979ab --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-266.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..6424b0a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-267.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..fefd579 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-268.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..dca57ab --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-269.qmd @@ -0,0 +1 @@ +**"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 new file mode 100644 index 0000000..6e9e48c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-27.qmd @@ -0,0 +1 @@ +["a ~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 new file mode 100644 index 0000000..536ba81 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-270.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-11-simple-271.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-271.qmd new file mode 100644 index 0000000..fd41b19 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-271.qmd @@ -0,0 +1 @@ +^[" \ 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 new file mode 100644 index 0000000..7dff520 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-272.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..99c29ec --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-273.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..b80e1f7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-274.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..6773cd8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-275.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..2055a0f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-276.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..cdac6ee --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-277.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..8b72b8a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-278.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..a7f1c5a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-279.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..3860053 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-28.qmd @@ -0,0 +1 @@ +["a ~~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 new file mode 100644 index 0000000..3713316 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-280.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..cee1b77 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-281.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..bfe14f5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-282.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..1edc90b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-283.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..456f167 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-284.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..634924d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-285.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..c46cd55 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-286.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..b2a14dd --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-287.qmd @@ -0,0 +1 @@ +^["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 new file mode 100644 index 0000000..770a5f6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-288.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-11-simple-29.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-29.qmd new file mode 100644 index 0000000..05d91c1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-29.qmd @@ -0,0 +1 @@ +["a `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 new file mode 100644 index 0000000..67e16cf --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-3.qmd @@ -0,0 +1 @@ +"a _a_ \ 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 new file mode 100644 index 0000000..ab88d44 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-30.qmd @@ -0,0 +1 @@ +["a '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 new file mode 100644 index 0000000..d8e5687 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-31.qmd @@ -0,0 +1 @@ +["a "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 new file mode 100644 index 0000000..8841be9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-32.qmd @@ -0,0 +1 @@ +["a ^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 new file mode 100644 index 0000000..1acce81 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-33.qmd @@ -0,0 +1 @@ +["a [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 new file mode 100644 index 0000000..40a443e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-34.qmd @@ -0,0 +1 @@ +["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 new file mode 100644 index 0000000..29e8877 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-35.qmd @@ -0,0 +1 @@ +["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 new file mode 100644 index 0000000..c7bd5cc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-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-11-simple-37.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-37.qmd new file mode 100644 index 0000000..0539573 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-37.qmd @@ -0,0 +1 @@ +_" \ 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 new file mode 100644 index 0000000..c703513 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-38.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..8907d2c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-39.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..8367b94 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-4.qmd @@ -0,0 +1 @@ +"a __a__ \ 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 new file mode 100644 index 0000000..e5968d4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-40.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..3cfcde7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-41.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..6d7c2fe --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-42.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..6bcda53 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-43.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..c5d25cc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-44.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..fc8b206 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-45.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..59bb236 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-46.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..b7e5445 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-47.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..db3d5dd --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-48.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..f5e9986 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-49.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..1708e6f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-5.qmd @@ -0,0 +1 @@ +"a *a* \ 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 new file mode 100644 index 0000000..3952ea1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-50.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..88da628 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-51.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..efd26f4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-52.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..5edb0e2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-53.qmd @@ -0,0 +1 @@ +_"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 new file mode 100644 index 0000000..dc93360 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-54.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-11-simple-55.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-55.qmd new file mode 100644 index 0000000..7919c60 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-55.qmd @@ -0,0 +1 @@ +__" \ 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 new file mode 100644 index 0000000..14acce3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-56.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..a64ad10 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-57.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..4f40396 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-58.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..fbf942d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-59.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..d89726d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-6.qmd @@ -0,0 +1 @@ +"a **a** \ 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 new file mode 100644 index 0000000..93a6b03 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-60.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..8ba4d90 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-61.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..67204ec --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-62.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..fc2ad99 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-63.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..e8234df --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-64.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..4ebedd5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-65.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..79f0fc5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-66.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..93ab4eb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-67.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..7e03b14 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-68.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..fd1d6b4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-69.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..31a6384 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-7.qmd @@ -0,0 +1 @@ +"a $a$ \ 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 new file mode 100644 index 0000000..15dd4c3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-70.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..4c1c8ba --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-71.qmd @@ -0,0 +1 @@ +__"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 new file mode 100644 index 0000000..2ec5f5f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-72.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-11-simple-73.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-73.qmd new file mode 100644 index 0000000..e3e671f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-73.qmd @@ -0,0 +1 @@ +![" \ 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 new file mode 100644 index 0000000..0c6e675 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-74.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..e3c9a05 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-75.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..a01b25d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-76.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..06d71a9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-77.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..b9b6523 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-78.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..5f450cd --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-79.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..8577d2b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-8.qmd @@ -0,0 +1 @@ +"a $$a$$ \ 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 new file mode 100644 index 0000000..e3743d7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-80.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..56325c4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-81.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..dee1720 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-82.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..4e7bd1b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-83.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..0c21606 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-84.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..fdb12dc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-85.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..6fe6ae3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-86.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..f29465d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-87.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..6f5b8a9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-88.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..fe4215b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-89.qmd @@ -0,0 +1 @@ +!["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 new file mode 100644 index 0000000..b1c8d21 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-9.qmd @@ -0,0 +1 @@ +"a ~a~ \ 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 new file mode 100644 index 0000000..7e68ef0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-90.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-11-simple-91.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-91.qmd new file mode 100644 index 0000000..1b5380a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-91.qmd @@ -0,0 +1 @@ +[++" \ 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 new file mode 100644 index 0000000..9aca4d1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-92.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..f74c7a1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-93.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..d6d19e6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-94.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..03fb32c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-95.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..2079944 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-96.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..ec7089f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-97.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..ebee4b9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-98.qmd @@ -0,0 +1 @@ +[++"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 new file mode 100644 index 0000000..8671d8f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple-99.qmd @@ -0,0 +1 @@ +[++"a ~a~ \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple.qmd new file mode 100644 index 0000000..9d68933 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-11-simple.qmd @@ -0,0 +1 @@ +" \ 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 new file mode 100644 index 0000000..03b8e07 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-1.qmd @@ -0,0 +1 @@ +[*Unclosed emphasis 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 new file mode 100644 index 0000000..9722290 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-10.qmd @@ -0,0 +1 @@ +~*Unclosed emphasis 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 new file mode 100644 index 0000000..417afea --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-11.qmd @@ -0,0 +1 @@ +~~*Unclosed emphasis 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 new file mode 100644 index 0000000..75fc9da --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-12.qmd @@ -0,0 +1 @@ +'*Unclosed emphasis 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 new file mode 100644 index 0000000..bbc6b78 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-13.qmd @@ -0,0 +1 @@ +"*Unclosed emphasis 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 new file mode 100644 index 0000000..87bb149 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-14.qmd @@ -0,0 +1 @@ +^[*Unclosed emphasis 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 new file mode 100644 index 0000000..ef6769c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-2.qmd @@ -0,0 +1 @@ +_*Unclosed emphasis 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 new file mode 100644 index 0000000..43a8e32 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-3.qmd @@ -0,0 +1 @@ +__*Unclosed emphasis 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 new file mode 100644 index 0000000..ed30fef --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-4.qmd @@ -0,0 +1 @@ +![*Unclosed emphasis 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 new file mode 100644 index 0000000..286c998 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-5.qmd @@ -0,0 +1 @@ +[++*Unclosed emphasis 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 new file mode 100644 index 0000000..97e1328 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-6.qmd @@ -0,0 +1 @@ +[--*Unclosed emphasis 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 new file mode 100644 index 0000000..ce06f74 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-7.qmd @@ -0,0 +1 @@ +[!!*Unclosed emphasis 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 new file mode 100644 index 0000000..676d1ca --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-8.qmd @@ -0,0 +1 @@ +[>>*Unclosed emphasis 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 new file mode 100644 index 0000000..a2dc1f0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple-9.qmd @@ -0,0 +1 @@ +^*Unclosed emphasis 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 new file mode 100644 index 0000000..a176c2f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-12-simple.qmd @@ -0,0 +1 @@ +*Unclosed emphasis 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 new file mode 100644 index 0000000..5799f3f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-1.qmd @@ -0,0 +1 @@ +[**Unclosed strong emphasis 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 new file mode 100644 index 0000000..da556eb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-10.qmd @@ -0,0 +1 @@ +~**Unclosed strong emphasis 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 new file mode 100644 index 0000000..002b03c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-11.qmd @@ -0,0 +1 @@ +~~**Unclosed strong emphasis 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 new file mode 100644 index 0000000..7335df5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-12.qmd @@ -0,0 +1 @@ +'**Unclosed strong emphasis 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 new file mode 100644 index 0000000..58ac615 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-13.qmd @@ -0,0 +1 @@ +"**Unclosed strong emphasis 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 new file mode 100644 index 0000000..dec51c5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-14.qmd @@ -0,0 +1 @@ +^[**Unclosed strong emphasis 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 new file mode 100644 index 0000000..198141f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-2.qmd @@ -0,0 +1 @@ +_**Unclosed strong emphasis 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 new file mode 100644 index 0000000..5e23958 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-3.qmd @@ -0,0 +1 @@ +__**Unclosed strong emphasis 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 new file mode 100644 index 0000000..03a2474 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-4.qmd @@ -0,0 +1 @@ +![**Unclosed strong emphasis 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 new file mode 100644 index 0000000..3f9dfbe --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-5.qmd @@ -0,0 +1 @@ +[++**Unclosed strong emphasis 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 new file mode 100644 index 0000000..7c5ae61 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-6.qmd @@ -0,0 +1 @@ +[--**Unclosed strong emphasis 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 new file mode 100644 index 0000000..f5970a3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-7.qmd @@ -0,0 +1 @@ +[!!**Unclosed strong emphasis 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 new file mode 100644 index 0000000..9ee3387 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-8.qmd @@ -0,0 +1 @@ +[>>**Unclosed strong emphasis 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 new file mode 100644 index 0000000..57abbbb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple-9.qmd @@ -0,0 +1 @@ +^**Unclosed strong emphasis 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 new file mode 100644 index 0000000..9027986 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-13-simple.qmd @@ -0,0 +1 @@ +**Unclosed strong emphasis 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 new file mode 100644 index 0000000..ac7d09c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-1.qmd @@ -0,0 +1 @@ +[__Unclosed strong emphasis 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 new file mode 100644 index 0000000..2f69cac --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-10.qmd @@ -0,0 +1 @@ +'__Unclosed strong emphasis 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 new file mode 100644 index 0000000..51c36ec --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-11.qmd @@ -0,0 +1 @@ +"__Unclosed strong emphasis 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 new file mode 100644 index 0000000..5642e38 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-12.qmd @@ -0,0 +1 @@ +*__Unclosed strong emphasis 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 new file mode 100644 index 0000000..56f1006 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-13.qmd @@ -0,0 +1 @@ +**__Unclosed strong emphasis 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 new file mode 100644 index 0000000..6eb76a3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-14.qmd @@ -0,0 +1 @@ +^[__Unclosed strong emphasis 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 new file mode 100644 index 0000000..a792206 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-2.qmd @@ -0,0 +1 @@ +![__Unclosed strong emphasis 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 new file mode 100644 index 0000000..11d60dd --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-3.qmd @@ -0,0 +1 @@ +[++__Unclosed strong emphasis 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 new file mode 100644 index 0000000..8fe90fb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-4.qmd @@ -0,0 +1 @@ +[--__Unclosed strong emphasis 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 new file mode 100644 index 0000000..6262f79 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-5.qmd @@ -0,0 +1 @@ +[!!__Unclosed strong emphasis 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 new file mode 100644 index 0000000..6d76386 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-6.qmd @@ -0,0 +1 @@ +[>>__Unclosed strong emphasis 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 new file mode 100644 index 0000000..0b15ad1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-7.qmd @@ -0,0 +1 @@ +^__Unclosed strong emphasis 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 new file mode 100644 index 0000000..24ac024 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-8.qmd @@ -0,0 +1 @@ +~__Unclosed strong emphasis 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 new file mode 100644 index 0000000..6dab899 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple-9.qmd @@ -0,0 +1 @@ +~~__Unclosed strong emphasis 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 new file mode 100644 index 0000000..feceb03 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-15-simple.qmd @@ -0,0 +1 @@ +__Unclosed strong emphasis 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 new file mode 100644 index 0000000..0742a1d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-1.qmd @@ -0,0 +1 @@ +[^Unclosed superscript 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 new file mode 100644 index 0000000..d3dd9bc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-10.qmd @@ -0,0 +1 @@ +~^Unclosed superscript 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 new file mode 100644 index 0000000..c7b28db --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-11.qmd @@ -0,0 +1 @@ +~~^Unclosed superscript 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 new file mode 100644 index 0000000..082a0e3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-12.qmd @@ -0,0 +1 @@ +'^Unclosed superscript 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 new file mode 100644 index 0000000..23050c4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-13.qmd @@ -0,0 +1 @@ +"^Unclosed superscript 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 new file mode 100644 index 0000000..868b7f2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-14.qmd @@ -0,0 +1 @@ +*^Unclosed superscript 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 new file mode 100644 index 0000000..62d194b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-15.qmd @@ -0,0 +1 @@ +**^Unclosed superscript 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 new file mode 100644 index 0000000..f2b2a7b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-16.qmd @@ -0,0 +1 @@ +^[^Unclosed superscript 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 new file mode 100644 index 0000000..e159db2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-2.qmd @@ -0,0 +1 @@ +_^Unclosed superscript 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 new file mode 100644 index 0000000..939d3e4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-3.qmd @@ -0,0 +1 @@ +__^Unclosed superscript 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 new file mode 100644 index 0000000..691ccc8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-4.qmd @@ -0,0 +1 @@ +![^Unclosed superscript 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 new file mode 100644 index 0000000..95cca30 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-5.qmd @@ -0,0 +1 @@ +[++^Unclosed superscript 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 new file mode 100644 index 0000000..b18f062 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-6.qmd @@ -0,0 +1 @@ +[--^Unclosed superscript 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 new file mode 100644 index 0000000..e8c308b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-7.qmd @@ -0,0 +1 @@ +[!!^Unclosed superscript 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 new file mode 100644 index 0000000..5a361f3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-8.qmd @@ -0,0 +1 @@ +[>>^Unclosed superscript 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 new file mode 100644 index 0000000..ad3201e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple-9.qmd @@ -0,0 +1 @@ +^^Unclosed superscript 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 new file mode 100644 index 0000000..a22e62e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-16-simple.qmd @@ -0,0 +1 @@ +^Unclosed superscript 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 new file mode 100644 index 0000000..9c4e723 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-1.qmd @@ -0,0 +1 @@ +[~Unclosed subscript 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 new file mode 100644 index 0000000..bf42406 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-10.qmd @@ -0,0 +1 @@ +'~Unclosed subscript 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 new file mode 100644 index 0000000..ee9050b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-11.qmd @@ -0,0 +1 @@ +"~Unclosed subscript 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 new file mode 100644 index 0000000..0065926 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-12.qmd @@ -0,0 +1 @@ +*~Unclosed subscript 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 new file mode 100644 index 0000000..500f4e1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-13.qmd @@ -0,0 +1 @@ +**~Unclosed subscript 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 new file mode 100644 index 0000000..413f208 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-14.qmd @@ -0,0 +1 @@ +^[~Unclosed subscript 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 new file mode 100644 index 0000000..a83eb20 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-2.qmd @@ -0,0 +1 @@ +_~Unclosed subscript 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 new file mode 100644 index 0000000..af5d364 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-3.qmd @@ -0,0 +1 @@ +__~Unclosed subscript 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 new file mode 100644 index 0000000..64354ad --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-4.qmd @@ -0,0 +1 @@ +![~Unclosed subscript 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 new file mode 100644 index 0000000..388d303 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-5.qmd @@ -0,0 +1 @@ +[++~Unclosed subscript 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 new file mode 100644 index 0000000..472d23d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-6.qmd @@ -0,0 +1 @@ +[--~Unclosed subscript 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 new file mode 100644 index 0000000..45b1c05 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-7.qmd @@ -0,0 +1 @@ +[!!~Unclosed subscript 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 new file mode 100644 index 0000000..99df2b3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-8.qmd @@ -0,0 +1 @@ +[>>~Unclosed subscript 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 new file mode 100644 index 0000000..e4e40cb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple-9.qmd @@ -0,0 +1 @@ +^~Unclosed subscript 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 new file mode 100644 index 0000000..401b670 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-17-simple.qmd @@ -0,0 +1 @@ +~Unclosed subscript 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 new file mode 100644 index 0000000..49c96cb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-1.qmd @@ -0,0 +1 @@ +[~~Unclosed strikeout 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 new file mode 100644 index 0000000..6c3374b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-10.qmd @@ -0,0 +1 @@ +'~~Unclosed strikeout 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 new file mode 100644 index 0000000..3eb8d27 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-11.qmd @@ -0,0 +1 @@ +"~~Unclosed strikeout 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 new file mode 100644 index 0000000..57fd0d7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-12.qmd @@ -0,0 +1 @@ +*~~Unclosed strikeout 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 new file mode 100644 index 0000000..9766633 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-13.qmd @@ -0,0 +1 @@ +**~~Unclosed strikeout 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 new file mode 100644 index 0000000..fb1509e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-14.qmd @@ -0,0 +1 @@ +^[~~Unclosed strikeout 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 new file mode 100644 index 0000000..b59f912 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-2.qmd @@ -0,0 +1 @@ +_~~Unclosed strikeout 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 new file mode 100644 index 0000000..d0648ab --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-3.qmd @@ -0,0 +1 @@ +__~~Unclosed strikeout 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 new file mode 100644 index 0000000..031b6ec --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-4.qmd @@ -0,0 +1 @@ +![~~Unclosed strikeout 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 new file mode 100644 index 0000000..5ef3a99 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-5.qmd @@ -0,0 +1 @@ +[++~~Unclosed strikeout 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 new file mode 100644 index 0000000..7363b36 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-6.qmd @@ -0,0 +1 @@ +[--~~Unclosed strikeout 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 new file mode 100644 index 0000000..ee3d706 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-7.qmd @@ -0,0 +1 @@ +[!!~~Unclosed strikeout 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 new file mode 100644 index 0000000..5da62f0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-8.qmd @@ -0,0 +1 @@ +[>>~~Unclosed strikeout 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 new file mode 100644 index 0000000..537e4f8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple-9.qmd @@ -0,0 +1 @@ +^~~Unclosed strikeout 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 new file mode 100644 index 0000000..b058e2c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-18-simple.qmd @@ -0,0 +1 @@ +~~Unclosed strikeout 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 new file mode 100644 index 0000000..046adc0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-1.qmd @@ -0,0 +1 @@ +[[++Unclosed editorial insert 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 new file mode 100644 index 0000000..6d1dd56 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-10.qmd @@ -0,0 +1 @@ +'[++Unclosed editorial insert 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 new file mode 100644 index 0000000..dfbdb47 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-11.qmd @@ -0,0 +1 @@ +"[++Unclosed editorial insert 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 new file mode 100644 index 0000000..c4b0dda --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-12.qmd @@ -0,0 +1 @@ +*[++Unclosed editorial insert 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 new file mode 100644 index 0000000..e53c611 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-13.qmd @@ -0,0 +1 @@ +**[++Unclosed editorial insert 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 new file mode 100644 index 0000000..527b08b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-14.qmd @@ -0,0 +1 @@ +^[[++Unclosed editorial insert 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 new file mode 100644 index 0000000..69c9902 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-2.qmd @@ -0,0 +1 @@ +_[++Unclosed editorial insert 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 new file mode 100644 index 0000000..dc76c76 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-3.qmd @@ -0,0 +1 @@ +__[++Unclosed editorial insert 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 new file mode 100644 index 0000000..dd44b35 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-4.qmd @@ -0,0 +1 @@ +![[++Unclosed editorial insert 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 new file mode 100644 index 0000000..d684bec --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-5.qmd @@ -0,0 +1 @@ +[--[++Unclosed editorial insert 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 new file mode 100644 index 0000000..e799db3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-6.qmd @@ -0,0 +1 @@ +[!![++Unclosed editorial insert 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 new file mode 100644 index 0000000..ef6c25a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-7.qmd @@ -0,0 +1 @@ +[>>[++Unclosed editorial insert 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 new file mode 100644 index 0000000..3d058ec --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-8.qmd @@ -0,0 +1 @@ +~[++Unclosed editorial insert 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 new file mode 100644 index 0000000..a645bac --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple-9.qmd @@ -0,0 +1 @@ +~~[++Unclosed editorial insert 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 new file mode 100644 index 0000000..8aaf616 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-19-simple.qmd @@ -0,0 +1 @@ +[++Unclosed editorial insert diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-2-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-2-simple.qmd new file mode 100644 index 0000000..6fa32b8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-2-simple.qmd @@ -0,0 +1 @@ +A bad [attribute]{[ \ 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 new file mode 100644 index 0000000..66e1888 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-1.qmd @@ -0,0 +1 @@ +[[--Unclosed editorial delete 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 new file mode 100644 index 0000000..564e0ac --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-10.qmd @@ -0,0 +1 @@ +'[--Unclosed editorial delete 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 new file mode 100644 index 0000000..656a650 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-11.qmd @@ -0,0 +1 @@ +"[--Unclosed editorial delete 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 new file mode 100644 index 0000000..aa45db7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-12.qmd @@ -0,0 +1 @@ +*[--Unclosed editorial delete 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 new file mode 100644 index 0000000..b2070e9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-13.qmd @@ -0,0 +1 @@ +**[--Unclosed editorial delete 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 new file mode 100644 index 0000000..b029335 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-14.qmd @@ -0,0 +1 @@ +^[[--Unclosed editorial delete 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 new file mode 100644 index 0000000..31de742 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-2.qmd @@ -0,0 +1 @@ +_[--Unclosed editorial delete 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 new file mode 100644 index 0000000..0e0fbaf --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-3.qmd @@ -0,0 +1 @@ +__[--Unclosed editorial delete 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 new file mode 100644 index 0000000..9c205c7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-4.qmd @@ -0,0 +1 @@ +![[--Unclosed editorial delete 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 new file mode 100644 index 0000000..1ac237b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-5.qmd @@ -0,0 +1 @@ +[++[--Unclosed editorial delete 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 new file mode 100644 index 0000000..a46c609 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-6.qmd @@ -0,0 +1 @@ +[!![--Unclosed editorial delete 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 new file mode 100644 index 0000000..af5d524 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-7.qmd @@ -0,0 +1 @@ +[>>[--Unclosed editorial delete 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 new file mode 100644 index 0000000..e9b1718 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-8.qmd @@ -0,0 +1 @@ +~[--Unclosed editorial delete 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 new file mode 100644 index 0000000..b3e0337 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple-9.qmd @@ -0,0 +1 @@ +~~[--Unclosed editorial delete 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 new file mode 100644 index 0000000..9cc81d4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-20-simple.qmd @@ -0,0 +1 @@ +[--Unclosed editorial delete 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 new file mode 100644 index 0000000..731b21c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-1.qmd @@ -0,0 +1 @@ +[[>>Unclosed editorial comment 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 new file mode 100644 index 0000000..c59d66b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-10.qmd @@ -0,0 +1 @@ +'[>>Unclosed editorial comment 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 new file mode 100644 index 0000000..3913c74 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-11.qmd @@ -0,0 +1 @@ +"[>>Unclosed editorial comment 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 new file mode 100644 index 0000000..34b8ea8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-12.qmd @@ -0,0 +1 @@ +*[>>Unclosed editorial comment 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 new file mode 100644 index 0000000..4825354 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-13.qmd @@ -0,0 +1 @@ +**[>>Unclosed editorial comment 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 new file mode 100644 index 0000000..2de25e9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-14.qmd @@ -0,0 +1 @@ +^[[>>Unclosed editorial comment 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 new file mode 100644 index 0000000..2a92386 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-2.qmd @@ -0,0 +1 @@ +_[>>Unclosed editorial comment 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 new file mode 100644 index 0000000..afe830a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-3.qmd @@ -0,0 +1 @@ +__[>>Unclosed editorial comment 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 new file mode 100644 index 0000000..38df7ab --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-4.qmd @@ -0,0 +1 @@ +![[>>Unclosed editorial comment 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 new file mode 100644 index 0000000..07ba7d1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-5.qmd @@ -0,0 +1 @@ +[++[>>Unclosed editorial comment 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 new file mode 100644 index 0000000..3a0081e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-6.qmd @@ -0,0 +1 @@ +[--[>>Unclosed editorial comment 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 new file mode 100644 index 0000000..bd222de --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-7.qmd @@ -0,0 +1 @@ +[!![>>Unclosed editorial comment 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 new file mode 100644 index 0000000..207bb89 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-8.qmd @@ -0,0 +1 @@ +~[>>Unclosed editorial comment 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 new file mode 100644 index 0000000..b4e9389 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple-9.qmd @@ -0,0 +1 @@ +~~[>>Unclosed editorial comment 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 new file mode 100644 index 0000000..ac6f077 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-21-simple.qmd @@ -0,0 +1 @@ +[>>Unclosed editorial comment 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 new file mode 100644 index 0000000..8d503ac --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-1.qmd @@ -0,0 +1 @@ +[[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..4a1a75d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-10.qmd @@ -0,0 +1 @@ +'[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..b9ad2ef --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-11.qmd @@ -0,0 +1 @@ +"[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..d2a519a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-12.qmd @@ -0,0 +1 @@ +*[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..923ca4b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-13.qmd @@ -0,0 +1 @@ +**[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..4a18625 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-14.qmd @@ -0,0 +1 @@ +^[[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..a361f70 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-2.qmd @@ -0,0 +1 @@ +_[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..62b93f1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-3.qmd @@ -0,0 +1 @@ +__[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..16b25a7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-4.qmd @@ -0,0 +1 @@ +![[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..a97c8c7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-5.qmd @@ -0,0 +1 @@ +[++[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..ea0dd33 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-6.qmd @@ -0,0 +1 @@ +[--[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..1c38b31 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-7.qmd @@ -0,0 +1 @@ +[>>[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..e20a2a0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-8.qmd @@ -0,0 +1 @@ +~[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..fd854af --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple-9.qmd @@ -0,0 +1 @@ +~~[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..3eb9929 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-22-simple.qmd @@ -0,0 +1 @@ +[!!Unclosed editorial highlight 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 new file mode 100644 index 0000000..9595ef2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-1.qmd @@ -0,0 +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 new file mode 100644 index 0000000..587e5a2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-10.qmd @@ -0,0 +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 new file mode 100644 index 0000000..a7a4628 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-11.qmd @@ -0,0 +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 new file mode 100644 index 0000000..b0d13bd --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-12.qmd @@ -0,0 +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 new file mode 100644 index 0000000..8b7f171 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-13.qmd @@ -0,0 +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 new file mode 100644 index 0000000..74f467f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-14.qmd @@ -0,0 +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 new file mode 100644 index 0000000..073aa48 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-15.qmd @@ -0,0 +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 new file mode 100644 index 0000000..55b375e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-16.qmd @@ -0,0 +1 @@ +^[$Unclosed inline math 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 new file mode 100644 index 0000000..0f6dce9 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-2.qmd @@ -0,0 +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 new file mode 100644 index 0000000..ea02a4e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-3.qmd @@ -0,0 +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 new file mode 100644 index 0000000..64485ce --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-4.qmd @@ -0,0 +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 new file mode 100644 index 0000000..15aed87 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-5.qmd @@ -0,0 +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 new file mode 100644 index 0000000..c914ec4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-6.qmd @@ -0,0 +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 new file mode 100644 index 0000000..64c898e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-7.qmd @@ -0,0 +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 new file mode 100644 index 0000000..985cb51 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-8.qmd @@ -0,0 +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 new file mode 100644 index 0000000..3b82c74 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple-9.qmd @@ -0,0 +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 new file mode 100644 index 0000000..32520dc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-23-simple.qmd @@ -0,0 +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 new file mode 100644 index 0000000..34973ac --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-24-simple.qmd @@ -0,0 +1 @@ +`Unclosed code span 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 new file mode 100644 index 0000000..6dda060 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-1.qmd @@ -0,0 +1 @@ +[![Unclosed image 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 new file mode 100644 index 0000000..aa92020 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-10.qmd @@ -0,0 +1 @@ +~~![Unclosed image 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 new file mode 100644 index 0000000..decf045 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-11.qmd @@ -0,0 +1 @@ +'![Unclosed image 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 new file mode 100644 index 0000000..0757116 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-12.qmd @@ -0,0 +1 @@ +"![Unclosed image 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 new file mode 100644 index 0000000..819a521 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-13.qmd @@ -0,0 +1 @@ +*![Unclosed image 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 new file mode 100644 index 0000000..81acbff --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-14.qmd @@ -0,0 +1 @@ +**![Unclosed image 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 new file mode 100644 index 0000000..1efacb6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-15.qmd @@ -0,0 +1 @@ +^[![Unclosed image 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 new file mode 100644 index 0000000..fa113e5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-2.qmd @@ -0,0 +1 @@ +_![Unclosed image 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 new file mode 100644 index 0000000..cb557b4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-3.qmd @@ -0,0 +1 @@ +__![Unclosed image 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 new file mode 100644 index 0000000..2716c08 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-4.qmd @@ -0,0 +1 @@ +[++![Unclosed image 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 new file mode 100644 index 0000000..1ca3f0c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-5.qmd @@ -0,0 +1 @@ +[--![Unclosed image 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 new file mode 100644 index 0000000..234aac8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-6.qmd @@ -0,0 +1 @@ +[!!![Unclosed image 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 new file mode 100644 index 0000000..ac0a73d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-7.qmd @@ -0,0 +1 @@ +[>>![Unclosed image 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 new file mode 100644 index 0000000..aca7ec3 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-8.qmd @@ -0,0 +1 @@ +^![Unclosed image 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 new file mode 100644 index 0000000..9b80506 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple-9.qmd @@ -0,0 +1 @@ +~![Unclosed image 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 new file mode 100644 index 0000000..3fbdacd --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-25-simple.qmd @@ -0,0 +1 @@ +![Unclosed image 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 new file mode 100644 index 0000000..082a056 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-1.qmd @@ -0,0 +1 @@ +[^[Unclosed inline footnote 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 new file mode 100644 index 0000000..dffebf6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-10.qmd @@ -0,0 +1 @@ +~^[Unclosed inline footnote 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 new file mode 100644 index 0000000..2ff6097 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-11.qmd @@ -0,0 +1 @@ +~~^[Unclosed inline footnote 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 new file mode 100644 index 0000000..c4d99c2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-12.qmd @@ -0,0 +1 @@ +'^[Unclosed inline footnote 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 new file mode 100644 index 0000000..d43bcdc --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-13.qmd @@ -0,0 +1 @@ +"^[Unclosed inline footnote 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 new file mode 100644 index 0000000..d8ec965 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-14.qmd @@ -0,0 +1 @@ +*^[Unclosed inline footnote 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 new file mode 100644 index 0000000..7899363 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-15.qmd @@ -0,0 +1 @@ +**^[Unclosed inline footnote 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 new file mode 100644 index 0000000..1996f81 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-2.qmd @@ -0,0 +1 @@ +_^[Unclosed inline footnote 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 new file mode 100644 index 0000000..81c0c33 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-3.qmd @@ -0,0 +1 @@ +__^[Unclosed inline footnote 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 new file mode 100644 index 0000000..90f10cb --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-4.qmd @@ -0,0 +1 @@ +![^[Unclosed inline footnote 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 new file mode 100644 index 0000000..7dd3c33 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-5.qmd @@ -0,0 +1 @@ +[++^[Unclosed inline footnote 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 new file mode 100644 index 0000000..6797f4e --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-6.qmd @@ -0,0 +1 @@ +[--^[Unclosed inline footnote 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 new file mode 100644 index 0000000..b71f502 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-7.qmd @@ -0,0 +1 @@ +[!!^[Unclosed inline footnote 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 new file mode 100644 index 0000000..d660d17 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-8.qmd @@ -0,0 +1 @@ +[>>^[Unclosed inline footnote 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 new file mode 100644 index 0000000..c4f55de --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple-9.qmd @@ -0,0 +1 @@ +^^[Unclosed inline footnote 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 new file mode 100644 index 0000000..024fd3d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-26-simple.qmd @@ -0,0 +1 @@ +^[Unclosed inline footnote diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-3-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-3-simple.qmd new file mode 100644 index 0000000..93800c1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-3-simple.qmd @@ -0,0 +1 @@ +[foo]{#id key=value .class} 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 new file mode 100644 index 0000000..b6cd1c2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-1.qmd @@ -0,0 +1 @@ +[_Unclosed emphasis 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 new file mode 100644 index 0000000..68de05b --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-10.qmd @@ -0,0 +1 @@ +'_Unclosed emphasis 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 new file mode 100644 index 0000000..55bfafe --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-11.qmd @@ -0,0 +1 @@ +"_Unclosed emphasis 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 new file mode 100644 index 0000000..109dcc8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-12.qmd @@ -0,0 +1 @@ +*_Unclosed emphasis 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 new file mode 100644 index 0000000..4f568c0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-13.qmd @@ -0,0 +1 @@ +**_Unclosed emphasis 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 new file mode 100644 index 0000000..e48a49c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-14.qmd @@ -0,0 +1 @@ +^[_Unclosed emphasis 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 new file mode 100644 index 0000000..8605fb4 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-2.qmd @@ -0,0 +1 @@ +![_Unclosed emphasis 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 new file mode 100644 index 0000000..4480ff2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-3.qmd @@ -0,0 +1 @@ +[++_Unclosed emphasis 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 new file mode 100644 index 0000000..360ef63 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-4.qmd @@ -0,0 +1 @@ +[--_Unclosed emphasis 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 new file mode 100644 index 0000000..2e4b319 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-5.qmd @@ -0,0 +1 @@ +[!!_Unclosed emphasis 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 new file mode 100644 index 0000000..6897e9d --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-6.qmd @@ -0,0 +1 @@ +[>>_Unclosed emphasis 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 new file mode 100644 index 0000000..8846d12 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-7.qmd @@ -0,0 +1 @@ +^_Unclosed emphasis 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 new file mode 100644 index 0000000..2c55315 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-8.qmd @@ -0,0 +1 @@ +~_Unclosed emphasis 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 new file mode 100644 index 0000000..ef28353 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start-9.qmd @@ -0,0 +1 @@ +~~_Unclosed emphasis 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 new file mode 100644 index 0000000..b141dea --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-at-start.qmd @@ -0,0 +1 @@ +_Unclosed emphasis diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-in-link.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-in-link.qmd new file mode 100644 index 0000000..348525c --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-in-link.qmd @@ -0,0 +1 @@ +[_document](a) \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-simple.qmd new file mode 100644 index 0000000..68442e6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-5-simple.qmd @@ -0,0 +1 @@ +Unfinished _emph. 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 new file mode 100644 index 0000000..a1f4f9a --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-in-link.qmd @@ -0,0 +1 @@ +[`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.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple.qmd new file mode 100644 index 0000000..011fc9f --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-7-simple.qmd @@ -0,0 +1 @@ +'Tis the season to make apostrophe mistakes. \ No newline at end of file diff --git a/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-8-simple.qmd b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-8-simple.qmd new file mode 100644 index 0000000..e7ded20 --- /dev/null +++ b/crates/quarto-markdown-pandoc/resources/error-corpus/case-files/Q-2-8-simple.qmd @@ -0,0 +1,3 @@ +```{r eval=FALSE} +cat("hello") +``` diff --git a/crates/quarto-markdown-pandoc/scripts/build_error_table.ts b/crates/quarto-markdown-pandoc/scripts/build_error_table.ts index 37fc52f..cb55552 100755 --- a/crates/quarto-markdown-pandoc/scripts/build_error_table.ts +++ b/crates/quarto-markdown-pandoc/scripts/build_error_table.ts @@ -30,47 +30,244 @@ const leftJoin = (lst1: T1[], lst2: T2[], match: (i1: T1, i2: T2) => boo return result; }; -const files = Array.from(fs.globSync("resources/error-corpus/*.qmd")).toSorted((a, b) => a.localeCompare(b)); -for (const file of files) { - console.log(`Processing ${file}`); - const base = basename(file, ".qmd"); - const errorInfo = JSON.parse( - Deno.readTextFileSync(`resources/error-corpus/${base}.json`), - ); - const parseResult = new Deno.Command("cargo", { - args: ["run", "--", "--_internal-report-error-state", "-i", file], - }); - const output = await parseResult.output(); - const outputStdout = new TextDecoder().decode(output.stdout); - const parseResultJson = JSON.parse(outputStdout); - const { errorStates, tokens } = parseResultJson; - - const looseMatching = (errorInfo.captures.some((e: any) => e.size === undefined)); - - const matches = looseMatching ? - leftJoin( - tokens, - errorInfo.captures, - (tok: any, cap: any) => tok.row === cap.row && tok.column === cap.column && (cap.size !== undefined ? tok.size === cap.size : true) - ) - : leftKeyJoin( - tokens, - errorInfo.captures, - (e: any) => e.size ? `${e.row}:${e.column}:${e.size}` : `${e.row}:${e.column}`, - ); - if (errorStates.length < 1) { - throw new Error(`Expected at least one error state for ${file}`); +console.log("Building quarto-markdown-pandoc..."); +await (new Deno.Command("cargo", { + args: ["build"], +})).output(); + +// Create case-files directory for generated test files +const caseFilesDir = "resources/error-corpus/case-files"; +try { + await Deno.remove(caseFilesDir, { recursive: true }); +} catch { + // Directory doesn't exist, that's fine +} +await Deno.mkdir(caseFilesDir, { recursive: true }); +console.log(`Using case files directory: ${caseFilesDir}`); + +try { + // Process both old format (.qmd files) and new format (.json files) + const qmdFiles = Array.from(fs.globSync("resources/error-corpus/*.qmd")).toSorted((a, b) => a.localeCompare(b)); + const jsonFiles = Array.from(fs.globSync("resources/error-corpus/*.json")) + .filter(f => !f.endsWith("_autogen-table.json")) + .toSorted((a, b) => a.localeCompare(b)); + + // Process old format .qmd files + for (const file of qmdFiles) { + const base = basename(file, ".qmd"); + const jsonPath = `resources/error-corpus/${base}.json`; + + // Skip numbered files if we have a consolidated Q-*.json version + if (/^\d+$/.test(base)) { + const errorInfo = JSON.parse(Deno.readTextFileSync(jsonPath)); + const consolidatedFile = `resources/error-corpus/${errorInfo.code}.json`; + if (jsonFiles.includes(consolidatedFile)) { + // Skip - will be processed from consolidated file + continue; + } + } + + console.log(`Processing ${file}`); + + // Process old format .qmd file + if (jsonFiles.some(jf => basename(jf, ".json") === base)) { + const errorInfo = JSON.parse(Deno.readTextFileSync(jsonPath)); + const parseResult = new Deno.Command("../../target/debug/quarto-markdown-pandoc", { + args: ["--_internal-report-error-state", "-i", file], + }); + const output = await parseResult.output(); + const outputStdout = new TextDecoder().decode(output.stdout); + const parseResultJson = JSON.parse(outputStdout); + const { errorStates, tokens } = parseResultJson; + + const looseMatching = (errorInfo.captures.some((e: any) => e.size === undefined)); + + const matches = looseMatching ? + leftJoin( + tokens, + errorInfo.captures, + (tok: any, cap: any) => tok.row === cap.row && tok.column === cap.column && (cap.size !== undefined ? tok.size === cap.size : true) + ) + : leftKeyJoin( + tokens, + errorInfo.captures, + (e: any) => e.size ? `${e.row}:${e.column}:${e.size}` : `${e.row}:${e.column}`, + ); + if (errorStates.length < 1) { + throw new Error(`Expected at least one error state for ${file}`); + } + errorInfo.captures = errorInfo.captures.map((capture: any) => { + const match = matches.find(([, b]) => b === capture); + assert(match); + return {...match[0], ...match[1]}; + }); + result.push({ + ...errorStates[0], + errorInfo, + name: `${base}`, + }); + } + } + + // Process new format .json files with cases + for (const jsonFile of jsonFiles) { + const base = basename(jsonFile, ".json"); + + // Skip if there's a .qmd file (old format) + if (qmdFiles.some(qf => basename(qf, ".qmd") === base)) { + continue; + } + + console.log(`Processing ${jsonFile} (new format)`); + const errorSpec = JSON.parse(Deno.readTextFileSync(jsonFile)); + + // Check if this is new format (has cases array) + if (!errorSpec.cases || !Array.isArray(errorSpec.cases)) { + console.log(` Skipping ${jsonFile} - not new format (no cases array)`); + continue; + } + + const { code, title, message, notes, cases } = errorSpec; + + // Process each case + for (const testCase of cases) { + const { name, content, captures, prefixes, suffixes, prefixesAndSuffixes } = testCase; + console.log(` Processing case: ${name}`); + + // Track (lr_state, sym) pairs for this case to detect duplicates + const lrStateSyms = new Map(); // key: "lrState:sym", value: variantName + + // Helper function to process a single variant (base or prefixed) + const processVariant = async ( + variantName: string, + variantContent: string, + variantCaptures: any[] + ) => { + // Write content to case-files directory + const caseFile = `${caseFilesDir}/${code}-${variantName}.qmd`; + await Deno.writeTextFile(caseFile, variantContent); + + // Run parser with error state reporting + const parseResult = new Deno.Command("../../target/debug/quarto-markdown-pandoc", { + args: ["--_internal-report-error-state", "-i", caseFile], + }); + const output = await parseResult.output(); + const outputStdout = new TextDecoder().decode(output.stdout); + const parseResultJson = JSON.parse(outputStdout); + const { errorStates, tokens } = parseResultJson; + + if (errorStates.length < 1) { + throw new Error(`Expected at least one error state for ${code}/${variantName}`); + } + + // Match and augment captures + const looseMatching = variantCaptures.some((e: any) => e.size === undefined); + const matches = looseMatching ? + leftJoin( + tokens, + variantCaptures, + (tok: any, cap: any) => tok.row === cap.row && tok.column === cap.column && + (cap.size !== undefined ? tok.size === cap.size : true) + ) + : leftKeyJoin( + tokens, + variantCaptures, + (e: any) => e.size ? `${e.row}:${e.column}:${e.size}` : `${e.row}:${e.column}` + ); + + const augmentedCaptures = variantCaptures.map((capture: any) => { + const match = matches.find(([, b]) => b === capture); + assert(match, `Could not find match for capture in ${code}/${variantName}`); + return { ...match[0], ...match[1] }; + }); + + // Check for duplicate (lr_state, sym) pairs within this case's captures + for (const cap of augmentedCaptures) { + const key = `${cap.lrState}:${cap.sym}`; + const existing = lrStateSyms.get(key); + if (existing) { + console.warn( + `⚠️ Warning: Duplicate (lr_state, sym) pair in ${code}/${name}:\n` + + ` (${cap.lrState}, "${cap.sym}") appears in both:\n` + + ` - ${existing}\n` + + ` - ${variantName}\n` + + ` This prefix does not currently generate a distinct parser state.\n` + + ` Future grammar changes may make this prefix useful.` + ); + } + lrStateSyms.set(key, variantName); + } + + // Create autogen table entry + result.push({ + ...errorStates[0], + errorInfo: { + code, + title, + message, + captures: augmentedCaptures, + notes, + }, + name: `${code}/${variantName}`, + }); + }; + + // Always process base case + await processVariant(name, content, captures); + + // Process variants based on what's specified + if (prefixesAndSuffixes && Array.isArray(prefixesAndSuffixes) && prefixesAndSuffixes.length > 0) { + // prefixesAndSuffixes: loop once over pairs + for (let i = 0; i < prefixesAndSuffixes.length; i++) { + const [prefix, suffix] = prefixesAndSuffixes[i]; + const variantName = `${name}-${i + 1}`; + const variantContent = prefix + content + suffix; + const variantCaptures = captures.map((cap: any) => ({ + ...cap, + column: cap.column + prefix.length, + })); + + console.log(` Processing prefix+suffix variant: ${variantName} (prefix: "${prefix}", suffix: "${suffix}")`); + await processVariant(variantName, variantContent, variantCaptures); + } + } else if (prefixes && suffixes && + Array.isArray(prefixes) && prefixes.length > 0 && + Array.isArray(suffixes) && suffixes.length > 0) { + // prefixes + suffixes: nested loop over all combinations + let variantIndex = 0; + for (const prefix of prefixes) { + for (const suffix of suffixes) { + variantIndex++; + const variantName = `${name}-${variantIndex}`; + const variantContent = prefix + content + suffix; + const variantCaptures = captures.map((cap: any) => ({ + ...cap, + column: cap.column + prefix.length, + })); + + console.log(` Processing prefix×suffix variant: ${variantName} (prefix: "${prefix}", suffix: "${suffix}")`); + await processVariant(variantName, variantContent, variantCaptures); + } + } + } else if (prefixes && Array.isArray(prefixes) && prefixes.length > 0) { + // prefixes only: simple loop + for (let i = 0; i < prefixes.length; i++) { + const prefix = prefixes[i]; + const variantName = `${name}-${i + 1}`; + const variantContent = prefix + content; + const variantCaptures = captures.map((cap: any) => ({ + ...cap, + column: cap.column + prefix.length, + })); + + console.log(` Processing prefix variant: ${variantName} (prefix: "${prefix}")`); + await processVariant(variantName, variantContent, variantCaptures); + } + } + } } - errorInfo.captures = errorInfo.captures.map((capture: any) => { - const match = matches.find(([, b]) => b === capture); - assert(match); - return {...match[0], ...match[1]}; - }); - result.push({ - ...errorStates[0], - errorInfo, - name: `${base}`, - }); +} finally { + // Nothing to clean up - case files are kept for tests } Deno.writeTextFileSync("resources/error-corpus/_autogen-table.json", JSON.stringify(result, null, 2) + "\n"); @@ -78,3 +275,8 @@ Deno.writeTextFileSync("resources/error-corpus/_autogen-table.json", JSON.string const now = new Date(); // Touch the source file so that cargo build rebuilds it. Deno.utimeSync("src/readers/qmd_error_message_table.rs", now, now); + +console.log("Rebuilding quarto-markdown-pandoc with new table..."); +await (new Deno.Command("cargo", { + args: ["build"], +})).output(); diff --git a/crates/quarto-markdown-pandoc/scripts/migrate_error_corpus.ts b/crates/quarto-markdown-pandoc/scripts/migrate_error_corpus.ts new file mode 100755 index 0000000..61441a5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/scripts/migrate_error_corpus.ts @@ -0,0 +1,151 @@ +#!/usr/bin/env deno run --allow-read --allow-write --allow-env + +import * as fs from "node:fs"; +import { basename } from "node:path"; + +interface Capture { + label: string; + row: number; + column: number; + size?: number; +} + +interface Note { + message: string; + label?: string; + noteType: string; + labelBegin?: string; + labelEnd?: string; + trimLeadingSpace?: boolean; +} + +interface OldErrorInfo { + code: string; + title: string; + message: string; + captures: Capture[]; + notes: Note[]; +} + +interface Case { + name: string; + description: string; + content: string; + captures: Capture[]; +} + +interface NewErrorSpec { + code: string; + title: string; + message: string; + notes: Note[]; + cases: Case[]; +} + +// Group old .qmd/.json files by error code +const errorCodeMap = new Map>(); + +const qmdFiles = Array.from(fs.globSync("resources/error-corpus/*.qmd")) + .filter(f => { + const base = basename(f, ".qmd"); + // Only migrate numbered files (old format) + return /^\d+$/.test(base); + }) + .toSorted((a, b) => a.localeCompare(b)); + +console.log(`Found ${qmdFiles.length} old-format .qmd files to migrate`); + +for (const qmdFile of qmdFiles) { + const base = basename(qmdFile, ".qmd"); + const jsonFile = `resources/error-corpus/${base}.json`; + + try { + const content = Deno.readTextFileSync(qmdFile); + const errorInfo = JSON.parse(Deno.readTextFileSync(jsonFile)) as OldErrorInfo; + + if (!errorCodeMap.has(errorInfo.code)) { + errorCodeMap.set(errorInfo.code, []); + } + + errorCodeMap.get(errorInfo.code)!.push({ base, content, errorInfo }); + } catch (e) { + console.error(`Error processing ${qmdFile}:`, e); + } +} + +// Generate case names based on content analysis +function generateCaseName(content: string, index: number): string { + const trimmed = content.trim(); + + // Try to identify context from content + if (trimmed.match(/^\*\*.*\*\*$/)) return "in-strong-emphasis"; + if (trimmed.match(/^\*.*\*$/)) return "in-emphasis"; + if (trimmed.match(/^__.*__$/)) return "in-underscore-strong"; + if (trimmed.match(/^_.*_$/)) return "in-underscore-emphasis"; + if (trimmed.match(/^~~.*~~$/)) return "in-strikethrough"; + if (trimmed.match(/^\^.*\^$/)) return "in-superscript"; + if (trimmed.match(/^~.*~$/)) return "in-subscript"; + if (trimmed.match(/^\[.*\]\(.*\)$/)) return "in-link"; + if (trimmed.match(/^!\[.*\]\(.*\)$/)) return "in-image"; + if (trimmed.match(/^\[\+\+.*\]$/)) return "in-editorial-insert"; + if (trimmed.match(/^\[--.*\]$/)) return "in-editorial-delete"; + if (trimmed.match(/^\[>>.*\]$/)) return "in-editorial-comment"; + if (trimmed.match(/^\[==.*\]$/)) return "in-editorial-highlight"; + if (trimmed.match(/^\[!!.*\]$/)) return "in-editorial-highlight-alt"; + if (trimmed.match(/\^\[.*\]$/)) return "in-inline-footnote"; + if (trimmed.match(/^#+\s/)) return "in-heading"; + if (trimmed.match(/^".*"$/)) return "in-double-quote"; + if (trimmed.match(/^'.*'$/)) return "in-single-quote"; + + // Fallback to simple names + if (index === 0) return "simple"; + return `variant-${index + 1}`; +} + +function generateDescription(content: string, name: string): string { + if (name === "simple") return "Simple case"; + if (name.startsWith("in-")) { + const context = name.replace("in-", "").replace(/-/g, " "); + return `Inside ${context}`; + } + return `Test case ${name}`; +} + +// Create consolidated .json files for each error code +for (const [code, cases] of errorCodeMap.entries()) { + console.log(`\nMigrating ${code} (${cases.length} cases)`); + + // Use the first case's error info as the template + const template = cases[0].errorInfo; + + const newSpec: NewErrorSpec = { + code, + title: template.title, + message: template.message, + notes: template.notes, + cases: cases.map((c, index) => { + const name = generateCaseName(c.content, index); + const description = generateDescription(c.content, name); + + console.log(` ${c.base} → ${name} (${description})`); + + return { + name, + description, + content: c.content, + captures: c.errorInfo.captures, + }; + }), + }; + + const outputFile = `resources/error-corpus/${code}.json`; + Deno.writeTextFileSync(outputFile, JSON.stringify(newSpec, null, 2) + "\n"); + console.log(` Wrote ${outputFile}`); +} + +console.log(`\n✓ Migration complete. Created ${errorCodeMap.size} consolidated .json files.`); +console.log(`\nNext steps:`); +console.log(`1. Review the generated ${Array.from(errorCodeMap.keys()).join(", ")} files`); +console.log(`2. Run ./scripts/build_error_table.ts to rebuild the error table`); +console.log(`3. Run cargo test to verify everything works`); +console.log(`4. Move old numbered files to resources/error-corpus/old/ if tests pass`); 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 9ff98ec..02e8faf 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 delimiter for the emphasis", + "content": "This is the opening '_' mark", "type": "markdown" }, "kind": "info", @@ -16,7 +16,7 @@ expression: json_string "Original": { "end_offset": 12, "file_id": 0, - "start_offset": 11 + "start_offset": 10 } } } @@ -33,6 +33,6 @@ expression: json_string "content": "I reached the end of the block before finding a closing '_' for the emphasis.", "type": "markdown" }, - "title": "Unclosed Emphasis" + "title": "Unclosed Underscore Emphasis" } ] 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 97069e4..eb7c8be 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": "(Emphasis start) If you meant an underscore, escape it with a backslash.", + "content": "This is the opening '_' mark", "type": "markdown" }, "kind": "info", @@ -30,9 +30,9 @@ expression: json_string } }, "problem": { - "content": "I reached the end of the block before finding a closing _ for the emphasis.", + "content": "I reached the end of the block before finding a closing '_' for the emphasis.", "type": "markdown" }, - "title": "Unclosed emphasis" + "title": "Unclosed Underscore Emphasis" } ] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/011.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/011.snap new file mode 100644 index 0000000..cc6551e --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/011.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": 4, + "file_id": 0, + "start_offset": 3 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 5, + "file_id": 0, + "start_offset": 4 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/012.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/012.snap new file mode 100644 index 0000000..1f6fe33 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/012.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": 3, + "file_id": 0, + "start_offset": 2 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 4, + "file_id": 0, + "start_offset": 3 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/013.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/013.snap new file mode 100644 index 0000000..1f6fe33 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/013.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": 3, + "file_id": 0, + "start_offset": 2 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 4, + "file_id": 0, + "start_offset": 3 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/014.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/014.snap new file mode 100644 index 0000000..1f6fe33 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/014.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": 3, + "file_id": 0, + "start_offset": 2 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 4, + "file_id": 0, + "start_offset": 3 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/015.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/015.snap new file mode 100644 index 0000000..1f6fe33 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/015.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": 3, + "file_id": 0, + "start_offset": 2 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 4, + "file_id": 0, + "start_offset": 3 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/016.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/016.snap new file mode 100644 index 0000000..cc6551e --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/016.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": 4, + "file_id": 0, + "start_offset": 3 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 5, + "file_id": 0, + "start_offset": 4 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/017.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/017.snap new file mode 100644 index 0000000..cc6551e --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/017.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": 4, + "file_id": 0, + "start_offset": 3 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 5, + "file_id": 0, + "start_offset": 4 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/018.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/018.snap new file mode 100644 index 0000000..1f6fe33 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/018.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": 3, + "file_id": 0, + "start_offset": 2 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 4, + "file_id": 0, + "start_offset": 3 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/019.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/019.snap new file mode 100644 index 0000000..1be6214 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/019.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": { + "end_offset": 6, + "file_id": 0, + "start_offset": 5 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/020.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/020.snap new file mode 100644 index 0000000..1be6214 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/020.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": { + "end_offset": 6, + "file_id": 0, + "start_offset": 5 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/021.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/021.snap new file mode 100644 index 0000000..1be6214 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/021.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": { + "end_offset": 6, + "file_id": 0, + "start_offset": 5 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/022.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/022.snap new file mode 100644 index 0000000..1be6214 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/022.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": { + "end_offset": 6, + "file_id": 0, + "start_offset": 5 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/023.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/023.snap new file mode 100644 index 0000000..49d852d --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/023.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": 7, + "file_id": 0, + "start_offset": 6 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 8, + "file_id": 0, + "start_offset": 7 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/024.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/024.snap new file mode 100644 index 0000000..1f6fe33 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/024.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": 3, + "file_id": 0, + "start_offset": 2 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 4, + "file_id": 0, + "start_offset": 3 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/025.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/025.snap new file mode 100644 index 0000000..cc6551e --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/025.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": 4, + "file_id": 0, + "start_offset": 3 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 5, + "file_id": 0, + "start_offset": 4 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/026.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/026.snap new file mode 100644 index 0000000..1be6214 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/026.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-10", + "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": { + "end_offset": 6, + "file_id": 0, + "start_offset": 5 + } + }, + "problem": { + "content": "A space is causing a quote mark to be interpreted as a quotation close.", + "type": "markdown" + }, + "title": "Closed Quote Without Matching Open Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/027.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/027.snap new file mode 100644 index 0000000..f835d9b --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/027.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-11", + "details": [ + { + "content": { + "content": "This is the opening quote mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 1, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 23, + "file_id": 0, + "start_offset": 22 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing '\"' for the quote.", + "type": "markdown" + }, + "title": "Unclosed Double Quote" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/028.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/028.snap new file mode 100644 index 0000000..53af967 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/028.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-12", + "details": [ + { + "content": { + "content": "This is the opening '*' mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 1, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 19, + "file_id": 0, + "start_offset": 18 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing '*' for the emphasis.", + "type": "markdown" + }, + "title": "Unclosed Star Emphasis" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/029.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/029.snap new file mode 100644 index 0000000..521344c --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/029.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-13", + "details": [ + { + "content": { + "content": "This is the opening '**' mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 2, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 27, + "file_id": 0, + "start_offset": 26 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing '**' for the strong emphasis.", + "type": "markdown" + }, + "title": "Unclosed Strong Star Emphasis" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/030.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/030.snap new file mode 100644 index 0000000..5eb26ad --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/030.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-5", + "details": [ + { + "content": { + "content": "This is the opening delimiter for the emphasis", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 1, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 19, + "file_id": 0, + "start_offset": 18 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing '_' for the emphasis.", + "type": "markdown" + }, + "title": "Unclosed Emphasis" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/031.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/031.snap new file mode 100644 index 0000000..9c35fed --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/031.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-15", + "details": [ + { + "content": { + "content": "This is the opening '__' mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 2, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 27, + "file_id": 0, + "start_offset": 26 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing '__' for the strong emphasis.", + "type": "markdown" + }, + "title": "Unclosed Strong Underscore Emphasis" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/032.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/032.snap new file mode 100644 index 0000000..eca0ba5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/032.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-16", + "details": [ + { + "content": { + "content": "This is the opening '^' mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 1, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 22, + "file_id": 0, + "start_offset": 21 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing '^' for the superscript.", + "type": "markdown" + }, + "title": "Unclosed Superscript" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/033.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/033.snap new file mode 100644 index 0000000..0c26c9b --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/033.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-17", + "details": [ + { + "content": { + "content": "This is the opening '~' mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 1, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 20, + "file_id": 0, + "start_offset": 19 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing '~' for the subscript.", + "type": "markdown" + }, + "title": "Unclosed Subscript" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/034.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/034.snap new file mode 100644 index 0000000..d5716d8 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/034.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-18", + "details": [ + { + "content": { + "content": "This is the opening '~~' mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 2, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 21, + "file_id": 0, + "start_offset": 20 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing '~~' for the strikeout.", + "type": "markdown" + }, + "title": "Unclosed Strikeout" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/035.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/035.snap new file mode 100644 index 0000000..610fb4e --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/035.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-19", + "details": [ + { + "content": { + "content": "This is the opening '[++' mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 3, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 29, + "file_id": 0, + "start_offset": 28 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing ']' for the editorial insert.", + "type": "markdown" + }, + "title": "Unclosed Editorial Insert" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/036.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/036.snap new file mode 100644 index 0000000..33c954b --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/036.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-20", + "details": [ + { + "content": { + "content": "This is the opening '[--' mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 3, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 29, + "file_id": 0, + "start_offset": 28 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing ']' for the editorial delete.", + "type": "markdown" + }, + "title": "Unclosed Editorial Delete" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/037.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/037.snap new file mode 100644 index 0000000..335112d --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/037.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-21", + "details": [ + { + "content": { + "content": "This is the opening '[>>' mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 3, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 30, + "file_id": 0, + "start_offset": 29 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing ']' for the editorial comment.", + "type": "markdown" + }, + "title": "Unclosed Editorial Comment" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/038.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/038.snap new file mode 100644 index 0000000..fd449fa --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/038.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-22", + "details": [ + { + "content": { + "content": "This is the opening '[!!' mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 3, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 32, + "file_id": 0, + "start_offset": 31 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing ']' for the editorial highlight.", + "type": "markdown" + }, + "title": "Unclosed Editorial Highlight" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/039.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/039.snap new file mode 100644 index 0000000..79e3e54 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/039.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-23", + "details": [ + { + "content": { + "content": "This is the opening '$' mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 1, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 22, + "file_id": 0, + "start_offset": 21 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing '$' for the inline math.", + "type": "markdown" + }, + "title": "Unclosed Inline Math" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/040.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/040.snap new file mode 100644 index 0000000..75c1f42 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/040.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-24", + "details": [ + { + "content": { + "content": "This is the opening '`' mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 1, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 20, + "file_id": 0, + "start_offset": 20 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing '`' for the code span.", + "type": "markdown" + }, + "title": "Unclosed Code Span" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/041.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/041.snap new file mode 100644 index 0000000..dc6e395 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/041.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-25", + "details": [ + { + "content": { + "content": "This is the opening '![' mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 2, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 17, + "file_id": 0, + "start_offset": 16 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing '](url)' for the image.", + "type": "markdown" + }, + "title": "Unclosed Image" + } +] diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/042.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/042.snap new file mode 100644 index 0000000..4f6ee62 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/json/042.snap @@ -0,0 +1,38 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: json_string +--- +[ + { + "code": "Q-2-26", + "details": [ + { + "content": { + "content": "This is the opening '^[' mark", + "type": "markdown" + }, + "kind": "info", + "location": { + "Original": { + "end_offset": 2, + "file_id": 0, + "start_offset": 0 + } + } + } + ], + "kind": "error", + "location": { + "Original": { + "end_offset": 27, + "file_id": 0, + "start_offset": 26 + } + }, + "problem": { + "content": "I reached the end of the block before finding a closing ']' for the inline footnote.", + "type": "markdown" + }, + "title": "Unclosed Inline Footnote" + } +] 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 252eb5b..c71c9b1 100644 --- a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/005.snap +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/005.snap @@ -2,12 +2,12 @@ source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs expression: error_output --- -Error: [Q-2-5] Unclosed Emphasis +Error: [Q-2-5] Unclosed Underscore Emphasis ╭─[resources/error-corpus/005.qmd:1:18] │ - 1 │ Unfinished _emph. -  │ ┬ ┬ -  │ ╰──────── This is the opening delimiter for the emphasis + 1 │ Unfinished _emph. +  │ ─┬ ┬ +  │ ╰──────── 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 3db3ee3..8b9449a 100644 --- a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/007.snap +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/007.snap @@ -2,12 +2,12 @@ source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs expression: error_output --- -Error: [Q-2-5] Unclosed emphasis +Error: [Q-2-5] Unclosed Underscore Emphasis ╭─[resources/error-corpus/007.qmd:1:11] │ 1 │ [_document](a)  │ ┬ ┬ -  │ ╰─────────── (Emphasis start) If you meant an underscore, escape it with a backslash. +  │ ╰─────────── This is the opening '_' mark  │ │ -  │ ╰── I reached the end of the block before finding a closing _ for the emphasis. +  │ ╰── 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/011.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/011.snap new file mode 100644 index 0000000..ecd8dba --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/011.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/011.qmd:1:5] + │ + 1 │ **a' b.** +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/012.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/012.snap new file mode 100644 index 0000000..b28a81b --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/012.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/012.qmd:1:4] + │ + 1 │ *a' b.* +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/013.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/013.snap new file mode 100644 index 0000000..252bb03 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/013.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/013.qmd:1:4] + │ + 1 │ [a' b](url) +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/014.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/014.snap new file mode 100644 index 0000000..8e0c9e6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/014.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/014.qmd:1:4] + │ + 1 │ ^a' b.^ +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/015.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/015.snap new file mode 100644 index 0000000..b847134 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/015.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/015.qmd:1:4] + │ + 1 │ ~a' b.~ +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/016.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/016.snap new file mode 100644 index 0000000..21f05a6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/016.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/016.qmd:1:5] + │ + 1 │ ~~a' b.~~ +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/017.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/017.snap new file mode 100644 index 0000000..f26705b --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/017.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/017.qmd:1:5] + │ + 1 │ ![a' b](url) +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/018.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/018.snap new file mode 100644 index 0000000..f85cc34 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/018.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/018.qmd:1:4] + │ + 1 │ "a' b." +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/019.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/019.snap new file mode 100644 index 0000000..ab00aae --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/019.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/019.qmd:1:6] + │ + 1 │ [++a' b.] +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/020.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/020.snap new file mode 100644 index 0000000..75e6c28 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/020.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/020.qmd:1:6] + │ + 1 │ [--a' b.] +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/021.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/021.snap new file mode 100644 index 0000000..6a23615 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/021.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/021.qmd:1:6] + │ + 1 │ [>>a' b.] +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/022.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/022.snap new file mode 100644 index 0000000..35bc5dd --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/022.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/022.qmd:1:6] + │ + 1 │ [==a' b.] +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/023.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/023.snap new file mode 100644 index 0000000..772dc24 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/023.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/023.qmd:1:8] + │ + 1 │ foo^[a' b.] +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/024.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/024.snap new file mode 100644 index 0000000..20c2143 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/024.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/024.qmd:1:4] + │ + 1 │ _a' b._ +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/025.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/025.snap new file mode 100644 index 0000000..10fe3d2 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/025.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/025.qmd:1:5] + │ + 1 │ __a' b.__ +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/026.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/026.snap new file mode 100644 index 0000000..cd79287 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/026.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-10] Closed Quote Without Matching Open Quote + ╭─[resources/error-corpus/026.qmd:1:6] + │ + 1 │ ## a' b. +  │ ┬┬ +  │ ╰─── This is the opening quote. If you need an apostrophe, escape it with a backslash. +  │ │ +  │ ╰── A space is causing a quote mark to be interpreted as a quotation close. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/027.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/027.snap new file mode 100644 index 0000000..4674127 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/027.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-11] Unclosed Double Quote + ╭─[resources/error-corpus/027.qmd:1:23] + │ + 1 │ "Unclosed quote at end +  │ ┬ ┬ +  │ ╰──────────────────────── This is the opening quote mark +  │ │ +  │ ╰── I reached the end of the block before finding a closing '"' for the quote. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/028.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/028.snap new file mode 100644 index 0000000..69c27ae --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/028.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-12] Unclosed Star Emphasis + ╭─[resources/error-corpus/028.qmd:1:19] + │ + 1 │ *Unclosed emphasis +  │ ┬ ┬ +  │ ╰──────────────────── 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/029.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/029.snap new file mode 100644 index 0000000..3234890 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/029.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-13] Unclosed Strong Star Emphasis + ╭─[resources/error-corpus/029.qmd:1:27] + │ + 1 │ **Unclosed strong emphasis +  │ ─┬ ┬ +  │ ╰─────────────────────────── This is the opening '**' mark +  │ │ +  │ ╰── I reached the end of the block before finding a closing '**' for the strong emphasis. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/030.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/030.snap new file mode 100644 index 0000000..fbf4945 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/030.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-5] Unclosed Emphasis + ╭─[resources/error-corpus/030.qmd:1:19] + │ + 1 │ _Unclosed emphasis +  │ ┬ ┬ +  │ ╰──────────────────── This is the opening delimiter for the emphasis +  │ │ +  │ ╰── 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/031.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/031.snap new file mode 100644 index 0000000..ce657e0 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/031.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-15] Unclosed Strong Underscore Emphasis + ╭─[resources/error-corpus/031.qmd:1:27] + │ + 1 │ __Unclosed strong emphasis +  │ ─┬ ┬ +  │ ╰─────────────────────────── This is the opening '__' mark +  │ │ +  │ ╰── I reached the end of the block before finding a closing '__' for the strong emphasis. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/032.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/032.snap new file mode 100644 index 0000000..b1b6306 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/032.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-16] Unclosed Superscript + ╭─[resources/error-corpus/032.qmd:1:22] + │ + 1 │ ^Unclosed superscript +  │ ┬ ┬ +  │ ╰─────────────────────── This is the opening '^' mark +  │ │ +  │ ╰── I reached the end of the block before finding a closing '^' for the superscript. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/033.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/033.snap new file mode 100644 index 0000000..ce07609 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/033.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-17] Unclosed Subscript + ╭─[resources/error-corpus/033.qmd:1:20] + │ + 1 │ ~Unclosed subscript +  │ ┬ ┬ +  │ ╰───────────────────── This is the opening '~' mark +  │ │ +  │ ╰── I reached the end of the block before finding a closing '~' for the subscript. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/034.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/034.snap new file mode 100644 index 0000000..ca544ed --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/034.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-18] Unclosed Strikeout + ╭─[resources/error-corpus/034.qmd:1:21] + │ + 1 │ ~~Unclosed strikeout +  │ ─┬ ┬ +  │ ╰───────────────────── This is the opening '~~' mark +  │ │ +  │ ╰── I reached the end of the block before finding a closing '~~' for the strikeout. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/035.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/035.snap new file mode 100644 index 0000000..52a6434 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/035.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-19] Unclosed Editorial Insert + ╭─[resources/error-corpus/035.qmd:1:29] + │ + 1 │ [++Unclosed editorial insert +  │ ─┬─ ┬ +  │ ╰───────────────────────────── This is the opening '[++' mark +  │ │ +  │ ╰── I reached the end of the block before finding a closing ']' for the editorial insert. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/036.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/036.snap new file mode 100644 index 0000000..b793573 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/036.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-20] Unclosed Editorial Delete + ╭─[resources/error-corpus/036.qmd:1:29] + │ + 1 │ [--Unclosed editorial delete +  │ ─┬─ ┬ +  │ ╰───────────────────────────── This is the opening '[--' mark +  │ │ +  │ ╰── I reached the end of the block before finding a closing ']' for the editorial delete. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/037.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/037.snap new file mode 100644 index 0000000..de922b5 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/037.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-21] Unclosed Editorial Comment + ╭─[resources/error-corpus/037.qmd:1:30] + │ + 1 │ [>>Unclosed editorial comment +  │ ─┬─ ┬ +  │ ╰────────────────────────────── This is the opening '[>>' mark +  │ │ +  │ ╰── I reached the end of the block before finding a closing ']' for the editorial comment. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/038.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/038.snap new file mode 100644 index 0000000..e7b91a6 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/038.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-22] Unclosed Editorial Highlight + ╭─[resources/error-corpus/038.qmd:1:32] + │ + 1 │ [!!Unclosed editorial highlight +  │ ─┬─ ┬ +  │ ╰──────────────────────────────── This is the opening '[!!' mark +  │ │ +  │ ╰── I reached the end of the block before finding a closing ']' for the editorial highlight. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/039.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/039.snap new file mode 100644 index 0000000..91736bb --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/039.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-23] Unclosed Inline Math + ╭─[resources/error-corpus/039.qmd:1:22] + │ + 1 │ $Unclosed inline math +  │ ┬ ┬ +  │ ╰─────────────────────── This is the opening '$' mark +  │ │ +  │ ╰── I reached the end of the block before finding a closing '$' for the inline math. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/040.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/040.snap new file mode 100644 index 0000000..5f82125 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/040.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-24] Unclosed Code Span + ╭─[resources/error-corpus/040.qmd:1:21] + │ + 1 │ `Unclosed code span +  │ ┬ │ +  │ ╰───────────────────── This is the opening '`' mark +  │ │ +  │ ╰─ I reached the end of the block before finding a closing '`' for the code span. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/041.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/041.snap new file mode 100644 index 0000000..c01fde7 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/041.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-25] Unclosed Image + ╭─[resources/error-corpus/041.qmd:1:17] + │ + 1 │ ![Unclosed image +  │ ─┬ ┬ +  │ ╰───────────────── This is the opening '![' mark +  │ │ +  │ ╰── I reached the end of the block before finding a closing '](url)' for the image. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/042.snap b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/042.snap new file mode 100644 index 0000000..2f340b1 --- /dev/null +++ b/crates/quarto-markdown-pandoc/snapshots/error-corpus/text/042.snap @@ -0,0 +1,13 @@ +--- +source: crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +expression: error_output +--- +Error: [Q-2-26] Unclosed Inline Footnote + ╭─[resources/error-corpus/042.qmd:1:27] + │ + 1 │ ^[Unclosed inline footnote +  │ ─┬ ┬ +  │ ╰─────────────────────────── This is the opening '^[' mark +  │ │ +  │ ╰── I reached the end of the block before finding a closing ']' for the inline footnote. +───╯ diff --git a/crates/quarto-markdown-pandoc/snapshots/json/002.snap b/crates/quarto-markdown-pandoc/snapshots/json/002.snap index 028aaaa..120e8fe 100644 --- a/crates/quarto-markdown-pandoc/snapshots/json/002.snap +++ b/crates/quarto-markdown-pandoc/snapshots/json/002.snap @@ -2,4 +2,4 @@ source: crates/quarto-markdown-pandoc/tests/test.rs expression: output --- -{"astContext":{"files":[{"line_breaks":[3,20,24,25,35,36,40,53,57,58,62],"name":"tests/snapshots/json/002.qmd","total_length":63}],"metaTopLevelKeySources":{"nested":13,"title":11},"sourceInfoPool":[{"d":0,"r":[0,9],"t":0},{"d":0,"r":[0,25],"t":0},{"d":1,"r":[4,20],"t":1},{"d":2,"r":[7,16],"t":1},{"d":0,"r":[0,4],"t":0},{"d":0,"r":[37,58],"t":0},{"d":5,"r":[4,16],"t":1},{"d":6,"r":[8,12],"t":1},{"d":0,"r":[26,63],"t":0},{"d":0,"r":[30,35],"t":0},{"d":1,"r":[4,20],"t":1},{"d":10,"r":[0,5],"t":1},{"d":5,"r":[4,16],"t":1},{"d":12,"r":[0,6],"t":1}]},"blocks":[{"attrS":{"classes":[9],"id":null,"kvs":[]},"c":[["",["hello"],[]],[]],"s":8,"t":"Div"}],"meta":{"nested":{"c":[{"c":"meta","s":4,"t":"Str"}],"s":7,"t":"MetaInlines"},"title":{"c":[{"c":"metadata1","s":0,"t":"Str"}],"s":3,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1]} +{"astContext":{"files":[{"line_breaks":[3,20,24,25,35,36,40,53,57,58,62],"name":"tests/snapshots/json/002.qmd","total_length":63}],"metaTopLevelKeySources":{"nested":15,"title":13},"sourceInfoPool":[{"d":0,"r":[0,25],"t":0},{"d":0,"r":[4,20],"t":1},{"d":1,"r":[7,16],"t":1},{"d":2,"r":[0,9],"t":1},{"d":1,"r":[7,16],"t":1},{"d":0,"r":[37,58],"t":0},{"d":5,"r":[4,16],"t":1},{"d":6,"r":[8,12],"t":1},{"d":7,"r":[0,4],"t":1},{"d":6,"r":[8,12],"t":1},{"d":0,"r":[26,63],"t":0},{"d":0,"r":[30,35],"t":0},{"d":0,"r":[4,20],"t":1},{"d":12,"r":[0,5],"t":1},{"d":5,"r":[4,16],"t":1},{"d":14,"r":[0,6],"t":1}]},"blocks":[{"attrS":{"classes":[11],"id":null,"kvs":[]},"c":[["",["hello"],[]],[]],"s":10,"t":"Div"}],"meta":{"nested":{"c":[{"c":"meta","s":8,"t":"Str"}],"s":9,"t":"MetaInlines"},"title":{"c":[{"c":"metadata1","s":3,"t":"Str"}],"s":4,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1]} diff --git a/crates/quarto-markdown-pandoc/snapshots/json/003.snap b/crates/quarto-markdown-pandoc/snapshots/json/003.snap index 969267d..a028e08 100644 --- a/crates/quarto-markdown-pandoc/snapshots/json/003.snap +++ b/crates/quarto-markdown-pandoc/snapshots/json/003.snap @@ -2,4 +2,4 @@ source: crates/quarto-markdown-pandoc/tests/test.rs expression: output --- -{"astContext":{"files":[{"line_breaks":[3,20,24,25,35,36,40,56,69,73,74,78],"name":"tests/snapshots/json/003.qmd","total_length":79}],"metaTopLevelKeySources":{"title":20},"sourceInfoPool":[{"d":0,"r":[0,9],"t":0},{"d":0,"r":[0,25],"t":0},{"d":1,"r":[4,20],"t":1},{"d":2,"r":[7,16],"t":1},{"d":0,"r":[37,74],"t":0},{"d":4,"r":[4,32],"t":1},{"d":5,"r":[0,6],"t":1},{"d":0,"r":[0,7],"t":0},{"d":4,"r":[4,32],"t":1},{"d":8,"r":[8,15],"t":1},{"d":4,"r":[4,32],"t":1},{"d":10,"r":[16,22],"t":1},{"d":0,"r":[0,4],"t":0},{"d":4,"r":[4,32],"t":1},{"d":13,"r":[24,28],"t":1},{"d":4,"r":[4,32],"t":1},{"d":0,"r":[37,74],"t":0},{"d":0,"r":[26,79],"t":0},{"d":0,"r":[30,35],"t":0},{"d":1,"r":[4,20],"t":1},{"d":19,"r":[0,5],"t":1}]},"blocks":[{"attrS":{"classes":[18],"id":null,"kvs":[]},"c":[["",["hello"],[]],[{"c":{"c":[{"key":"_scope","key_source":6,"value":{"c":[{"c":"lexical","s":7,"t":"Str"}],"s":9,"t":"MetaInlines"}},{"key":"nested","key_source":11,"value":{"c":[{"c":"meta","s":12,"t":"Str"}],"s":14,"t":"MetaInlines"}}],"s":15,"t":"MetaMap"},"s":16,"t":"BlockMetadata"}]],"s":17,"t":"Div"}],"meta":{"title":{"c":[{"c":"metadata1","s":0,"t":"Str"}],"s":3,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1]} +{"astContext":{"files":[{"line_breaks":[3,20,24,25,35,36,40,56,69,73,74,78],"name":"tests/snapshots/json/003.qmd","total_length":79}],"metaTopLevelKeySources":{"title":23},"sourceInfoPool":[{"d":0,"r":[0,25],"t":0},{"d":0,"r":[4,20],"t":1},{"d":1,"r":[7,16],"t":1},{"d":2,"r":[0,9],"t":1},{"d":1,"r":[7,16],"t":1},{"d":0,"r":[37,74],"t":0},{"d":5,"r":[4,32],"t":1},{"d":6,"r":[0,6],"t":1},{"d":5,"r":[4,32],"t":1},{"d":8,"r":[8,15],"t":1},{"d":9,"r":[0,7],"t":1},{"d":8,"r":[8,15],"t":1},{"d":5,"r":[4,32],"t":1},{"d":12,"r":[16,22],"t":1},{"d":5,"r":[4,32],"t":1},{"d":14,"r":[24,28],"t":1},{"d":15,"r":[0,4],"t":1},{"d":14,"r":[24,28],"t":1},{"d":5,"r":[4,32],"t":1},{"d":0,"r":[37,74],"t":0},{"d":0,"r":[26,79],"t":0},{"d":0,"r":[30,35],"t":0},{"d":0,"r":[4,20],"t":1},{"d":22,"r":[0,5],"t":1}]},"blocks":[{"attrS":{"classes":[21],"id":null,"kvs":[]},"c":[["",["hello"],[]],[{"c":{"c":[{"key":"_scope","key_source":7,"value":{"c":[{"c":"lexical","s":10,"t":"Str"}],"s":11,"t":"MetaInlines"}},{"key":"nested","key_source":13,"value":{"c":[{"c":"meta","s":16,"t":"Str"}],"s":17,"t":"MetaInlines"}}],"s":18,"t":"MetaMap"},"s":19,"t":"BlockMetadata"}]],"s":20,"t":"Div"}],"meta":{"title":{"c":[{"c":"metadata1","s":3,"t":"Str"}],"s":4,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1]} diff --git a/crates/quarto-markdown-pandoc/snapshots/json/horizontal-rules-vs-metadata.snap b/crates/quarto-markdown-pandoc/snapshots/json/horizontal-rules-vs-metadata.snap index e9132c6..74a9159 100644 --- a/crates/quarto-markdown-pandoc/snapshots/json/horizontal-rules-vs-metadata.snap +++ b/crates/quarto-markdown-pandoc/snapshots/json/horizontal-rules-vs-metadata.snap @@ -2,4 +2,4 @@ source: crates/quarto-markdown-pandoc/tests/test.rs expression: output --- -{"astContext":{"files":[{"line_breaks":[3,24,44,48,49,83,84,88,89,129],"name":"tests/snapshots/json/horizontal-rules-vs-metadata.qmd","total_length":130}],"metaTopLevelKeySources":{"author":33,"title":31},"sourceInfoPool":[{"d":0,"r":[0,4],"t":0},{"d":0,"r":[4,5],"t":0},{"d":0,"r":[5,13],"t":0},{"d":0,"r":[0,49],"t":0},{"d":3,"r":[4,44],"t":1},{"d":4,"r":[7,20],"t":1},{"d":0,"r":[0,4],"t":0},{"d":0,"r":[4,5],"t":0},{"d":0,"r":[5,11],"t":0},{"d":3,"r":[4,44],"t":1},{"d":9,"r":[29,40],"t":1},{"d":0,"r":[50,57],"t":0},{"d":0,"r":[57,58],"t":0},{"d":0,"r":[58,67],"t":0},{"d":0,"r":[67,68],"t":0},{"d":0,"r":[68,73],"t":0},{"d":0,"r":[73,74],"t":0},{"d":0,"r":[74,83],"t":0},{"d":0,"r":[50,84],"t":0},{"d":0,"r":[85,89],"t":0},{"d":0,"r":[90,96],"t":0},{"d":0,"r":[96,97],"t":0},{"d":0,"r":[97,106],"t":0},{"d":0,"r":[106,107],"t":0},{"d":0,"r":[107,112],"t":0},{"d":0,"r":[112,113],"t":0},{"d":0,"r":[113,123],"t":0},{"d":0,"r":[123,124],"t":0},{"d":0,"r":[124,129],"t":0},{"d":0,"r":[90,130],"t":0},{"d":3,"r":[4,44],"t":1},{"d":30,"r":[0,5],"t":1},{"d":3,"r":[4,44],"t":1},{"d":32,"r":[21,27],"t":1}]},"blocks":[{"c":[{"c":"Content","s":11,"t":"Str"},{"s":12,"t":"Space"},{"c":"paragraph","s":13,"t":"Str"},{"s":14,"t":"Space"},{"c":"after","s":15,"t":"Str"},{"s":16,"t":"Space"},{"c":"metadata.","s":17,"t":"Str"}],"s":18,"t":"Para"},{"s":19,"t":"HorizontalRule"},{"c":[{"c":"Second","s":20,"t":"Str"},{"s":21,"t":"Space"},{"c":"paragraph","s":22,"t":"Str"},{"s":23,"t":"Space"},{"c":"after","s":24,"t":"Str"},{"s":25,"t":"Space"},{"c":"horizontal","s":26,"t":"Str"},{"s":27,"t":"Space"},{"c":"rule.","s":28,"t":"Str"}],"s":29,"t":"Para"}],"meta":{"author":{"c":[{"c":"Test","s":6,"t":"Str"},{"s":7,"t":"Space"},{"c":"Author","s":8,"t":"Str"}],"s":10,"t":"MetaInlines"},"title":{"c":[{"c":"Test","s":0,"t":"Str"},{"s":1,"t":"Space"},{"c":"Document","s":2,"t":"Str"}],"s":5,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1]} +{"astContext":{"files":[{"line_breaks":[3,24,44,48,49,83,84,88,89,129],"name":"tests/snapshots/json/horizontal-rules-vs-metadata.qmd","total_length":130}],"metaTopLevelKeySources":{"author":39,"title":37},"sourceInfoPool":[{"d":0,"r":[0,49],"t":0},{"d":0,"r":[4,44],"t":1},{"d":1,"r":[7,20],"t":1},{"d":2,"r":[0,4],"t":1},{"d":1,"r":[7,20],"t":1},{"d":4,"r":[4,5],"t":1},{"d":1,"r":[7,20],"t":1},{"d":6,"r":[5,13],"t":1},{"d":1,"r":[7,20],"t":1},{"d":0,"r":[4,44],"t":1},{"d":9,"r":[29,40],"t":1},{"d":10,"r":[0,4],"t":1},{"d":9,"r":[29,40],"t":1},{"d":12,"r":[4,5],"t":1},{"d":9,"r":[29,40],"t":1},{"d":14,"r":[5,11],"t":1},{"d":9,"r":[29,40],"t":1},{"d":0,"r":[50,57],"t":0},{"d":0,"r":[57,58],"t":0},{"d":0,"r":[58,67],"t":0},{"d":0,"r":[67,68],"t":0},{"d":0,"r":[68,73],"t":0},{"d":0,"r":[73,74],"t":0},{"d":0,"r":[74,83],"t":0},{"d":0,"r":[50,84],"t":0},{"d":0,"r":[85,89],"t":0},{"d":0,"r":[90,96],"t":0},{"d":0,"r":[96,97],"t":0},{"d":0,"r":[97,106],"t":0},{"d":0,"r":[106,107],"t":0},{"d":0,"r":[107,112],"t":0},{"d":0,"r":[112,113],"t":0},{"d":0,"r":[113,123],"t":0},{"d":0,"r":[123,124],"t":0},{"d":0,"r":[124,129],"t":0},{"d":0,"r":[90,130],"t":0},{"d":0,"r":[4,44],"t":1},{"d":36,"r":[0,5],"t":1},{"d":0,"r":[4,44],"t":1},{"d":38,"r":[21,27],"t":1}]},"blocks":[{"c":[{"c":"Content","s":17,"t":"Str"},{"s":18,"t":"Space"},{"c":"paragraph","s":19,"t":"Str"},{"s":20,"t":"Space"},{"c":"after","s":21,"t":"Str"},{"s":22,"t":"Space"},{"c":"metadata.","s":23,"t":"Str"}],"s":24,"t":"Para"},{"s":25,"t":"HorizontalRule"},{"c":[{"c":"Second","s":26,"t":"Str"},{"s":27,"t":"Space"},{"c":"paragraph","s":28,"t":"Str"},{"s":29,"t":"Space"},{"c":"after","s":30,"t":"Str"},{"s":31,"t":"Space"},{"c":"horizontal","s":32,"t":"Str"},{"s":33,"t":"Space"},{"c":"rule.","s":34,"t":"Str"}],"s":35,"t":"Para"}],"meta":{"author":{"c":[{"c":"Test","s":11,"t":"Str"},{"s":13,"t":"Space"},{"c":"Author","s":15,"t":"Str"}],"s":16,"t":"MetaInlines"},"title":{"c":[{"c":"Test","s":3,"t":"Str"},{"s":5,"t":"Space"},{"c":"Document","s":7,"t":"Str"}],"s":8,"t":"MetaInlines"}},"pandoc-api-version":[1,23,1]} diff --git a/crates/quarto-markdown-pandoc/src/main.rs b/crates/quarto-markdown-pandoc/src/main.rs index e4ae64a..4e4de89 100644 --- a/crates/quarto-markdown-pandoc/src/main.rs +++ b/crates/quarto-markdown-pandoc/src/main.rs @@ -125,6 +125,7 @@ fn main() { input_filename, &mut output_stream, !args.no_prune_errors, // prune_errors = !no_prune_errors + None, ); match result { Ok((pandoc, context, warnings)) => { diff --git a/crates/quarto-markdown-pandoc/src/pandoc/ast_context.rs b/crates/quarto-markdown-pandoc/src/pandoc/ast_context.rs index b793ccc..02754b3 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/ast_context.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/ast_context.rs @@ -18,6 +18,11 @@ pub struct ASTContext { pub example_list_counter: Cell, /// Source context for tracking files and their content pub source_context: SourceContext, + /// Parent source info for recursive parses (e.g., metadata values) + /// When set, all SourceInfo instances created during parsing are wrapped + /// as Substrings of this parent, enabling correct location tracking through + /// nested parse operations. + pub parent_source_info: Option, } impl ASTContext { @@ -30,6 +35,7 @@ impl ASTContext { filenames: vec!["".to_string()], example_list_counter: Cell::new(1), source_context, + parent_source_info: None, } } @@ -43,6 +49,7 @@ impl ASTContext { filenames: vec![filename_str], example_list_counter: Cell::new(1), source_context, + parent_source_info: None, } } @@ -55,6 +62,7 @@ impl ASTContext { filenames: vec!["".to_string()], example_list_counter: Cell::new(1), source_context, + parent_source_info: None, } } diff --git a/crates/quarto-markdown-pandoc/src/pandoc/location.rs b/crates/quarto-markdown-pandoc/src/pandoc/location.rs index 25047b1..5b080e8 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/location.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/location.rs @@ -149,7 +149,71 @@ pub fn node_source_info_with_context( node: &tree_sitter::Node, context: &ASTContext, ) -> quarto_source_map::SourceInfo { - quarto_source_map::SourceInfo::from_range(context.current_file_id(), node_location(node)) + // 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(), + ) + } else { + quarto_source_map::SourceInfo::from_range(context.current_file_id(), node_location(node)) + } +} + +/// Convert a Range to SourceInfo using the context's primary file ID. +/// +/// # Arguments +/// * `range` - The Range to convert +/// * `ctx` - The ASTContext to get the file ID from +/// +/// # Returns +/// A SourceInfo with Original mapping to the primary file +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)); + quarto_source_map::SourceInfo::from_range(file_id, range.clone()) +} + +/// Convert quarto-source-map::SourceInfo to a quarto_source_map::Range, with a fallback if mapping fails. +/// +/// This is for use with PandocNativeIntermediate which uses quarto_source_map::Range. +/// Provides a fallback Range with zero row/column values if the mapping fails. +/// +/// # Arguments +/// * `source_info` - The SourceInfo to convert +/// * `ctx` - The ASTContext containing the source context +/// +/// # Returns +/// A quarto_source_map::Range with row/column information if available, or a Range with offsets only +pub fn source_info_to_qsm_range_or_fallback( + source_info: &quarto_source_map::SourceInfo, + ctx: &ASTContext, +) -> quarto_source_map::Range { + let start_mapped = source_info.map_offset(0, &ctx.source_context); + let end_mapped = source_info.map_offset(source_info.length(), &ctx.source_context); + + match (start_mapped, end_mapped) { + (Some(start), Some(end)) => quarto_source_map::Range { + start: start.location, + end: end.location, + }, + _ => quarto_source_map::Range { + start: quarto_source_map::Location { + offset: source_info.start_offset(), + row: 0, + column: 0, + }, + end: quarto_source_map::Location { + offset: source_info.end_offset(), + row: 0, + column: 0, + }, + }, + } } pub fn empty_range() -> Range { diff --git a/crates/quarto-markdown-pandoc/src/pandoc/meta.rs b/crates/quarto-markdown-pandoc/src/pandoc/meta.rs index 4dc1da1..a428079 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/meta.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/meta.rs @@ -250,6 +250,7 @@ fn parse_yaml_string_as_markdown( "", &mut output_stream, true, + Some(source_info.clone()), ); match result { @@ -726,6 +727,7 @@ pub fn parse_metadata_strings_with_source_info( "", &mut output_stream, true, + Some(source_info.clone()), ); match result { Ok((mut pandoc, _context, warnings)) => { @@ -817,7 +819,7 @@ pub fn parse_metadata_strings(meta: MetaValue, outer_metadata: &mut Meta) -> Met MetaValue::MetaString(s) => { let mut output_stream = VerboseOutput::Sink(io::sink()); let result = - readers::qmd::read(s.as_bytes(), false, "", &mut output_stream, true); + 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/mod.rs b/crates/quarto-markdown-pandoc/src/pandoc/mod.rs index fd82e10..6d0c946 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/mod.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/mod.rs @@ -13,7 +13,6 @@ pub mod location; pub mod meta; pub mod pandoc; pub mod shortcode; -pub mod source_map_compat; pub mod table; pub mod treesitter; pub mod treesitter_utils; diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs index 590568a..2a102cd 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter.rs @@ -711,14 +711,14 @@ fn native_visitor( if let Some(child) = node.child(0) { let text = child.utf8_text(input_bytes).unwrap().to_string(); let range = - crate::pandoc::source_map_compat::source_info_to_qsm_range_or_fallback( + 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::source_map_compat::source_info_to_qsm_range_or_fallback( + crate::pandoc::location::source_info_to_qsm_range_or_fallback( &node_source_info_with_context(node, context), context, ); @@ -1049,7 +1049,7 @@ fn native_visitor( // Remove the leading '=' to get the format name let format = text.strip_prefix('=').unwrap_or(&text).to_string(); let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::source_map_compat::source_info_to_qsm_range_or_fallback( + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( &source_info, context, ); 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 ca62c23..5244be9 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,7 +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::source_map_compat::source_info_to_qsm_range_or_fallback( + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( &source_info, context, ); 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 e78b6ba..e90ed41 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/citation.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/citation.rs @@ -9,7 +9,6 @@ use crate::pandoc::ast_context::ASTContext; use crate::pandoc::inline::{Citation, CitationMode, Cite, Inline, Space, Str}; use crate::pandoc::location::node_source_info_with_context; -use crate::pandoc::source_map_compat; use super::pandocnativeintermediate::PandocNativeIntermediate; @@ -30,7 +29,7 @@ where citation_type = CitationMode::SuppressAuthor; if let PandocNativeIntermediate::IntermediateBaseText(id, range) = child { citation_id = id; - citation_id_source = Some(source_map_compat::range_to_source_info_with_context( + citation_id_source = Some(crate::pandoc::location::range_to_source_info_with_context( &range, context, )); } else { @@ -43,7 +42,7 @@ where citation_type = CitationMode::AuthorInText; if let PandocNativeIntermediate::IntermediateBaseText(id, range) = child { citation_id = id; - citation_id_source = Some(source_map_compat::range_to_source_info_with_context( + citation_id_source = Some(crate::pandoc::location::range_to_source_info_with_context( &range, context, )); } else { @@ -72,9 +71,9 @@ where }], content: vec![Inline::Str(Str { text: trimmed_text, - source_info: source_map_compat::node_to_source_info_with_context(node, context), + source_info: crate::pandoc::location::node_source_info_with_context(node, context), })], - source_info: source_map_compat::node_to_source_info_with_context(node, context), + source_info: crate::pandoc::location::node_source_info_with_context(node, context), }); // Build result with leading Space if needed to distinguish "Hi @cite" from "Hi@cite" 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 d5bb5f5..2530651 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,7 +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::source_map_compat::source_info_to_qsm_range_or_fallback( + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( &source_info, context, ); diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/code_span.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/code_span.rs index ac689d0..4aecea7 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/code_span.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/code_span.rs @@ -28,7 +28,7 @@ pub fn process_code_span( .into_iter() .map(|(node_name, child)| { let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::source_map_compat::source_info_to_qsm_range_or_fallback( + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( &source_info, context, ); 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 88c02aa..e8574b7 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,7 +48,7 @@ pub fn process_fenced_code_block( // Track source location for the language specifier let lang_source = - crate::pandoc::source_map_compat::range_to_source_info_with_context( + crate::pandoc::location::range_to_source_info_with_context( &range, context, ); attr_source.classes.push(Some(lang_source)); @@ -78,7 +78,7 @@ 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::source_map_compat::range_to_source_info_with_context( + let lang_source = crate::pandoc::location::range_to_source_info_with_context( &range, context, ); attr_source.classes.push(Some(lang_source)); 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 a3e2822..1ce9b48 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/image.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/image.rs @@ -52,14 +52,14 @@ where if node == "link_destination" { target.0 = text; // URL target_source.url = Some( - crate::pandoc::source_map_compat::range_to_source_info_with_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::source_map_compat::range_to_source_info_with_context( + crate::pandoc::location::range_to_source_info_with_context( &range, context, ), ); diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/info_string.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/info_string.rs index d3c3e06..73c1557 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/info_string.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/info_string.rs @@ -5,8 +5,7 @@ use crate::pandoc::ast_context::ASTContext; use crate::pandoc::attr::AttrSourceInfo; -use crate::pandoc::location::node_location; -use crate::pandoc::source_map_compat::range_to_source_info_with_context; +use crate::pandoc::location::{node_location, range_to_source_info_with_context}; use crate::pandoc::treesitter_utils::pandocnativeintermediate::PandocNativeIntermediate; use hashlink::LinkedHashMap; use tree_sitter::Node; 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 83a5aa4..5d100bd 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,14 +48,14 @@ where if node == "link_destination" { target.0 = text; // URL target_source.url = Some( - crate::pandoc::source_map_compat::range_to_source_info_with_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::source_map_compat::range_to_source_info_with_context( + crate::pandoc::location::range_to_source_info_with_context( &range, context, ), ); @@ -89,7 +89,7 @@ where attr, target, content, - crate::pandoc::source_map_compat::node_to_source_info_with_context(node, context), + crate::pandoc::location::node_source_info_with_context(node, context), attr_source, target_source, ) @@ -98,7 +98,7 @@ where attr, target, content, - crate::pandoc::source_map_compat::node_to_source_info_with_context(node, context), + crate::pandoc::location::node_source_info_with_context(node, context), attr_source, target_source, ) 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 681cbfd..22a7c85 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,7 +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::source_map_compat::source_info_to_qsm_range_or_fallback( + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( &source_info, context, ); 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 f26d239..81aa947 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,7 +27,7 @@ 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::source_map_compat::source_info_to_qsm_range_or_fallback( + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( &source_info, context, ); @@ -42,7 +42,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::source_map_compat::source_info_to_qsm_range_or_fallback( + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( &source_info, context, ); diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs index ab178c1..ce002b0 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/postprocess.rs @@ -613,22 +613,48 @@ pub fn postprocess(doc: Pandoc, error_collector: &mut DiagnosticCollector) -> Re ) }) .with_inlines(|inlines| { - // Combined filter: Handle Math + Attr pattern, then citation suffix pattern + // Combined filter: Handle LineBreak + SoftBreak cleanup, Math + Attr pattern, then citation suffix pattern - // Step 1: Handle Math nodes followed by Attr + // Step 0: Remove SoftBreaks that immediately follow LineBreaks + // This fixes an issue where tree-sitter emits both break types when + // a hard break (backslash-newline) is present. Pandoc only emits LineBreak + // in this case, so we match that behavior by dropping the redundant SoftBreak. + let mut break_cleaned = vec![]; + let mut i = 0; + + while i < inlines.len() { + let current = &inlines[i]; + + // Check if current is LineBreak and next is SoftBreak + if matches!(current, Inline::LineBreak(_)) + && i + 1 < inlines.len() + && matches!(inlines[i + 1], Inline::SoftBreak(_)) + { + // Keep the LineBreak + break_cleaned.push(inlines[i].clone()); + // Skip the SoftBreak (i+1) + i += 2; + } else { + // Keep the current inline + break_cleaned.push(inlines[i].clone()); + i += 1; + } + } + + // Step 1: Handle Math nodes followed by Attr (process on break_cleaned) // Pattern: Math, Space (optional), Attr -> Span with "quarto-math-with-attribute" class let mut math_processed = vec![]; let mut i = 0; - while i < inlines.len() { - if let Inline::Math(math) = &inlines[i] { + while i < break_cleaned.len() { + if let Inline::Math(math) = &break_cleaned[i] { // Check if followed by Space then Attr, or just Attr - let has_space = - i + 1 < inlines.len() && matches!(inlines[i + 1], Inline::Space(_)); + let has_space = i + 1 < break_cleaned.len() + && matches!(break_cleaned[i + 1], Inline::Space(_)); let attr_idx = if has_space { i + 2 } else { i + 1 }; - if attr_idx < inlines.len() { - if let Inline::Attr(attr, attr_source) = &inlines[attr_idx] { + if attr_idx < break_cleaned.len() { + if let Inline::Attr(attr, attr_source) = &break_cleaned[attr_idx] { // Found Math + (Space?) + Attr pattern // Wrap Math in a Span with the attribute let mut classes = vec!["quarto-math-with-attribute".to_string()]; @@ -650,7 +676,7 @@ pub fn postprocess(doc: Pandoc, error_collector: &mut DiagnosticCollector) -> Re } // Not a Math + Attr pattern, add as is - math_processed.push(inlines[i].clone()); + math_processed.push(break_cleaned[i].clone()); i += 1; } 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 68c51c3..3b50c84 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,7 +14,7 @@ pub fn process_raw_attribute( context: &ASTContext, ) -> PandocNativeIntermediate { let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::source_map_compat::source_info_to_qsm_range_or_fallback( + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( &source_info, context, ); 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 fd9596d..a9550da 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,7 +16,7 @@ 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::source_map_compat::source_info_to_qsm_range_or_fallback( + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( &source_info, context, ); 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 6fd793c..0de97a3 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/shortcode.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/shortcode.rs @@ -23,7 +23,7 @@ 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::source_map_compat::source_info_to_qsm_range_or_fallback( + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( &source_info, context, ); @@ -43,7 +43,7 @@ pub fn process_shortcode_string( ) }; let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::source_map_compat::source_info_to_qsm_range_or_fallback( + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( &source_info, context, ); @@ -109,7 +109,7 @@ pub fn process_shortcode_keyword_param( } } let source_info = node_source_info_with_context(node, context); - let range = crate::pandoc::source_map_compat::source_info_to_qsm_range_or_fallback( + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( &source_info, context, ); @@ -197,7 +197,7 @@ 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::source_map_compat::source_info_to_qsm_range_or_fallback( + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( &source_info, context, ); @@ -211,7 +211,7 @@ 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::source_map_compat::source_info_to_qsm_range_or_fallback( + let range = crate::pandoc::location::source_info_to_qsm_range_or_fallback( &source_info, context, ); 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 59708a5..c253212 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 @@ -109,7 +109,7 @@ pub fn process_pandoc_span( target_source = TargetSourceInfo { url: if !url.is_empty() { Some( - crate::pandoc::source_map_compat::range_to_source_info_with_context( + crate::pandoc::location::range_to_source_info_with_context( &url_range, context, ), ) @@ -118,7 +118,7 @@ pub fn process_pandoc_span( }, title: if !title.is_empty() { Some( - crate::pandoc::source_map_compat::range_to_source_info_with_context( + crate::pandoc::location::range_to_source_info_with_context( &title_range, context, ), @@ -268,7 +268,7 @@ pub fn process_pandoc_image( target_source = TargetSourceInfo { url: if !url.is_empty() { Some( - crate::pandoc::source_map_compat::range_to_source_info_with_context( + crate::pandoc::location::range_to_source_info_with_context( &url_range, context, ), ) @@ -277,7 +277,7 @@ pub fn process_pandoc_image( }, title: if !title.is_empty() { Some( - crate::pandoc::source_map_compat::range_to_source_info_with_context( + crate::pandoc::location::range_to_source_info_with_context( &title_range, context, ), diff --git a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/thematic_break.rs b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/thematic_break.rs index b88db9d..715cc09 100644 --- a/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/thematic_break.rs +++ b/crates/quarto-markdown-pandoc/src/pandoc/treesitter_utils/thematic_break.rs @@ -5,7 +5,6 @@ use crate::pandoc::ast_context::ASTContext; use crate::pandoc::block::{Block, HorizontalRule}; -use crate::pandoc::source_map_compat; use crate::pandoc::treesitter_utils::pandocnativeintermediate::PandocNativeIntermediate; /// Process a thematic break (horizontal rule) @@ -14,6 +13,6 @@ pub fn process_thematic_break( context: &ASTContext, ) -> PandocNativeIntermediate { PandocNativeIntermediate::IntermediateBlock(Block::HorizontalRule(HorizontalRule { - source_info: source_map_compat::node_to_source_info_with_context(node, context), + source_info: crate::pandoc::location::node_source_info_with_context(node, context), })) } diff --git a/crates/quarto-markdown-pandoc/src/readers/json.rs b/crates/quarto-markdown-pandoc/src/readers/json.rs index 9be20f6..f934abc 100644 --- a/crates/quarto-markdown-pandoc/src/readers/json.rs +++ b/crates/quarto-markdown-pandoc/src/readers/json.rs @@ -1023,6 +1023,7 @@ fn read_ast_context(value: &Value) -> Result { filenames, example_list_counter: std::cell::Cell::new(1), source_context, + parent_source_info: None, }) } diff --git a/crates/quarto-markdown-pandoc/src/readers/qmd.rs b/crates/quarto-markdown-pandoc/src/readers/qmd.rs index 9afb320..9ae8ce4 100644 --- a/crates/quarto-markdown-pandoc/src/readers/qmd.rs +++ b/crates/quarto-markdown-pandoc/src/readers/qmd.rs @@ -56,6 +56,7 @@ pub fn read( filename: &str, mut output_stream: &mut T, prune_errors: bool, + parent_source_info: Option, ) -> Result< ( pandoc::Pandoc, @@ -89,6 +90,7 @@ pub fn read( filename, output_stream, prune_errors, + parent_source_info, ); } @@ -98,6 +100,8 @@ pub fn read( // Create ASTContext early so we can use it for error diagnostics let mut context = ASTContext::with_filename(filename.to_string()); + // Store parent source info for recursive parses + context.parent_source_info = parent_source_info; // Add the input content to the SourceContext for proper error rendering let input_str = String::from_utf8_lossy(input_bytes).to_string(); context.source_context = quarto_source_map::SourceContext::new(); diff --git a/crates/quarto-markdown-pandoc/src/wasm_entry_points/mod.rs b/crates/quarto-markdown-pandoc/src/wasm_entry_points/mod.rs index b5a1432..df7b2fd 100644 --- a/crates/quarto-markdown-pandoc/src/wasm_entry_points/mod.rs +++ b/crates/quarto-markdown-pandoc/src/wasm_entry_points/mod.rs @@ -42,7 +42,7 @@ pub fn qmd_to_pandoc( Vec, > { let mut output = VerboseOutput::Sink(io::sink()); - match readers::qmd::read(input, false, "", &mut output, true) { + match readers::qmd::read(input, false, "", &mut output, true, None) { Ok((pandoc, context, _warnings)) => { // TODO: Decide how to handle warnings in WASM context Ok((pandoc, context)) diff --git a/crates/quarto-markdown-pandoc/tests/json_location_test.rs b/crates/quarto-markdown-pandoc/tests/json_location_test.rs index 27a02f7..7f35975 100644 --- a/crates/quarto-markdown-pandoc/tests/json_location_test.rs +++ b/crates/quarto-markdown-pandoc/tests/json_location_test.rs @@ -8,7 +8,7 @@ fn test_json_location_disabled_by_default() { let mut output = io::sink(); let (pandoc, context, _errors) = - qmd::read(input.as_bytes(), false, "test.qmd", &mut output, true) + qmd::read(input.as_bytes(), false, "test.qmd", &mut output, true, None) .expect("Failed to parse QMD"); let mut buf = Vec::new(); @@ -31,7 +31,7 @@ fn test_json_location_enabled() { let mut output = io::sink(); let (pandoc, context, _errors) = - qmd::read(input.as_bytes(), false, "test.qmd", &mut output, true) + qmd::read(input.as_bytes(), false, "test.qmd", &mut output, true, None) .expect("Failed to parse QMD"); let mut buf = Vec::new(); @@ -74,7 +74,7 @@ fn test_json_location_multiline() { let mut output = io::sink(); let (pandoc, context, _errors) = - qmd::read(input.as_bytes(), false, "test.qmd", &mut output, true) + qmd::read(input.as_bytes(), false, "test.qmd", &mut output, true, None) .expect("Failed to parse QMD"); let mut buf = Vec::new(); @@ -107,7 +107,7 @@ fn test_json_location_1_indexed() { let mut output = io::sink(); let (pandoc, context, _errors) = - qmd::read(input.as_bytes(), false, "test.qmd", &mut output, true) + qmd::read(input.as_bytes(), false, "test.qmd", &mut output, true, None) .expect("Failed to parse QMD"); let mut buf = Vec::new(); diff --git a/crates/quarto-markdown-pandoc/tests/test.rs b/crates/quarto-markdown-pandoc/tests/test.rs index 087e60b..4c078a7 100644 --- a/crates/quarto-markdown-pandoc/tests/test.rs +++ b/crates/quarto-markdown-pandoc/tests/test.rs @@ -145,9 +145,7 @@ fn matches_pandoc_markdown_reader(input: &str) -> bool { input.as_bytes(), false, "", - &mut std::io::sink(), - true, - ) + &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"); @@ -331,9 +329,7 @@ where input.as_bytes(), false, &path.to_string_lossy(), - &mut output_stream, - true, - ) + &mut output_stream, true, None) .unwrap(); writer(&pandoc, &context, &mut buffer).unwrap(); @@ -635,9 +631,7 @@ fn test_markdown_writer_smoke() { markdown.as_bytes(), false, path.to_str().unwrap(), - &mut std::io::sink(), - true, - ); + &mut std::io::sink(), true, None); match doc_result { Ok((doc, _context, _warnings)) => { @@ -684,9 +678,7 @@ fn test_qmd_roundtrip_consistency() { original_qmd.as_bytes(), false, path.to_str().unwrap(), - &mut std::io::sink(), - true, - ) + &mut std::io::sink(), true, None) .expect("Failed to parse original QMD"); let mut json_buf = Vec::new(); @@ -707,9 +699,7 @@ fn test_qmd_roundtrip_consistency() { regenerated_qmd.as_bytes(), false, "", - &mut std::io::sink(), - true, - ) + &mut std::io::sink(), true, None) .expect("Failed to parse regenerated QMD"); // Compare JSON representations (without location fields) @@ -769,9 +759,7 @@ fn test_ansi_writer_smoke() { markdown.as_bytes(), false, path.to_str().unwrap(), - &mut std::io::sink(), - true, - ); + &mut std::io::sink(), true, None); match doc_result { Ok((doc, _context, _warnings)) => { @@ -817,9 +805,7 @@ fn test_empty_blockquote_roundtrip() { original_qmd.as_bytes(), false, test_file, - &mut std::io::sink(), - true, - ) + &mut std::io::sink(), true, None) .expect("Failed to parse original QMD"); let mut json_buf = Vec::new(); @@ -841,6 +827,7 @@ fn test_empty_blockquote_roundtrip() { "", &mut std::io::sink(), true, + None, ) .expect("Failed to parse regenerated QMD"); diff --git a/crates/quarto-markdown-pandoc/tests/test_error_corpus.rs b/crates/quarto-markdown-pandoc/tests/test_error_corpus.rs index a6b45ad..7608c5a 100644 --- a/crates/quarto-markdown-pandoc/tests/test_error_corpus.rs +++ b/crates/quarto-markdown-pandoc/tests/test_error_corpus.rs @@ -9,20 +9,20 @@ use regex::Regex; use std::fs; use std::path::PathBuf; -/// Test that all files in resources/error-corpus/*.qmd produce ariadne-formatted errors +/// Test that all files in resources/error-corpus/case-files/*.qmd produce ariadne-formatted errors /// with file:line:column information and source code snippets. #[test] fn test_error_corpus_ariadne_output() { - let corpus_dir = PathBuf::from("resources/error-corpus"); + let corpus_dir = PathBuf::from("resources/error-corpus/case-files"); assert!( corpus_dir.exists(), - "Error corpus directory should exist: {}", + "Error corpus case-files directory should exist: {}", corpus_dir.display() ); - // Find all .qmd files in the error corpus + // Find all .qmd files in the case-files directory let mut qmd_files: Vec = fs::read_dir(&corpus_dir) - .expect("Failed to read error corpus directory") + .expect("Failed to read error corpus case-files directory") .filter_map(|entry| { let entry = entry.ok()?; let path = entry.path(); @@ -63,6 +63,7 @@ fn test_error_corpus_ariadne_output() { &qmd_file.to_string_lossy(), &mut std::io::sink(), true, // prune errors + None, ); match result { @@ -121,20 +122,20 @@ fn test_error_corpus_ariadne_output() { } } -/// Test that all files in resources/error-corpus/*.qmd produce JSON errors +/// Test that all files in resources/error-corpus/case-files/*.qmd produce JSON errors /// with proper source location information (file_id and offsets). #[test] fn test_error_corpus_json_locations() { - let corpus_dir = PathBuf::from("resources/error-corpus"); + let corpus_dir = PathBuf::from("resources/error-corpus/case-files"); assert!( corpus_dir.exists(), - "Error corpus directory should exist: {}", + "Error corpus case-files directory should exist: {}", corpus_dir.display() ); - // Find all .qmd files in the error corpus + // Find all .qmd files in the case-files directory let mut qmd_files: Vec = fs::read_dir(&corpus_dir) - .expect("Failed to read error corpus directory") + .expect("Failed to read error corpus case-files directory") .filter_map(|entry| { let entry = entry.ok()?; let path = entry.path(); @@ -171,6 +172,7 @@ fn test_error_corpus_json_locations() { &qmd_file.to_string_lossy(), &mut std::io::sink(), true, // prune errors + None, ); match result { @@ -279,6 +281,7 @@ fn test_error_corpus_text_snapshots() { &path.to_string_lossy(), &mut std::io::sink(), true, // prune errors + None, ); match result { @@ -355,6 +358,7 @@ fn test_error_corpus_json_snapshots() { &path.to_string_lossy(), &mut std::io::sink(), true, // prune errors + None, ); match result { diff --git a/crates/quarto-markdown-pandoc/tests/test_hard_soft_break.rs b/crates/quarto-markdown-pandoc/tests/test_hard_soft_break.rs new file mode 100644 index 0000000..1c15483 --- /dev/null +++ b/crates/quarto-markdown-pandoc/tests/test_hard_soft_break.rs @@ -0,0 +1,270 @@ +/* + * test_hard_soft_break.rs + * Copyright (c) 2025 Posit, PBC + * + * Tests for hard line break followed by soft line break removal. + * When tree-sitter emits both LineBreak (from backslash-newline) and SoftBreak (from the newline), + * the postprocessor should remove the redundant SoftBreak to match Pandoc's behavior. + * + * Run with: cargo test --test test_hard_soft_break + */ + +use quarto_markdown_pandoc::pandoc::{ASTContext, treesitter_to_pandoc}; +use quarto_markdown_pandoc::utils::diagnostic_collector::DiagnosticCollector; +use quarto_markdown_pandoc::writers; +use tree_sitter_qmd::MarkdownParser; + +/// Helper function to parse QMD input and convert to Pandoc AST +fn parse_qmd_to_pandoc_ast(input: &str) -> String { + let mut parser = MarkdownParser::default(); + let input_bytes = input.as_bytes(); + let tree = parser + .parse(input_bytes, None) + .expect("Failed to parse input"); + + let mut buf = Vec::new(); + let mut error_collector = DiagnosticCollector::new(); + + let pandoc = treesitter_to_pandoc( + &mut std::io::sink(), + &tree, + &input_bytes, + &ASTContext::anonymous(), + &mut error_collector, + ) + .unwrap(); + + writers::native::write(&pandoc, &ASTContext::anonymous(), &mut buf).unwrap(); + String::from_utf8(buf).expect("Invalid UTF-8 in output") +} + +/// Test basic hard line break (backslash-newline) +/// Should produce LineBreak ONLY, not LineBreak + SoftBreak +#[test] +fn test_hard_break_only() { + let input = "hello\\\nworld"; + let result = parse_qmd_to_pandoc_ast(input); + + // Should produce: Para [ Str "hello" , LineBreak , Str "world" ] + assert!( + result.contains("Para"), + "Output should contain Para: {}", + result + ); + assert!( + result.contains("LineBreak"), + "Output should contain LineBreak: {}", + result + ); + assert!( + result.contains("Str \"hello\""), + "Output should contain Str \"hello\": {}", + result + ); + assert!( + result.contains("Str \"world\""), + "Output should contain Str \"world\": {}", + result + ); + + // CRITICAL: Should NOT contain SoftBreak after LineBreak + assert!( + !result.contains("LineBreak , SoftBreak"), + "Output should NOT contain both LineBreak and SoftBreak: {}", + result + ); +} + +/// Test that standalone soft break is preserved +/// (no backslash before newline) +#[test] +fn test_soft_break_preserved() { + let input = "hello\nworld"; + let result = parse_qmd_to_pandoc_ast(input); + + // Should produce: Para [ Str "hello" , SoftBreak , Str "world" ] + assert!( + result.contains("Para"), + "Output should contain Para: {}", + result + ); + assert!( + result.contains("SoftBreak"), + "Output should contain SoftBreak: {}", + result + ); + assert!( + result.contains("Str \"hello\""), + "Output should contain Str \"hello\": {}", + result + ); + assert!( + result.contains("Str \"world\""), + "Output should contain Str \"world\": {}", + result + ); + + // Should NOT contain LineBreak + assert!( + !result.contains("LineBreak"), + "Output should NOT contain LineBreak: {}", + result + ); +} + +/// Test multiple consecutive hard breaks +#[test] +fn test_multiple_hard_breaks() { + let input = "hello\\\nthere\\\nworld"; + let result = parse_qmd_to_pandoc_ast(input); + + // Should produce: Para [ Str "hello" , LineBreak , Str "there" , LineBreak , Str "world" ] + assert!( + result.contains("Para"), + "Output should contain Para: {}", + result + ); + + // Count LineBreak occurrences + let linebreak_count = result.matches("LineBreak").count(); + assert_eq!( + linebreak_count, 2, + "Output should contain exactly 2 LineBreak instances: {}", + result + ); + + // Should NOT contain any SoftBreak + assert!( + !result.contains("SoftBreak"), + "Output should NOT contain SoftBreak: {}", + result + ); +} + +/// Test hard break inside bold formatting +#[test] +fn test_hard_break_in_bold() { + let input = "**hello\\\nworld**"; + let result = parse_qmd_to_pandoc_ast(input); + + // Should produce: Para [ Strong [ Str "hello" , LineBreak , Str "world" ] ] + assert!( + result.contains("Para"), + "Output should contain Para: {}", + result + ); + assert!( + result.contains("Strong"), + "Output should contain Strong: {}", + result + ); + assert!( + result.contains("LineBreak"), + "Output should contain LineBreak: {}", + result + ); + + // Should NOT contain SoftBreak + assert!( + !result.contains("SoftBreak"), + "Output should NOT contain SoftBreak: {}", + result + ); +} + +/// Test hard break inside emphasis +#[test] +fn test_hard_break_in_emphasis() { + let input = "*hello\\\nworld*"; + let result = parse_qmd_to_pandoc_ast(input); + + // Should produce: Para [ Emph [ Str "hello" , LineBreak , Str "world" ] ] + assert!( + result.contains("Para"), + "Output should contain Para: {}", + result + ); + assert!( + result.contains("Emph"), + "Output should contain Emph: {}", + result + ); + assert!( + result.contains("LineBreak"), + "Output should contain LineBreak: {}", + result + ); + + // Should NOT contain SoftBreak + assert!( + !result.contains("SoftBreak"), + "Output should NOT contain SoftBreak: {}", + result + ); +} + +/// Test hard break at end of paragraph +#[test] +fn test_hard_break_at_end() { + let input = "hello\\\n"; + let result = parse_qmd_to_pandoc_ast(input); + + // Should produce: Para [ Str "hello" , LineBreak ] + assert!( + result.contains("Para"), + "Output should contain Para: {}", + result + ); + assert!( + result.contains("LineBreak"), + "Output should contain LineBreak: {}", + result + ); + + // Should NOT contain SoftBreak + assert!( + !result.contains("SoftBreak"), + "Output should NOT contain SoftBreak: {}", + result + ); +} + +/// Test mix of hard break and soft break in same paragraph +#[test] +fn test_mixed_hard_and_soft_breaks() { + let input = "first\\\nsecond\nthird"; + let result = parse_qmd_to_pandoc_ast(input); + + // Should produce: Para [ Str "first" , LineBreak , Str "second" , SoftBreak , Str "third" ] + assert!( + result.contains("Para"), + "Output should contain Para: {}", + result + ); + assert!( + result.contains("LineBreak"), + "Output should contain LineBreak: {}", + result + ); + assert!( + result.contains("SoftBreak"), + "Output should contain SoftBreak: {}", + result + ); + + // LineBreak should appear exactly once + let linebreak_count = result.matches("LineBreak").count(); + assert_eq!( + linebreak_count, 1, + "Output should contain exactly 1 LineBreak: {}", + result + ); + + // SoftBreak should appear exactly once + let softbreak_count = result.matches("SoftBreak").count(); + assert_eq!( + softbreak_count, 1, + "Output should contain exactly 1 SoftBreak: {}", + result + ); +} diff --git a/crates/quarto-markdown-pandoc/tests/test_inline_locations.rs b/crates/quarto-markdown-pandoc/tests/test_inline_locations.rs index 808a2e9..398ae9a 100644 --- a/crates/quarto-markdown-pandoc/tests/test_inline_locations.rs +++ b/crates/quarto-markdown-pandoc/tests/test_inline_locations.rs @@ -17,6 +17,7 @@ fn resolve_source_ref( source_ref: &serde_json::Value, pool: &[serde_json::Value], file_info: &quarto_source_map::FileInformation, + content: &str, ) -> (usize, usize, usize, usize, usize, usize, usize) { let ref_id = source_ref .as_u64() @@ -59,10 +60,10 @@ fn resolve_source_ref( // Compute row/column from absolute offsets using FileInformation let start_loc = file_info - .offset_to_location(absolute_start) + .offset_to_location(absolute_start, content) .expect("Failed to convert start offset to location"); let end_loc = file_info - .offset_to_location(absolute_end) + .offset_to_location(absolute_end, content) .expect("Failed to convert end offset to location"); ( @@ -121,7 +122,7 @@ fn test_inline_source_locations() { assert_eq!(hello_str["t"], "Str"); assert_eq!(hello_str["c"], "hello"); let (start_off, _start_row, start_col, end_off, _end_row, end_col, _type) = - resolve_source_ref(&hello_str["s"], pool, &file_info); + resolve_source_ref(&hello_str["s"], pool, &file_info, input); assert_eq!(start_col, 0); assert_eq!(start_off, 0); assert_eq!(end_col, 5); @@ -131,7 +132,7 @@ fn test_inline_source_locations() { let space = &inlines[1]; assert_eq!(space["t"], "Space"); let (start_off, _start_row, start_col, end_off, _end_row, end_col, _t) = - resolve_source_ref(&space["s"], pool, &file_info); + resolve_source_ref(&space["s"], pool, &file_info, input); assert_eq!(start_col, 5); assert_eq!(start_off, 5); assert_eq!(end_col, 6); @@ -141,7 +142,7 @@ fn test_inline_source_locations() { let emph = &inlines[2]; assert_eq!(emph["t"], "Emph"); let (start_off, _start_row, start_col, end_off, _end_row, end_col, _t) = - resolve_source_ref(&emph["s"], pool, &file_info); + resolve_source_ref(&emph["s"], pool, &file_info, input); assert_eq!(start_col, 6); assert_eq!(start_off, 6); assert_eq!(end_col, 13); @@ -153,7 +154,7 @@ fn test_inline_source_locations() { assert_eq!(world_str["t"], "Str"); assert_eq!(world_str["c"], "world"); let (start_off, _start_row, start_col, end_off, _end_row, end_col, _t) = - resolve_source_ref(&world_str["s"], pool, &file_info); + resolve_source_ref(&world_str["s"], pool, &file_info, input); assert_eq!(start_col, 7); assert_eq!(start_off, 7); assert_eq!(end_col, 12); @@ -164,7 +165,7 @@ fn test_inline_source_locations() { assert_eq!(period["t"], "Str"); assert_eq!(period["c"], "."); let (start_off, _start_row, start_col, end_off, _end_row, end_col, _t) = - resolve_source_ref(&period["s"], pool, &file_info); + resolve_source_ref(&period["s"], pool, &file_info, input); assert_eq!(start_col, 13); assert_eq!(start_off, 13); assert_eq!(end_col, 14); @@ -221,7 +222,7 @@ fn test_merged_strings_preserve_location() { assert_eq!(hello["t"], "Str"); assert_eq!(hello["c"], "hello"); let (start_off, _start_row, start_col, end_off, _end_row, end_col, _t) = - resolve_source_ref(&hello["s"], pool, &file_info); + resolve_source_ref(&hello["s"], pool, &file_info, input); assert_eq!(start_col, 0); assert_eq!(start_off, 0); assert_eq!(end_col, 5); @@ -236,7 +237,7 @@ fn test_merged_strings_preserve_location() { assert_eq!(world["t"], "Str"); assert_eq!(world["c"], "world"); let (start_off, _start_row, start_col, end_off, _end_row, end_col, _t) = - resolve_source_ref(&world["s"], pool, &file_info); + resolve_source_ref(&world["s"], pool, &file_info, input); assert_eq!(start_col, 6); assert_eq!(start_off, 6); assert_eq!(end_col, 11); @@ -292,7 +293,7 @@ fn test_separate_strings_keep_separate_locations() { assert_eq!(a_str["t"], "Str"); assert_eq!(a_str["c"], "a"); let (start_off, _start_row, start_col, end_off, _end_row, end_col, _t) = - resolve_source_ref(&a_str["s"], pool, &file_info); + resolve_source_ref(&a_str["s"], pool, &file_info, input); assert_eq!(start_col, 0); assert_eq!(start_off, 0); assert_eq!(end_col, 1); @@ -302,7 +303,7 @@ fn test_separate_strings_keep_separate_locations() { let strong = &inlines[1]; assert_eq!(strong["t"], "Strong"); let (start_off, _start_row, start_col, end_off, _end_row, end_col, _t) = - resolve_source_ref(&strong["s"], pool, &file_info); + resolve_source_ref(&strong["s"], pool, &file_info, input); assert_eq!(start_col, 1); assert_eq!(start_off, 1); assert_eq!(end_col, 6); @@ -313,7 +314,7 @@ fn test_separate_strings_keep_separate_locations() { assert_eq!(c_str["t"], "Str"); assert_eq!(c_str["c"], "c"); let (start_off, _start_row, start_col, end_off, _end_row, end_col, _t) = - resolve_source_ref(&c_str["s"], pool, &file_info); + resolve_source_ref(&c_str["s"], pool, &file_info, input); assert_eq!(start_col, 6); assert_eq!(start_off, 6); assert_eq!(end_col, 7); @@ -375,7 +376,7 @@ fn test_note_source_location() { // Check Note's source location spans the entire ^[note content] let (start_off, _start_row, start_col, end_off, _end_row, end_col, _t) = - resolve_source_ref(¬e["s"], pool, &file_info); + resolve_source_ref(¬e["s"], pool, &file_info, input); assert_eq!(start_col, 4); assert_eq!(start_off, 4); assert_eq!(end_col, 19); @@ -391,7 +392,7 @@ fn test_note_source_location() { // CRITICAL: The Paragraph wrapper should have proper source location // not SourceInfo::default() which would be FileId(0) with offset 0 let (start_off, _start_row, start_col, end_off, _end_row, end_col, _t) = - resolve_source_ref(¬e_para["s"], pool, &file_info); + resolve_source_ref(¬e_para["s"], pool, &file_info, input); // The paragraph wrapper should have the same source location as the Note itself // since it's a synthetic wrapper for the note's content @@ -486,7 +487,7 @@ fn test_note_reference_source_location() { // CRITICAL: The Span should have proper source location from the NoteReference // not SourceInfo::default() which would be FileId(0) with offset 0 let (start_off, _start_row, start_col, end_off, _end_row, end_col, _t) = - resolve_source_ref(&span["s"], pool, &file_info); + resolve_source_ref(&span["s"], pool, &file_info, input); // The [^note1] spans from column 10 to 18 (0-indexed) assert_eq!(start_col, 10); diff --git a/crates/quarto-markdown-pandoc/tests/test_json_errors.rs b/crates/quarto-markdown-pandoc/tests/test_json_errors.rs index e77900f..58ca411 100644 --- a/crates/quarto-markdown-pandoc/tests/test_json_errors.rs +++ b/crates/quarto-markdown-pandoc/tests/test_json_errors.rs @@ -12,9 +12,7 @@ fn test_json_error_format() { input.as_bytes(), false, "test.md", - &mut std::io::sink(), - true, - ); + &mut std::io::sink(), true, None); assert!(result.is_err()); let diagnostics = result.unwrap_err(); @@ -38,9 +36,7 @@ fn test_regular_error_format() { input.as_bytes(), false, "test.md", - &mut std::io::sink(), - true, - ); + &mut std::io::sink(), true, None); assert!(result.is_err()); let diagnostics = result.unwrap_err(); @@ -62,9 +58,7 @@ fn test_newline_warning() { input.as_bytes(), false, "test.md", - &mut std::io::sink(), - true, - ); + &mut std::io::sink(), true, None); // Should succeed (the newline is added automatically) assert!(result.is_ok()); diff --git a/crates/quarto-markdown-pandoc/tests/test_json_roundtrip.rs b/crates/quarto-markdown-pandoc/tests/test_json_roundtrip.rs index 7d0b592..ea9c3e9 100644 --- a/crates/quarto-markdown-pandoc/tests/test_json_roundtrip.rs +++ b/crates/quarto-markdown-pandoc/tests/test_json_roundtrip.rs @@ -371,8 +371,7 @@ Hello world false, &test_file.to_string_lossy(), &mut std::io::sink(), - true, - ); + true, None, ); let (pandoc1, context1, diagnostics) = result.expect("Failed to parse QMD"); assert!(diagnostics.is_empty(), "Expected no parse errors"); @@ -538,8 +537,7 @@ fn test_qmd_roundtrip_escaped_punctuation() { false, "", &mut std::io::sink(), - true, - ) + 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 e9b1c5b..67a3031 100644 --- a/crates/quarto-markdown-pandoc/tests/test_metadata_source_tracking.rs +++ b/crates/quarto-markdown-pandoc/tests/test_metadata_source_tracking.rs @@ -64,8 +64,7 @@ fn test_metadata_source_tracking_002_qmd() { false, test_file, &mut output_stream, - true, - ) + true, None, ) .expect("Failed to parse QMD"); // Verify document-level metadata: title: metadata1 @@ -163,8 +162,7 @@ description: This is a description false, "test.qmd", &mut std::io::sink(), - true, - ) + true, None, ) .expect("Failed to parse"); // Extract metadata @@ -265,8 +263,7 @@ Some content here. false, "test.qmd", &mut std::io::sink(), - true, - ) + true, None, ) .expect("Failed to parse"); // Extract metadata @@ -348,8 +345,7 @@ fn test_yaml_tagged_value_source_tracking() { false, test_file, &mut output_stream, - true, - ) + 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 5db2a96..7b6210c 100644 --- a/crates/quarto-markdown-pandoc/tests/test_nested_yaml_serialization.rs +++ b/crates/quarto-markdown-pandoc/tests/test_nested_yaml_serialization.rs @@ -43,8 +43,7 @@ fn test_yaml_serialization_size_scaling() { false, "test.qmd", &mut output_stream, - true, - ) + true, None, ) .expect("Failed to parse QMD"); // Serialize to JSON @@ -96,7 +95,7 @@ fn test_yaml_serialization_with_siblings() { 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) + 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(); @@ -132,7 +131,7 @@ 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) + 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(); @@ -213,8 +212,7 @@ fn test_binary_tree_serialization() { false, "test.qmd", &mut output_stream, - true, - ) + 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 b975cec..eb579d6 100644 --- a/crates/quarto-markdown-pandoc/tests/test_ordered_list_formatting.rs +++ b/crates/quarto-markdown-pandoc/tests/test_ordered_list_formatting.rs @@ -26,8 +26,7 @@ fn test_ordered_list_10plus_formatting() { false, "", &mut std::io::sink(), - true, - ) + true, None, ) .unwrap(); // Write it back out @@ -86,8 +85,7 @@ fn test_ordered_list_continuation_indentation() { false, "", &mut std::io::sink(), - true, - ) + true, None, ) .unwrap(); // Write it back out diff --git a/crates/quarto-markdown-pandoc/tests/test_unicode_error_offsets.rs b/crates/quarto-markdown-pandoc/tests/test_unicode_error_offsets.rs index 8b3d5b5..7c9bbcc 100644 --- a/crates/quarto-markdown-pandoc/tests/test_unicode_error_offsets.rs +++ b/crates/quarto-markdown-pandoc/tests/test_unicode_error_offsets.rs @@ -17,7 +17,7 @@ fn test_unicode_error_position() { let input_bytes = input.as_bytes(); let mut output = Vec::new(); - let result = readers::qmd::read(input_bytes, false, "test.qmd", &mut output, true); + let result = readers::qmd::read(input_bytes, false, "test.qmd", &mut output, true, None); // Should have errors (the '}' is invalid) assert!( @@ -73,7 +73,7 @@ fn test_ascii_error_position_baseline() { let input_bytes = input.as_bytes(); let mut output = Vec::new(); - let result = readers::qmd::read(input_bytes, false, "test.qmd", &mut output, true); + let result = readers::qmd::read(input_bytes, false, "test.qmd", &mut output, true, None); assert!( result.is_err(), diff --git a/crates/quarto-markdown-pandoc/tests/test_warnings.rs b/crates/quarto-markdown-pandoc/tests/test_warnings.rs index 75e6a13..750be72 100644 --- a/crates/quarto-markdown-pandoc/tests/test_warnings.rs +++ b/crates/quarto-markdown-pandoc/tests/test_warnings.rs @@ -17,8 +17,7 @@ Some content false, "test.md", &mut std::io::sink(), - true, - ); + true, None, ); // Parsing should succeed (warnings are not errors) assert!( @@ -50,8 +49,7 @@ fn test_caption_with_table_no_warning() { false, "test.md", &mut std::io::sink(), - true, - ); + true, None, ); // Parsing should succeed and no warnings should be emitted assert!( @@ -82,8 +80,7 @@ fn test_html_element_produces_warning_not_error() { false, "test.md", &mut std::io::sink(), - true, - ); + true, None, ); // Parsing should succeed (warnings are not errors) assert!( @@ -159,8 +156,7 @@ fn test_multiple_html_elements() { false, "test.md", &mut std::io::sink(), - true, - ); + true, None, ); assert!(result.is_ok(), "Document should parse successfully"); @@ -216,8 +212,7 @@ fn test_block_level_html_elements() { false, "test.md", &mut std::io::sink(), - true, - ); + true, None, ); assert!(result.is_ok(), "Document should parse successfully"); @@ -274,8 +269,7 @@ fn test_html_elements_source_locations() { false, "test.md", &mut std::io::sink(), - true, - ); + true, None, ); assert!(result.is_ok(), "Document should parse successfully"); @@ -321,15 +315,13 @@ fn test_comparison_with_explicit_raw_inline_syntax() { false, "test.md", &mut std::io::sink(), - true, - ); + true, None, ); let result_explicit = readers::qmd::read( explicit.as_bytes(), false, "test.md", &mut std::io::sink(), - true, - ); + true, None, ); assert!(result_implicit.is_ok() && result_explicit.is_ok()); diff --git a/crates/quarto-source-map/src/file_info.rs b/crates/quarto-source-map/src/file_info.rs index f120b1d..fe8f262 100644 --- a/crates/quarto-source-map/src/file_info.rs +++ b/crates/quarto-source-map/src/file_info.rs @@ -66,6 +66,9 @@ impl FileInformation { /// Uses binary search to find which line contains the offset. /// Runs in O(log n) time where n is the number of lines. /// + /// The column is computed as character count (not byte count) from the start + /// of the line to the offset, which requires the content parameter. + /// /// Returns None if the offset is out of bounds. /// /// # Example @@ -73,12 +76,13 @@ impl FileInformation { /// ``` /// use quarto_source_map::FileInformation; /// - /// let info = FileInformation::new("hello\nworld"); - /// let loc = info.offset_to_location(6).unwrap(); + /// let content = "hello\nworld"; + /// let info = FileInformation::new(content); + /// let loc = info.offset_to_location(6, content).unwrap(); /// assert_eq!(loc.row, 1); /// assert_eq!(loc.column, 0); /// ``` - pub fn offset_to_location(&self, offset: usize) -> Option { + pub fn offset_to_location(&self, offset: usize, content: &str) -> Option { if offset > self.total_length { return None; } @@ -104,7 +108,9 @@ impl FileInformation { self.line_breaks[row - 1] + 1 // +1 to skip past the '\n' }; - let column = offset - line_start; + // Count characters (not bytes) from line_start to offset + // This ensures the column is a character count, not a byte count + let column = content[line_start..offset].chars().count(); Some(Location { offset, @@ -137,11 +143,12 @@ mod tests { #[test] fn test_empty_file() { - let info = FileInformation::new(""); + let content = ""; + let info = FileInformation::new(content); assert_eq!(info.total_length(), 0); assert_eq!(info.line_count(), 1); - let loc = info.offset_to_location(0).unwrap(); + let loc = info.offset_to_location(0, content).unwrap(); assert_eq!(loc.offset, 0); assert_eq!(loc.row, 0); assert_eq!(loc.column, 0); @@ -149,22 +156,23 @@ mod tests { #[test] fn test_single_line() { - let info = FileInformation::new("hello world"); + let content = "hello world"; + let info = FileInformation::new(content); assert_eq!(info.total_length(), 11); assert_eq!(info.line_count(), 1); // Start of line - let loc = info.offset_to_location(0).unwrap(); + let loc = info.offset_to_location(0, content).unwrap(); assert_eq!(loc.row, 0); assert_eq!(loc.column, 0); // Middle of line - let loc = info.offset_to_location(6).unwrap(); + let loc = info.offset_to_location(6, content).unwrap(); assert_eq!(loc.row, 0); assert_eq!(loc.column, 6); // End of line - let loc = info.offset_to_location(11).unwrap(); + let loc = info.offset_to_location(11, content).unwrap(); assert_eq!(loc.row, 0); assert_eq!(loc.column, 11); } @@ -176,40 +184,41 @@ mod tests { assert_eq!(info.line_count(), 3); // First line - let loc = info.offset_to_location(0).unwrap(); + let loc = info.offset_to_location(0, content).unwrap(); assert_eq!(loc.row, 0); assert_eq!(loc.column, 0); // At first newline (offset 6 is '\n') - let loc = info.offset_to_location(6).unwrap(); + let loc = info.offset_to_location(6, content).unwrap(); assert_eq!(loc.row, 0); assert_eq!(loc.column, 6); // Start of second line (offset 7 is 'l' in "line 2") - let loc = info.offset_to_location(7).unwrap(); + let loc = info.offset_to_location(7, content).unwrap(); assert_eq!(loc.row, 1); assert_eq!(loc.column, 0); // At second newline (offset 13 is '\n') - let loc = info.offset_to_location(13).unwrap(); + let loc = info.offset_to_location(13, content).unwrap(); assert_eq!(loc.row, 1); assert_eq!(loc.column, 6); // Start of third line (offset 14 is 'l' in "line 3") - let loc = info.offset_to_location(14).unwrap(); + let loc = info.offset_to_location(14, content).unwrap(); assert_eq!(loc.row, 2); assert_eq!(loc.column, 0); // End of file - let loc = info.offset_to_location(20).unwrap(); + let loc = info.offset_to_location(20, content).unwrap(); assert_eq!(loc.row, 2); assert_eq!(loc.column, 6); } #[test] fn test_out_of_bounds() { - let info = FileInformation::new("hello"); - assert!(info.offset_to_location(100).is_none()); + let content = "hello"; + let info = FileInformation::new(content); + assert!(info.offset_to_location(100, content).is_none()); } #[test] @@ -218,11 +227,11 @@ mod tests { let content = "café\nwörld"; // 4 chars + 1 newline + 5 chars = but more bytes let info = FileInformation::new(content); - // Verify we're working with byte offsets, not character offsets + // Verify we're working with byte offsets for positioning, but character counts for columns // "café" is 5 bytes: c(1) a(1) f(1) é(2) // newline is 1 byte // So second line starts at byte offset 6 - let loc = info.offset_to_location(6).unwrap(); + let loc = info.offset_to_location(6, content).unwrap(); assert_eq!(loc.row, 1); assert_eq!(loc.column, 0); } @@ -234,12 +243,12 @@ mod tests { assert_eq!(info.line_count(), 3); // Empty third line // The final newline - let loc = info.offset_to_location(13).unwrap(); + let loc = info.offset_to_location(13, content).unwrap(); assert_eq!(loc.row, 1); assert_eq!(loc.column, 6); // After the final newline (empty line 3) - let loc = info.offset_to_location(14).unwrap(); + let loc = info.offset_to_location(14, content).unwrap(); assert_eq!(loc.row, 2); assert_eq!(loc.column, 0); } @@ -251,28 +260,58 @@ mod tests { assert_eq!(info.line_count(), 4); // First line - let loc = info.offset_to_location(0).unwrap(); + let loc = info.offset_to_location(0, content).unwrap(); assert_eq!(loc.row, 0); assert_eq!(loc.column, 0); // First newline (offset 1) - let loc = info.offset_to_location(1).unwrap(); + let loc = info.offset_to_location(1, content).unwrap(); assert_eq!(loc.row, 0); assert_eq!(loc.column, 1); // Empty second line (offset 2) - let loc = info.offset_to_location(2).unwrap(); + let loc = info.offset_to_location(2, content).unwrap(); assert_eq!(loc.row, 1); assert_eq!(loc.column, 0); // Empty third line (offset 3) - let loc = info.offset_to_location(3).unwrap(); + let loc = info.offset_to_location(3, content).unwrap(); assert_eq!(loc.row, 2); assert_eq!(loc.column, 0); // Fourth line 'b' (offset 4) - let loc = info.offset_to_location(4).unwrap(); + let loc = info.offset_to_location(4, content).unwrap(); assert_eq!(loc.row, 3); assert_eq!(loc.column, 0); } + + #[test] + fn test_multibyte_utf8_column_should_be_character_count() { + // This test verifies that column is character count, not byte offset + // Swedish text with multi-byte UTF-8 characters (å = 2 bytes, ä = 2 bytes, ö = 2 bytes) + let content = "Gällande frågorna om något"; + // Character positions: G=0, ä=1, l=2, l=3, a=4, n=5, d=6, e=7, space=8, f=9, r=10, å=11, g=12, ... + // Byte positions: G=0, ä=1-2, l=3, l=4, a=5, n=6, d=7, e=8, space=9, f=10, r=11, å=12-13, g=14, ... + + let info = FileInformation::new(content); + + // Test position at "å" in "frågorna" (character 11, byte offset starts at 12) + // The byte offset 12 is where "å" starts (it's 2 bytes: 12-13) + let loc = info.offset_to_location(12, content).unwrap(); + assert_eq!(loc.row, 0); + // With the fix, this should return 11 (character count), not 12 (byte offset) + assert_eq!( + loc.column, 11, + "Column should be character count (11), not byte offset (12)" + ); + + // Test position at "g" after "å" in "frågorna" (character 12, byte offset 14) + let loc = info.offset_to_location(14, content).unwrap(); + assert_eq!(loc.row, 0); + // Should return 12 (character count), not 14 (byte offset) + assert_eq!( + loc.column, 12, + "Column should be character count (12), not byte offset (14)" + ); + } } diff --git a/crates/quarto-source-map/src/mapping.rs b/crates/quarto-source-map/src/mapping.rs index 8b96de6..89dff4b 100644 --- a/crates/quarto-source-map/src/mapping.rs +++ b/crates/quarto-source-map/src/mapping.rs @@ -28,8 +28,14 @@ impl SourceInfo { // Compute the absolute offset in the file let absolute_offset = start_offset + offset; + // Get file content: use stored content for ephemeral files, or read from disk + let content = match &file.content { + Some(c) => c.clone(), + None => std::fs::read_to_string(&file.path).ok()?, + }; + // Convert offset to Location with row/column using efficient binary search - let location = file_info.offset_to_location(absolute_offset)?; + let location = file_info.offset_to_location(absolute_offset, &content)?; Some(MappedLocation { file_id: *file_id, diff --git a/crates/quarto-yaml/src/parser.rs b/crates/quarto-yaml/src/parser.rs index 65fddd2..9feee67 100644 --- a/crates/quarto-yaml/src/parser.rs +++ b/crates/quarto-yaml/src/parser.rs @@ -380,11 +380,7 @@ impl<'a> YamlBuilder<'a> { } else { // We're parsing an original file - create an Original mapping // For row/column, we'd need to scan the source, but for now use approximations - SourceInfo::original( - quarto_source_map::FileId(0), - tag_start_offset, - end_offset, - ) + SourceInfo::original(quarto_source_map::FileId(0), tag_start_offset, end_offset) } } } @@ -1207,11 +1203,17 @@ We used the following approach... // The object should span from offset 0 (start of "title") to the end // NOT from offset 5 (the colon) - assert_eq!(source_info.start_offset(), 0, - "Object should start at offset 0 (beginning of first key), not at the colon"); + assert_eq!( + source_info.start_offset(), + 0, + "Object should start at offset 0 (beginning of first key), not at the colon" + ); // The end should be at the end of the content - assert_eq!(source_info.end_offset(), yaml_content.len(), - "Object should end at end of content"); + assert_eq!( + source_info.end_offset(), + yaml_content.len(), + "Object should end at end of content" + ); } } diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js index 7c7b840..c6d6a43 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/grammar.js @@ -512,7 +512,7 @@ module.exports = grammar({ $._prose_punctuation, $.html_element, - $.pandoc_line_break, + alias($._pandoc_line_break, $.pandoc_line_break), alias($._pandoc_attr_specifier, $.attribute_specifier), ), @@ -816,7 +816,7 @@ module.exports = grammar({ optional($.block_continuation) ), - pandoc_line_break: $ => seq(/\\/, choice($._newline, $._eof)), + // pandoc_line_break: $ => seq(/\\/, choice($._newline, $._eof)), _inline_whitespace: $ => choice($._whitespace, $._soft_line_break), _whitespace: $ => /[ \t]+/, @@ -962,6 +962,8 @@ module.exports = grammar({ $.html_element, // best-effort lexing of HTML elements simply for error reporting. $._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. ], 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 d970ede..554023c 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/grammar.json @@ -2727,8 +2727,13 @@ "name": "html_element" }, { - "type": "SYMBOL", - "name": "pandoc_line_break" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_pandoc_line_break" + }, + "named": true, + "value": "pandoc_line_break" }, { "type": "ALIAS", @@ -4334,28 +4339,6 @@ } ] }, - "pandoc_line_break": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "\\\\" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_newline" - }, - { - "type": "SYMBOL", - "name": "_eof" - } - ] - } - ] - }, "_inline_whitespace": { "type": "CHOICE", "members": [ @@ -4705,6 +4688,10 @@ { "type": "SYMBOL", "name": "_pipe_table_delimiter" + }, + { + "type": "SYMBOL", + "name": "_pandoc_line_break" } ], "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 7c35a19..6cd1843 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 @@ -1468,21 +1468,6 @@ ] } }, - { - "type": "pandoc_line_break", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "block_continuation", - "named": true - } - ] - } - }, { "type": "pandoc_list", "named": true, @@ -2873,6 +2858,10 @@ "type": "numeric_character_reference", "named": true }, + { + "type": "pandoc_line_break", + "named": true + }, { "type": "pandoc_space", "named": true diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c index 18948bb..df477a0 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/parser.c @@ -15,12 +15,12 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 4068 -#define LARGE_STATE_COUNT 647 -#define SYMBOL_COUNT 259 +#define STATE_COUNT 4004 +#define LARGE_STATE_COUNT 612 +#define SYMBOL_COUNT 258 #define ALIAS_COUNT 9 #define TOKEN_COUNT 130 -#define EXTERNAL_TOKEN_COUNT 82 +#define EXTERNAL_TOKEN_COUNT 83 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 9 #define MAX_RESERVED_WORD_SET_SIZE 0 @@ -73,90 +73,90 @@ enum ts_symbol_identifiers { anon_sym_PIPE = 43, aux_sym__prose_punctuation_token1 = 44, sym__code_line = 45, - aux_sym_pandoc_line_break_token1 = 46, - sym__whitespace = 47, - sym__line_ending = 48, - sym__soft_line_ending = 49, - sym__block_close = 50, - sym_block_continuation = 51, - sym__block_quote_start = 52, - sym_atx_h1_marker = 53, - sym_atx_h2_marker = 54, - sym_atx_h3_marker = 55, - sym_atx_h4_marker = 56, - sym_atx_h5_marker = 57, - sym_atx_h6_marker = 58, - sym__thematic_break = 59, - sym__list_marker_minus = 60, - sym__list_marker_plus = 61, - sym__list_marker_star = 62, - sym__list_marker_parenthesis = 63, - sym__list_marker_dot = 64, - sym__list_marker_minus_dont_interrupt = 65, - sym__list_marker_plus_dont_interrupt = 66, - sym__list_marker_star_dont_interrupt = 67, - sym__list_marker_parenthesis_dont_interrupt = 68, - sym__list_marker_dot_dont_interrupt = 69, - sym__list_marker_example = 70, - sym__list_marker_example_dont_interrupt = 71, - sym__fenced_code_block_start_backtick = 72, - sym__blank_line_start = 73, - sym__fenced_code_block_end_backtick = 74, - sym__close_block = 75, - sym__error = 76, - sym__trigger_error = 77, - sym__eof = 78, - sym_minus_metadata = 79, - sym__pipe_table_start = 80, - sym__pipe_table_line_ending = 81, - sym__fenced_div_start = 82, - sym__fenced_div_end = 83, - sym_ref_id_specifier = 84, - sym_fenced_div_note_id = 85, - sym__code_span_start = 86, - sym__code_span_close = 87, - sym__latex_span_start = 88, - sym__latex_span_close = 89, - sym__html_comment = 90, - sym_raw_specifier = 91, - sym__autolink = 92, - sym__language_specifier_token = 93, - sym__key_specifier_token = 94, - sym__value_specifier_token = 95, - sym__highlight_span_start = 96, - sym__insert_span_start = 97, - sym__delete_span_start = 98, - sym__edit_comment_span_start = 99, - sym__single_quote_span_open = 100, - sym__single_quote_span_close = 101, - sym__double_quote_span_open = 102, - sym__double_quote_span_close = 103, - sym__shortcode_open_escaped = 104, - sym__shortcode_close_escaped = 105, - sym__shortcode_open = 106, - sym__shortcode_close = 107, - sym__cite_author_in_text_with_open_bracket = 108, - sym__cite_suppress_author_with_open_bracket = 109, - sym__cite_author_in_text = 110, - sym__cite_suppress_author = 111, - sym__strikeout_open = 112, - sym__strikeout_close = 113, - sym__subscript_open = 114, - sym__subscript_close = 115, - sym__superscript_open = 116, - sym__superscript_close = 117, - sym__inline_note_start_token = 118, - sym__strong_emphasis_open_star = 119, - sym__strong_emphasis_close_star = 120, - sym__strong_emphasis_open_underscore = 121, - sym__strong_emphasis_close_underscore = 122, - sym__emphasis_open_star = 123, - sym__emphasis_close_star = 124, - sym__emphasis_open_underscore = 125, - sym__emphasis_close_underscore = 126, - sym_inline_note_reference = 127, - sym_html_element = 128, - sym__pipe_table_delimiter = 129, + 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_document = 130, sym__block = 131, sym__block_not_section = 132, @@ -253,48 +253,47 @@ enum ts_symbol_identifiers { sym__blank_line = 223, sym__newline = 224, sym__soft_line_break = 225, - sym_pandoc_line_break = 226, - sym__inline_whitespace = 227, - aux_sym_document_repeat1 = 228, - aux_sym_document_repeat2 = 229, - aux_sym__section1_repeat1 = 230, - aux_sym__section2_repeat1 = 231, - aux_sym__section3_repeat1 = 232, - aux_sym__section4_repeat1 = 233, - aux_sym__section5_repeat1 = 234, - aux_sym_pipe_table_repeat1 = 235, - aux_sym_pipe_table_delimiter_row_repeat1 = 236, - aux_sym_pipe_table_delimiter_cell_repeat1 = 237, - aux_sym_pipe_table_row_repeat1 = 238, - aux_sym__inlines_repeat1 = 239, - aux_sym_target_repeat1 = 240, - aux_sym_pandoc_code_span_repeat1 = 241, - aux_sym__commonmark_specifier_start_with_class_repeat1 = 242, - aux_sym__commonmark_specifier_start_with_kv_repeat1 = 243, - aux_sym__commonmark_single_quote_string_repeat1 = 244, - aux_sym__commonmark_double_quote_string_repeat1 = 245, - aux_sym__line_repeat1 = 246, - aux_sym__line_with_maybe_spaces_repeat1 = 247, - aux_sym_shortcode_escaped_repeat1 = 248, - aux_sym_shortcode_escaped_repeat2 = 249, - aux_sym_shortcode_repeat1 = 250, - aux_sym_pandoc_block_quote_repeat1 = 251, - aux_sym__list_plus_repeat1 = 252, - aux_sym__list_minus_repeat1 = 253, - aux_sym__list_star_repeat1 = 254, - aux_sym__list_dot_repeat1 = 255, - aux_sym__list_parenthesis_repeat1 = 256, - aux_sym__list_example_repeat1 = 257, - aux_sym_code_fence_content_repeat1 = 258, - alias_sym_citation_id_suppress_author = 259, - alias_sym_content = 260, - alias_sym_pandoc_soft_break = 261, - alias_sym_pandoc_space = 262, - alias_sym_pipe_table_align_left = 263, - alias_sym_pipe_table_align_right = 264, - alias_sym_pipe_table_header = 265, - alias_sym_title = 266, - alias_sym_url = 267, + sym__inline_whitespace = 226, + aux_sym_document_repeat1 = 227, + aux_sym_document_repeat2 = 228, + aux_sym__section1_repeat1 = 229, + aux_sym__section2_repeat1 = 230, + aux_sym__section3_repeat1 = 231, + aux_sym__section4_repeat1 = 232, + aux_sym__section5_repeat1 = 233, + aux_sym_pipe_table_repeat1 = 234, + aux_sym_pipe_table_delimiter_row_repeat1 = 235, + aux_sym_pipe_table_delimiter_cell_repeat1 = 236, + aux_sym_pipe_table_row_repeat1 = 237, + aux_sym__inlines_repeat1 = 238, + aux_sym_target_repeat1 = 239, + aux_sym_pandoc_code_span_repeat1 = 240, + aux_sym__commonmark_specifier_start_with_class_repeat1 = 241, + aux_sym__commonmark_specifier_start_with_kv_repeat1 = 242, + aux_sym__commonmark_single_quote_string_repeat1 = 243, + aux_sym__commonmark_double_quote_string_repeat1 = 244, + aux_sym__line_repeat1 = 245, + aux_sym__line_with_maybe_spaces_repeat1 = 246, + aux_sym_shortcode_escaped_repeat1 = 247, + aux_sym_shortcode_escaped_repeat2 = 248, + aux_sym_shortcode_repeat1 = 249, + aux_sym_pandoc_block_quote_repeat1 = 250, + aux_sym__list_plus_repeat1 = 251, + aux_sym__list_minus_repeat1 = 252, + aux_sym__list_star_repeat1 = 253, + aux_sym__list_dot_repeat1 = 254, + aux_sym__list_parenthesis_repeat1 = 255, + aux_sym__list_example_repeat1 = 256, + aux_sym_code_fence_content_repeat1 = 257, + alias_sym_citation_id_suppress_author = 258, + alias_sym_content = 259, + alias_sym_pandoc_soft_break = 260, + alias_sym_pandoc_space = 261, + alias_sym_pipe_table_align_left = 262, + alias_sym_pipe_table_align_right = 263, + alias_sym_pipe_table_header = 264, + alias_sym_title = 265, + alias_sym_url = 266, }; static const char * const ts_symbol_names[] = { @@ -344,7 +343,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_PIPE] = "|", [aux_sym__prose_punctuation_token1] = "pandoc_str", [sym__code_line] = "_code_line", - [aux_sym_pandoc_line_break_token1] = "pandoc_line_break_token1", [sym__whitespace] = "_whitespace", [sym__line_ending] = "_line_ending", [sym__soft_line_ending] = "_soft_line_ending", @@ -428,6 +426,7 @@ static const char * const ts_symbol_names[] = { [sym_inline_note_reference] = "inline_note_reference", [sym_html_element] = "html_element", [sym__pipe_table_delimiter] = "_pipe_table_delimiter", + [sym__pandoc_line_break] = "pandoc_line_break", [sym_document] = "document", [sym__block] = "_block", [sym__block_not_section] = "_block_not_section", @@ -524,7 +523,6 @@ static const char * const ts_symbol_names[] = { [sym__blank_line] = "_blank_line", [sym__newline] = "_newline", [sym__soft_line_break] = "_soft_line_break", - [sym_pandoc_line_break] = "pandoc_line_break", [sym__inline_whitespace] = "_inline_whitespace", [aux_sym_document_repeat1] = "document_repeat1", [aux_sym_document_repeat2] = "document_repeat2", @@ -615,7 +613,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_PIPE] = anon_sym_PIPE, [aux_sym__prose_punctuation_token1] = sym_pandoc_str, [sym__code_line] = sym__code_line, - [aux_sym_pandoc_line_break_token1] = aux_sym_pandoc_line_break_token1, [sym__whitespace] = sym__whitespace, [sym__line_ending] = sym__line_ending, [sym__soft_line_ending] = sym__soft_line_ending, @@ -699,6 +696,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_inline_note_reference] = sym_inline_note_reference, [sym_html_element] = sym_html_element, [sym__pipe_table_delimiter] = sym__pipe_table_delimiter, + [sym__pandoc_line_break] = sym__pandoc_line_break, [sym_document] = sym_document, [sym__block] = sym__block, [sym__block_not_section] = sym__block_not_section, @@ -795,7 +793,6 @@ static const TSSymbol ts_symbol_map[] = { [sym__blank_line] = sym__blank_line, [sym__newline] = sym__newline, [sym__soft_line_break] = sym__soft_line_break, - [sym_pandoc_line_break] = sym_pandoc_line_break, [sym__inline_whitespace] = sym__inline_whitespace, [aux_sym_document_repeat1] = aux_sym_document_repeat1, [aux_sym_document_repeat2] = aux_sym_document_repeat2, @@ -1024,10 +1021,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [aux_sym_pandoc_line_break_token1] = { - .visible = false, - .named = false, - }, [sym__whitespace] = { .visible = false, .named = true, @@ -1360,6 +1353,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__pandoc_line_break] = { + .visible = true, + .named = true, + }, [sym_document] = { .visible = true, .named = true, @@ -1744,10 +1741,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_pandoc_line_break] = { - .visible = true, - .named = true, - }, [sym__inline_whitespace] = { .visible = false, .named = true, @@ -2093,368 +2086,368 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 2, + [6] = 6, [7] = 7, - [8] = 8, - [9] = 7, + [8] = 2, + [9] = 3, [10] = 4, - [11] = 3, - [12] = 8, - [13] = 5, + [11] = 5, + [12] = 7, + [13] = 6, [14] = 2, - [15] = 7, + [15] = 3, [16] = 4, - [17] = 3, - [18] = 8, - [19] = 5, + [17] = 5, + [18] = 6, + [19] = 7, [20] = 20, [21] = 21, [22] = 22, - [23] = 22, + [23] = 23, [24] = 24, - [25] = 25, + [25] = 21, [26] = 26, - [27] = 21, - [28] = 20, - [29] = 24, - [30] = 25, - [31] = 26, - [32] = 21, + [27] = 20, + [28] = 22, + [29] = 23, + [30] = 24, + [31] = 21, + [32] = 26, [33] = 20, [34] = 22, - [35] = 24, - [36] = 25, + [35] = 23, + [36] = 24, [37] = 26, [38] = 38, [39] = 39, [40] = 40, - [41] = 38, + [41] = 40, [42] = 42, [43] = 43, [44] = 44, [45] = 45, [46] = 46, - [47] = 40, - [48] = 42, - [49] = 44, - [50] = 45, - [51] = 46, - [52] = 38, - [53] = 40, - [54] = 42, - [55] = 43, - [56] = 44, - [57] = 45, - [58] = 46, - [59] = 43, + [47] = 38, + [48] = 40, + [49] = 42, + [50] = 43, + [51] = 44, + [52] = 45, + [53] = 46, + [54] = 38, + [55] = 42, + [56] = 43, + [57] = 44, + [58] = 45, + [59] = 46, [60] = 60, [61] = 61, [62] = 62, [63] = 63, - [64] = 39, - [65] = 65, - [66] = 60, - [67] = 65, - [68] = 61, + [64] = 64, + [65] = 60, + [66] = 61, + [67] = 39, + [68] = 60, [69] = 69, - [70] = 70, - [71] = 60, - [72] = 61, - [73] = 65, + [70] = 61, + [71] = 71, + [72] = 71, + [73] = 71, [74] = 74, [75] = 75, [76] = 76, - [77] = 74, - [78] = 75, - [79] = 76, - [80] = 74, - [81] = 75, + [77] = 75, + [78] = 74, + [79] = 75, + [80] = 76, + [81] = 74, [82] = 76, [83] = 83, [84] = 84, [85] = 85, - [86] = 85, + [86] = 83, [87] = 85, [88] = 83, [89] = 84, - [90] = 84, - [91] = 83, + [90] = 85, + [91] = 84, [92] = 92, [93] = 93, [94] = 94, [95] = 92, - [96] = 92, + [96] = 94, [97] = 93, - [98] = 94, + [98] = 92, [99] = 94, [100] = 93, [101] = 101, [102] = 102, [103] = 103, - [104] = 101, + [104] = 102, [105] = 101, [106] = 102, - [107] = 103, + [107] = 101, [108] = 103, - [109] = 102, + [109] = 103, [110] = 110, [111] = 111, [112] = 112, - [113] = 110, - [114] = 112, - [115] = 110, - [116] = 112, + [113] = 112, + [114] = 110, + [115] = 112, + [116] = 111, [117] = 111, - [118] = 111, + [118] = 110, [119] = 119, [120] = 120, [121] = 121, - [122] = 119, - [123] = 121, - [124] = 120, - [125] = 120, - [126] = 121, - [127] = 119, + [122] = 120, + [123] = 120, + [124] = 121, + [125] = 119, + [126] = 119, + [127] = 121, [128] = 128, - [129] = 128, - [130] = 130, - [131] = 130, + [129] = 129, + [130] = 128, + [131] = 129, [132] = 128, - [133] = 130, + [133] = 129, [134] = 134, [135] = 135, - [136] = 135, + [136] = 136, [137] = 137, - [138] = 137, - [139] = 135, - [140] = 137, - [141] = 135, - [142] = 135, - [143] = 137, - [144] = 135, - [145] = 137, + [138] = 138, + [139] = 139, + [140] = 135, + [141] = 141, + [142] = 142, + [143] = 143, + [144] = 144, + [145] = 139, [146] = 135, - [147] = 137, + [147] = 139, [148] = 135, - [149] = 137, + [149] = 139, [150] = 135, - [151] = 137, + [151] = 139, [152] = 135, - [153] = 137, + [153] = 139, [154] = 135, - [155] = 137, + [155] = 135, [156] = 135, - [157] = 137, + [157] = 139, [158] = 135, - [159] = 137, + [159] = 139, [160] = 135, - [161] = 137, + [161] = 139, [162] = 135, - [163] = 137, + [163] = 139, [164] = 135, - [165] = 137, - [166] = 137, - [167] = 167, - [168] = 168, - [169] = 169, - [170] = 170, + [165] = 139, + [166] = 135, + [167] = 139, + [168] = 135, + [169] = 139, + [170] = 135, [171] = 171, [172] = 172, [173] = 173, [174] = 174, - [175] = 175, + [175] = 139, [176] = 176, - [177] = 177, - [178] = 178, - [179] = 179, - [180] = 180, - [181] = 181, - [182] = 182, + [177] = 139, + [178] = 139, + [179] = 137, + [180] = 176, + [181] = 143, + [182] = 144, [183] = 183, [184] = 184, [185] = 185, - [186] = 186, + [186] = 171, [187] = 187, - [188] = 188, - [189] = 189, - [190] = 190, - [191] = 188, - [192] = 192, - [193] = 193, + [188] = 144, + [189] = 171, + [190] = 172, + [191] = 173, + [192] = 174, + [193] = 142, [194] = 194, - [195] = 195, + [195] = 174, [196] = 196, [197] = 197, - [198] = 195, - [199] = 196, - [200] = 194, - [201] = 195, - [202] = 196, - [203] = 197, - [204] = 197, - [205] = 182, - [206] = 194, - [207] = 195, - [208] = 196, - [209] = 197, - [210] = 183, - [211] = 167, - [212] = 194, - [213] = 195, - [214] = 196, - [215] = 197, - [216] = 169, - [217] = 217, - [218] = 194, - [219] = 195, - [220] = 196, - [221] = 197, + [198] = 198, + [199] = 136, + [200] = 176, + [201] = 172, + [202] = 173, + [203] = 137, + [204] = 136, + [205] = 205, + [206] = 138, + [207] = 141, + [208] = 138, + [209] = 141, + [210] = 142, + [211] = 143, + [212] = 212, + [213] = 213, + [214] = 214, + [215] = 215, + [216] = 216, + [217] = 215, + [218] = 218, + [219] = 219, + [220] = 214, + [221] = 221, [222] = 222, - [223] = 223, - [224] = 194, - [225] = 195, - [226] = 196, - [227] = 197, - [228] = 184, - [229] = 179, - [230] = 194, - [231] = 195, - [232] = 196, - [233] = 197, - [234] = 193, - [235] = 180, - [236] = 194, - [237] = 195, - [238] = 196, - [239] = 197, - [240] = 181, - [241] = 190, - [242] = 194, - [243] = 195, - [244] = 196, - [245] = 197, - [246] = 190, - [247] = 194, - [248] = 194, - [249] = 195, - [250] = 196, - [251] = 197, - [252] = 195, - [253] = 196, - [254] = 194, - [255] = 195, - [256] = 196, - [257] = 197, - [258] = 197, - [259] = 178, - [260] = 194, - [261] = 195, - [262] = 196, - [263] = 197, - [264] = 194, - [265] = 183, - [266] = 194, - [267] = 195, - [268] = 196, - [269] = 197, - [270] = 184, - [271] = 192, - [272] = 217, - [273] = 222, - [274] = 223, - [275] = 189, - [276] = 178, - [277] = 167, - [278] = 170, - [279] = 169, - [280] = 170, - [281] = 281, - [282] = 194, - [283] = 189, - [284] = 192, - [285] = 193, - [286] = 217, - [287] = 222, - [288] = 223, - [289] = 197, - [290] = 179, - [291] = 180, - [292] = 181, - [293] = 195, - [294] = 196, - [295] = 188, - [296] = 281, - [297] = 281, - [298] = 182, - [299] = 299, - [300] = 172, - [301] = 173, - [302] = 174, - [303] = 303, - [304] = 304, - [305] = 305, - [306] = 306, - [307] = 175, - [308] = 308, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 312, - [313] = 313, - [314] = 314, - [315] = 315, - [316] = 316, - [317] = 317, + [223] = 216, + [224] = 222, + [225] = 225, + [226] = 226, + [227] = 227, + [228] = 228, + [229] = 229, + [230] = 225, + [231] = 231, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [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, [318] = 318, - [319] = 299, + [319] = 319, [320] = 320, [321] = 321, [322] = 322, - [323] = 299, - [324] = 171, - [325] = 176, - [326] = 177, - [327] = 185, - [328] = 168, - [329] = 186, - [330] = 187, - [331] = 299, - [332] = 299, - [333] = 299, - [334] = 299, - [335] = 299, - [336] = 299, - [337] = 299, - [338] = 299, - [339] = 299, - [340] = 299, - [341] = 299, - [342] = 299, - [343] = 299, + [323] = 323, + [324] = 324, + [325] = 325, + [326] = 326, + [327] = 327, + [328] = 328, + [329] = 329, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, + [335] = 335, + [336] = 336, + [337] = 337, + [338] = 338, + [339] = 339, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 343, [344] = 344, - [345] = 315, + [345] = 345, [346] = 346, [347] = 347, [348] = 348, - [349] = 313, - [350] = 314, - [351] = 308, - [352] = 309, - [353] = 353, - [354] = 310, - [355] = 355, - [356] = 356, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 239, + [353] = 240, + [354] = 241, + [355] = 242, + [356] = 243, [357] = 357, - [358] = 358, - [359] = 359, + [358] = 183, + [359] = 184, [360] = 360, - [361] = 361, - [362] = 362, - [363] = 311, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 367, + [361] = 244, + [362] = 198, + [363] = 246, + [364] = 185, + [365] = 194, + [366] = 187, + [367] = 229, [368] = 368, [369] = 369, [370] = 370, @@ -2465,23 +2458,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [375] = 375, [376] = 376, [377] = 377, - [378] = 378, + [378] = 231, [379] = 379, [380] = 380, - [381] = 381, + [381] = 212, [382] = 382, [383] = 383, [384] = 384, - [385] = 385, - [386] = 386, + [385] = 232, + [386] = 233, [387] = 387, [388] = 388, - [389] = 389, - [390] = 390, + [389] = 236, + [390] = 237, [391] = 391, - [392] = 392, + [392] = 232, [393] = 393, - [394] = 394, + [394] = 205, [395] = 395, [396] = 396, [397] = 397, @@ -2490,484 +2483,484 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [400] = 400, [401] = 401, [402] = 402, - [403] = 403, - [404] = 404, - [405] = 405, - [406] = 406, - [407] = 357, - [408] = 361, - [409] = 409, - [410] = 321, - [411] = 357, - [412] = 361, - [413] = 322, - [414] = 414, + [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] = 403, - [417] = 402, + [416] = 246, + [417] = 239, [418] = 418, - [419] = 357, - [420] = 361, - [421] = 404, + [419] = 419, + [420] = 420, + [421] = 240, [422] = 422, - [423] = 423, - [424] = 357, - [425] = 361, - [426] = 303, - [427] = 357, - [428] = 361, - [429] = 357, - [430] = 361, - [431] = 357, - [432] = 361, - [433] = 305, - [434] = 357, - [435] = 361, - [436] = 357, - [437] = 361, - [438] = 357, - [439] = 361, - [440] = 305, - [441] = 312, - [442] = 357, - [443] = 361, - [444] = 444, - [445] = 445, - [446] = 315, - [447] = 357, - [448] = 361, - [449] = 449, - [450] = 406, - [451] = 357, - [452] = 361, + [423] = 241, + [424] = 350, + [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] = 316, - [455] = 308, - [456] = 309, - [457] = 357, - [458] = 361, - [459] = 310, - [460] = 311, - [461] = 312, - [462] = 313, - [463] = 314, - [464] = 357, - [465] = 361, - [466] = 466, - [467] = 355, - [468] = 317, - [469] = 316, - [470] = 317, - [471] = 471, - [472] = 318, - [473] = 344, - [474] = 320, - [475] = 318, - [476] = 344, - [477] = 320, - [478] = 322, - [479] = 479, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 321, - [488] = 303, - [489] = 365, - [490] = 386, - [491] = 386, - [492] = 387, - [493] = 388, - [494] = 389, - [495] = 449, - [496] = 390, - [497] = 391, - [498] = 392, - [499] = 393, - [500] = 394, - [501] = 395, - [502] = 396, - [503] = 380, - [504] = 387, - [505] = 388, - [506] = 389, - [507] = 356, - [508] = 373, - [509] = 453, - [510] = 374, - [511] = 466, - [512] = 480, - [513] = 347, - [514] = 471, - [515] = 360, - [516] = 375, - [517] = 353, - [518] = 444, - [519] = 399, - [520] = 404, - [521] = 390, - [522] = 402, - [523] = 353, - [524] = 401, - [525] = 358, - [526] = 391, - [527] = 362, - [528] = 392, - [529] = 402, - [530] = 379, - [531] = 367, - [532] = 399, - [533] = 401, - [534] = 393, - [535] = 365, - [536] = 364, - [537] = 394, - [538] = 367, - [539] = 369, - [540] = 371, - [541] = 398, - [542] = 400, - [543] = 418, - [544] = 395, - [545] = 403, - [546] = 369, - [547] = 371, - [548] = 444, - [549] = 398, - [550] = 445, - [551] = 366, - [552] = 359, - [553] = 400, - [554] = 449, - [555] = 479, - [556] = 453, - [557] = 402, - [558] = 466, - [559] = 403, - [560] = 404, - [561] = 418, - [562] = 480, - [563] = 471, - [564] = 403, - [565] = 481, - [566] = 482, - [567] = 402, - [568] = 403, - [569] = 483, - [570] = 484, - [571] = 485, - [572] = 486, - [573] = 346, - [574] = 479, - [575] = 404, - [576] = 402, - [577] = 403, - [578] = 404, - [579] = 481, - [580] = 482, - [581] = 483, - [582] = 484, - [583] = 368, - [584] = 402, - [585] = 485, - [586] = 486, - [587] = 346, - [588] = 403, - [589] = 404, - [590] = 402, - [591] = 403, - [592] = 404, - [593] = 306, - [594] = 348, - [595] = 370, - [596] = 348, - [597] = 402, - [598] = 396, - [599] = 403, - [600] = 404, - [601] = 304, - [602] = 404, - [603] = 402, - [604] = 403, - [605] = 404, - [606] = 402, - [607] = 403, - [608] = 404, - [609] = 402, - [610] = 403, - [611] = 356, - [612] = 404, - [613] = 372, - [614] = 397, - [615] = 381, - [616] = 358, - [617] = 376, - [618] = 359, - [619] = 360, - [620] = 377, - [621] = 362, - [622] = 382, - [623] = 364, - [624] = 445, - [625] = 378, - [626] = 366, - [627] = 368, - [628] = 370, - [629] = 379, - [630] = 372, - [631] = 373, - [632] = 374, - [633] = 375, - [634] = 376, - [635] = 380, - [636] = 381, - [637] = 382, - [638] = 383, - [639] = 384, - [640] = 385, - [641] = 383, - [642] = 384, - [643] = 385, - [644] = 377, - [645] = 378, - [646] = 397, + [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] = 647, + [648] = 648, [649] = 647, - [650] = 650, - [651] = 651, - [652] = 650, + [650] = 648, + [651] = 647, + [652] = 652, [653] = 653, - [654] = 647, - [655] = 655, + [654] = 652, + [655] = 653, [656] = 656, - [657] = 651, - [658] = 655, - [659] = 656, - [660] = 650, - [661] = 650, - [662] = 653, - [663] = 651, - [664] = 655, - [665] = 306, - [666] = 656, + [657] = 657, + [658] = 648, + [659] = 647, + [660] = 656, + [661] = 652, + [662] = 656, + [663] = 657, + [664] = 648, + [665] = 647, + [666] = 652, [667] = 653, - [668] = 647, - [669] = 653, - [670] = 647, - [671] = 651, - [672] = 655, - [673] = 656, - [674] = 650, - [675] = 653, - [676] = 647, - [677] = 650, - [678] = 647, - [679] = 651, - [680] = 655, + [668] = 653, + [669] = 657, + [670] = 656, + [671] = 657, + [672] = 648, + [673] = 647, + [674] = 648, + [675] = 647, + [676] = 652, + [677] = 653, + [678] = 652, + [679] = 653, + [680] = 652, [681] = 653, - [682] = 647, - [683] = 656, - [684] = 650, - [685] = 651, - [686] = 655, - [687] = 656, - [688] = 650, - [689] = 651, - [690] = 655, - [691] = 656, - [692] = 650, - [693] = 653, - [694] = 647, + [682] = 652, + [683] = 652, + [684] = 656, + [685] = 657, + [686] = 648, + [687] = 653, + [688] = 648, + [689] = 656, + [690] = 647, + [691] = 653, + [692] = 401, + [693] = 657, + [694] = 652, [695] = 653, - [696] = 647, - [697] = 653, - [698] = 650, - [699] = 653, - [700] = 655, - [701] = 656, - [702] = 650, - [703] = 703, - [704] = 651, - [705] = 651, - [706] = 655, - [707] = 703, - [708] = 651, - [709] = 655, - [710] = 656, - [711] = 650, - [712] = 655, - [713] = 653, - [714] = 653, + [696] = 648, + [697] = 656, + [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] = 656, + [717] = 653, [718] = 653, - [719] = 647, - [720] = 653, - [721] = 651, - [722] = 647, - [723] = 655, - [724] = 651, - [725] = 655, + [719] = 652, + [720] = 656, + [721] = 657, + [722] = 653, + [723] = 648, + [724] = 647, + [725] = 711, [726] = 656, - [727] = 650, - [728] = 656, - [729] = 656, - [730] = 650, - [731] = 653, - [732] = 651, - [733] = 655, - [734] = 656, - [735] = 703, - [736] = 651, - [737] = 655, - [738] = 656, - [739] = 650, - [740] = 653, - [741] = 647, - [742] = 304, - [743] = 650, - [744] = 651, - [745] = 655, - [746] = 656, - [747] = 651, + [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] = 749, + [749] = 748, [750] = 750, - [751] = 751, - [752] = 748, + [751] = 750, + [752] = 750, [753] = 753, [754] = 754, - [755] = 755, + [755] = 750, [756] = 756, [757] = 757, [758] = 758, - [759] = 749, - [760] = 753, + [759] = 748, + [760] = 760, [761] = 753, - [762] = 753, - [763] = 750, + [762] = 760, + [763] = 763, [764] = 756, [765] = 757, - [766] = 751, + [766] = 758, [767] = 748, - [768] = 755, - [769] = 749, - [770] = 750, - [771] = 756, - [772] = 757, - [773] = 751, - [774] = 748, - [775] = 754, - [776] = 755, - [777] = 749, - [778] = 750, - [779] = 756, - [780] = 757, - [781] = 751, - [782] = 748, - [783] = 754, - [784] = 755, - [785] = 749, - [786] = 750, - [787] = 756, - [788] = 757, - [789] = 751, - [790] = 748, - [791] = 754, - [792] = 755, - [793] = 749, - [794] = 750, - [795] = 756, - [796] = 757, - [797] = 751, - [798] = 748, - [799] = 754, - [800] = 755, - [801] = 749, - [802] = 750, - [803] = 756, - [804] = 757, - [805] = 751, - [806] = 748, - [807] = 754, - [808] = 755, - [809] = 749, - [810] = 750, - [811] = 756, - [812] = 757, - [813] = 751, - [814] = 748, - [815] = 754, - [816] = 755, - [817] = 749, - [818] = 750, - [819] = 756, - [820] = 757, - [821] = 751, - [822] = 748, - [823] = 754, - [824] = 755, - [825] = 749, - [826] = 750, - [827] = 756, - [828] = 757, - [829] = 751, - [830] = 748, - [831] = 754, - [832] = 755, - [833] = 749, - [834] = 750, - [835] = 756, - [836] = 757, - [837] = 751, - [838] = 748, - [839] = 754, - [840] = 755, - [841] = 749, - [842] = 750, - [843] = 756, - [844] = 757, - [845] = 751, - [846] = 748, - [847] = 754, - [848] = 755, - [849] = 749, - [850] = 750, - [851] = 756, - [852] = 757, - [853] = 751, - [854] = 748, - [855] = 754, - [856] = 755, - [857] = 749, - [858] = 750, - [859] = 756, - [860] = 757, - [861] = 751, - [862] = 748, - [863] = 754, - [864] = 755, - [865] = 749, - [866] = 750, - [867] = 756, - [868] = 757, - [869] = 751, - [870] = 754, - [871] = 755, - [872] = 749, - [873] = 750, - [874] = 756, - [875] = 757, - [876] = 751, - [877] = 748, - [878] = 754, - [879] = 755, - [880] = 754, + [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, @@ -3000,9 +2993,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [910] = 910, [911] = 911, [912] = 912, - [913] = 321, - [914] = 907, - [915] = 915, + [913] = 913, + [914] = 914, + [915] = 907, [916] = 916, [917] = 917, [918] = 918, @@ -3023,3138 +3016,3074 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [933] = 933, [934] = 934, [935] = 935, - [936] = 925, - [937] = 937, - [938] = 938, - [939] = 930, - [940] = 940, - [941] = 941, - [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 957, - [958] = 958, - [959] = 321, - [960] = 960, - [961] = 961, - [962] = 962, + [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, [963] = 963, [964] = 964, - [965] = 399, - [966] = 917, - [967] = 919, - [968] = 930, - [969] = 910, + [965] = 965, + [966] = 966, + [967] = 967, + [968] = 968, + [969] = 969, [970] = 970, [971] = 971, - [972] = 929, - [973] = 912, - [974] = 921, - [975] = 919, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 975, [976] = 976, - [977] = 922, + [977] = 977, [978] = 978, - [979] = 321, - [980] = 909, - [981] = 933, - [982] = 915, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 982, [983] = 983, - [984] = 916, - [985] = 920, + [984] = 984, + [985] = 985, [986] = 986, [987] = 987, [988] = 988, [989] = 989, - [990] = 923, - [991] = 991, - [992] = 934, + [990] = 990, + [991] = 910, + [992] = 992, [993] = 993, [994] = 994, [995] = 995, - [996] = 922, - [997] = 932, + [996] = 996, + [997] = 997, [998] = 998, [999] = 999, - [1000] = 935, + [1000] = 1000, [1001] = 1001, - [1002] = 911, + [1002] = 1002, [1003] = 1003, [1004] = 1004, [1005] = 1005, [1006] = 1006, [1007] = 1007, [1008] = 1008, - [1009] = 918, - [1010] = 924, - [1011] = 925, - [1012] = 926, - [1013] = 927, + [1009] = 1009, + [1010] = 1010, + [1011] = 1011, + [1012] = 1012, + [1013] = 1013, [1014] = 1014, - [1015] = 928, + [1015] = 1015, [1016] = 1016, - [1017] = 908, - [1018] = 932, - [1019] = 909, - [1020] = 920, + [1017] = 1017, + [1018] = 1018, + [1019] = 1019, + [1020] = 1020, [1021] = 1021, - [1022] = 917, - [1023] = 1023, - [1024] = 931, - [1025] = 1025, - [1026] = 923, - [1027] = 934, - [1028] = 935, - [1029] = 911, - [1030] = 915, - [1031] = 916, - [1032] = 918, - [1033] = 924, - [1034] = 1034, - [1035] = 1035, - [1036] = 1036, - [1037] = 926, - [1038] = 1038, - [1039] = 1039, - [1040] = 927, - [1041] = 928, - [1042] = 908, - [1043] = 1043, - [1044] = 931, - [1045] = 910, - [1046] = 929, - [1047] = 912, - [1048] = 921, - [1049] = 1049, - [1050] = 1050, - [1051] = 1051, - [1052] = 1016, - [1053] = 956, - [1054] = 1054, - [1055] = 923, - [1056] = 934, - [1057] = 935, - [1058] = 911, - [1059] = 915, - [1060] = 916, - [1061] = 978, - [1062] = 918, - [1063] = 924, - [1064] = 925, - [1065] = 926, - [1066] = 927, - [1067] = 928, - [1068] = 908, - [1069] = 931, - [1070] = 910, - [1071] = 929, - [1072] = 912, - [1073] = 921, - [1074] = 922, - [1075] = 983, - [1076] = 932, - [1077] = 909, - [1078] = 920, - [1079] = 917, - [1080] = 919, - [1081] = 930, - [1082] = 321, - [1083] = 950, - [1084] = 923, - [1085] = 934, - [1086] = 935, - [1087] = 911, - [1088] = 915, - [1089] = 916, - [1090] = 1090, - [1091] = 918, - [1092] = 924, - [1093] = 925, - [1094] = 926, - [1095] = 927, - [1096] = 928, - [1097] = 908, - [1098] = 931, - [1099] = 910, - [1100] = 929, - [1101] = 912, - [1102] = 921, - [1103] = 922, - [1104] = 932, + [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, + [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] = 920, + [1106] = 913, [1107] = 917, - [1108] = 919, - [1109] = 930, - [1110] = 321, - [1111] = 946, - [1112] = 923, - [1113] = 934, - [1114] = 935, - [1115] = 911, - [1116] = 915, - [1117] = 916, - [1118] = 918, - [1119] = 924, - [1120] = 925, - [1121] = 926, - [1122] = 927, - [1123] = 928, - [1124] = 908, - [1125] = 931, - [1126] = 910, - [1127] = 929, - [1128] = 912, - [1129] = 921, - [1130] = 922, - [1131] = 932, - [1132] = 909, - [1133] = 920, - [1134] = 917, - [1135] = 919, - [1136] = 930, - [1137] = 321, - [1138] = 923, - [1139] = 934, - [1140] = 935, - [1141] = 911, - [1142] = 915, - [1143] = 916, - [1144] = 932, - [1145] = 918, - [1146] = 924, - [1147] = 925, - [1148] = 926, - [1149] = 927, - [1150] = 928, - [1151] = 908, - [1152] = 931, - [1153] = 910, - [1154] = 929, - [1155] = 912, - [1156] = 921, - [1157] = 922, - [1158] = 932, - [1159] = 909, - [1160] = 920, - [1161] = 917, - [1162] = 919, - [1163] = 930, - [1164] = 321, - [1165] = 923, - [1166] = 934, - [1167] = 935, - [1168] = 911, - [1169] = 915, - [1170] = 916, - [1171] = 909, - [1172] = 918, - [1173] = 924, - [1174] = 925, - [1175] = 926, - [1176] = 927, - [1177] = 928, - [1178] = 908, - [1179] = 931, - [1180] = 910, - [1181] = 929, - [1182] = 912, - [1183] = 921, - [1184] = 922, - [1185] = 932, - [1186] = 909, - [1187] = 920, - [1188] = 917, - [1189] = 919, - [1190] = 930, - [1191] = 321, - [1192] = 923, - [1193] = 934, - [1194] = 935, - [1195] = 911, - [1196] = 915, - [1197] = 916, - [1198] = 920, - [1199] = 918, - [1200] = 924, - [1201] = 925, - [1202] = 926, - [1203] = 927, - [1204] = 928, - [1205] = 908, - [1206] = 931, - [1207] = 910, - [1208] = 929, - [1209] = 912, - [1210] = 921, - [1211] = 922, - [1212] = 932, - [1213] = 909, - [1214] = 920, - [1215] = 917, - [1216] = 919, - [1217] = 930, - [1218] = 321, - [1219] = 923, - [1220] = 934, - [1221] = 935, + [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, + [1127] = 928, + [1128] = 922, + [1129] = 923, + [1130] = 924, + [1131] = 925, + [1132] = 926, + [1133] = 927, + [1134] = 928, + [1135] = 929, + [1136] = 908, + [1137] = 916, + [1138] = 931, + [1139] = 929, + [1140] = 908, + [1141] = 932, + [1142] = 931, + [1143] = 932, + [1144] = 933, + [1145] = 934, + [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, + [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] = 915, - [1224] = 916, - [1225] = 917, - [1226] = 918, - [1227] = 924, - [1228] = 925, - [1229] = 926, - [1230] = 927, - [1231] = 928, - [1232] = 908, - [1233] = 931, - [1234] = 910, - [1235] = 929, - [1236] = 912, - [1237] = 921, - [1238] = 922, - [1239] = 1239, - [1240] = 932, - [1241] = 909, - [1242] = 920, - [1243] = 917, - [1244] = 919, - [1245] = 930, - [1246] = 321, - [1247] = 978, - [1248] = 995, - [1249] = 1003, - [1250] = 1006, - [1251] = 1039, - [1252] = 919, - [1253] = 944, - [1254] = 983, - [1255] = 930, - [1256] = 987, - [1257] = 961, - [1258] = 947, - [1259] = 1051, - [1260] = 1004, - [1261] = 987, - [1262] = 953, - [1263] = 962, - [1264] = 989, - [1265] = 998, - [1266] = 1007, - [1267] = 1016, - [1268] = 1025, - [1269] = 1034, - [1270] = 1036, - [1271] = 1043, - [1272] = 1049, - [1273] = 1035, - [1274] = 988, - [1275] = 991, - [1276] = 999, - [1277] = 1001, - [1278] = 1005, - [1279] = 948, - [1280] = 1008, - [1281] = 1023, - [1282] = 986, - [1283] = 994, - [1284] = 940, - [1285] = 957, - [1286] = 963, - [1287] = 958, - [1288] = 964, - [1289] = 970, - [1290] = 971, - [1291] = 1291, - [1292] = 976, - [1293] = 993, - [1294] = 1014, - [1295] = 1038, - [1296] = 930, - [1297] = 937, - [1298] = 938, - [1299] = 960, - [1300] = 941, - [1301] = 942, - [1302] = 943, - [1303] = 945, - [1304] = 946, - [1305] = 961, - [1306] = 947, - [1307] = 948, - [1308] = 963, - [1309] = 949, - [1310] = 321, - [1311] = 950, - [1312] = 951, - [1313] = 952, - [1314] = 954, - [1315] = 955, - [1316] = 956, - [1317] = 321, - [1318] = 949, - [1319] = 944, - [1320] = 1051, - [1321] = 1004, - [1322] = 995, - [1323] = 1003, - [1324] = 999, - [1325] = 1001, - [1326] = 1005, - [1327] = 953, - [1328] = 1008, - [1329] = 1023, - [1330] = 962, - [1331] = 986, - [1332] = 994, - [1333] = 989, - [1334] = 940, - [1335] = 957, - [1336] = 998, - [1337] = 958, - [1338] = 1007, - [1339] = 964, - [1340] = 970, - [1341] = 971, - [1342] = 1006, - [1343] = 976, - [1344] = 993, - [1345] = 1025, - [1346] = 1034, - [1347] = 923, - [1348] = 934, - [1349] = 935, - [1350] = 911, - [1351] = 321, - [1352] = 923, - [1353] = 934, - [1354] = 935, - [1355] = 911, - [1356] = 321, - [1357] = 399, - [1358] = 915, - [1359] = 916, - [1360] = 915, - [1361] = 916, - [1362] = 1036, - [1363] = 1043, - [1364] = 1049, - [1365] = 1039, - [1366] = 1035, - [1367] = 988, - [1368] = 991, - [1369] = 952, - [1370] = 954, - [1371] = 918, - [1372] = 924, - [1373] = 925, - [1374] = 926, - [1375] = 927, - [1376] = 928, - [1377] = 908, - [1378] = 931, - [1379] = 910, - [1380] = 929, - [1381] = 912, - [1382] = 921, - [1383] = 922, - [1384] = 1014, - [1385] = 1038, - [1386] = 1050, - [1387] = 951, - [1388] = 937, - [1389] = 938, - [1390] = 960, - [1391] = 1391, - [1392] = 941, - [1393] = 942, - [1394] = 943, - [1395] = 918, - [1396] = 932, - [1397] = 909, - [1398] = 920, - [1399] = 917, - [1400] = 919, - [1401] = 930, - [1402] = 924, - [1403] = 925, - [1404] = 926, - [1405] = 927, - [1406] = 928, - [1407] = 908, - [1408] = 931, - [1409] = 910, - [1410] = 929, - [1411] = 912, - [1412] = 921, - [1413] = 922, - [1414] = 945, - [1415] = 1239, - [1416] = 399, - [1417] = 923, - [1418] = 934, - [1419] = 935, - [1420] = 911, - [1421] = 915, - [1422] = 916, - [1423] = 918, - [1424] = 924, - [1425] = 925, - [1426] = 926, - [1427] = 927, - [1428] = 928, - [1429] = 908, - [1430] = 931, - [1431] = 910, - [1432] = 929, - [1433] = 912, - [1434] = 921, - [1435] = 922, - [1436] = 932, - [1437] = 909, - [1438] = 920, - [1439] = 917, - [1440] = 919, - [1441] = 930, - [1442] = 321, - [1443] = 923, - [1444] = 934, - [1445] = 935, - [1446] = 911, - [1447] = 915, - [1448] = 916, - [1449] = 918, - [1450] = 924, - [1451] = 925, - [1452] = 926, - [1453] = 927, - [1454] = 928, - [1455] = 908, - [1456] = 931, - [1457] = 910, - [1458] = 929, - [1459] = 912, - [1460] = 921, - [1461] = 922, - [1462] = 932, - [1463] = 909, - [1464] = 920, - [1465] = 917, - [1466] = 919, - [1467] = 930, - [1468] = 923, - [1469] = 934, - [1470] = 935, - [1471] = 911, - [1472] = 915, - [1473] = 916, - [1474] = 918, - [1475] = 924, - [1476] = 925, - [1477] = 926, - [1478] = 927, - [1479] = 928, - [1480] = 908, - [1481] = 931, - [1482] = 910, - [1483] = 929, - [1484] = 912, - [1485] = 921, - [1486] = 922, - [1487] = 955, - [1488] = 932, - [1489] = 909, - [1490] = 920, - [1491] = 917, - [1492] = 919, - [1493] = 1050, - [1494] = 399, - [1495] = 1004, - [1496] = 1008, - [1497] = 1023, - [1498] = 989, - [1499] = 986, - [1500] = 994, - [1501] = 998, - [1502] = 940, - [1503] = 957, - [1504] = 953, - [1505] = 958, - [1506] = 964, - [1507] = 970, - [1508] = 971, - [1509] = 962, - [1510] = 976, - [1511] = 993, - [1512] = 989, - [1513] = 1014, - [1514] = 1038, - [1515] = 1050, - [1516] = 937, - [1517] = 938, - [1518] = 960, - [1519] = 941, - [1520] = 942, - [1521] = 943, - [1522] = 945, - [1523] = 946, - [1524] = 961, - [1525] = 947, - [1526] = 948, - [1527] = 963, - [1528] = 949, - [1529] = 998, - [1530] = 978, - [1531] = 994, - [1532] = 399, - [1533] = 1007, - [1534] = 1016, - [1535] = 1025, - [1536] = 1034, - [1537] = 995, - [1538] = 1003, - [1539] = 1006, - [1540] = 1039, - [1541] = 1036, - [1542] = 1043, - [1543] = 950, - [1544] = 944, - [1545] = 1049, - [1546] = 951, - [1547] = 1007, - [1548] = 983, - [1549] = 1016, - [1550] = 1035, - [1551] = 987, - [1552] = 1025, - [1553] = 1034, - [1554] = 1051, - [1555] = 988, - [1556] = 991, - [1557] = 1004, - [1558] = 952, - [1559] = 954, - [1560] = 953, - [1561] = 962, - [1562] = 989, - [1563] = 998, - [1564] = 1007, - [1565] = 1016, - [1566] = 1025, - [1567] = 1034, - [1568] = 937, - [1569] = 1043, - [1570] = 1049, - [1571] = 1239, - [1572] = 1035, - [1573] = 955, - [1574] = 956, - [1575] = 988, - [1576] = 991, - [1577] = 952, - [1578] = 954, - [1579] = 1239, - [1580] = 940, - [1581] = 955, - [1582] = 956, - [1583] = 999, - [1584] = 1001, - [1585] = 1005, - [1586] = 999, - [1587] = 1008, - [1588] = 1023, - [1589] = 1001, - [1590] = 986, + [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, + [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, + [1295] = 918, + [1296] = 987, + [1297] = 988, + [1298] = 925, + [1299] = 926, + [1300] = 989, + [1301] = 990, + [1302] = 910, + [1303] = 918, + [1304] = 910, + [1305] = 911, + [1306] = 920, + [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, + [1375] = 926, + [1376] = 927, + [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, + [1508] = 976, + [1509] = 977, + [1510] = 978, + [1511] = 979, + [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] = 1005, - [1593] = 940, - [1594] = 957, - [1595] = 1036, - [1596] = 958, - [1597] = 964, - [1598] = 970, - [1599] = 971, - [1600] = 1008, - [1601] = 976, - [1602] = 993, - [1603] = 1023, - [1604] = 1014, - [1605] = 1038, - [1606] = 1050, - [1607] = 937, - [1608] = 938, - [1609] = 960, - [1610] = 941, - [1611] = 942, - [1612] = 943, - [1613] = 945, - [1614] = 946, - [1615] = 961, - [1616] = 947, - [1617] = 948, - [1618] = 963, - [1619] = 949, - [1620] = 1043, - [1621] = 978, - [1622] = 957, - [1623] = 399, - [1624] = 986, - [1625] = 994, - [1626] = 1049, - [1627] = 940, - [1628] = 995, - [1629] = 1003, - [1630] = 1006, - [1631] = 1039, - [1632] = 957, - [1633] = 943, - [1634] = 950, - [1635] = 944, - [1636] = 958, - [1637] = 951, - [1638] = 964, - [1639] = 983, - [1640] = 970, - [1641] = 971, - [1642] = 987, - [1643] = 945, - [1644] = 976, - [1645] = 1051, - [1646] = 993, - [1647] = 1035, - [1648] = 1004, - [1649] = 1014, - [1650] = 1038, - [1651] = 953, - [1652] = 962, - [1653] = 989, - [1654] = 998, - [1655] = 1007, - [1656] = 1016, - [1657] = 1025, - [1658] = 1034, - [1659] = 1036, - [1660] = 1043, - [1661] = 1049, - [1662] = 1050, - [1663] = 937, - [1664] = 1035, - [1665] = 938, - [1666] = 960, - [1667] = 988, - [1668] = 991, - [1669] = 952, - [1670] = 954, - [1671] = 941, - [1672] = 958, - [1673] = 955, - [1674] = 956, - [1675] = 999, - [1676] = 1001, - [1677] = 1005, - [1678] = 942, - [1679] = 1008, - [1680] = 1023, - [1681] = 943, - [1682] = 986, - [1683] = 994, - [1684] = 945, - [1685] = 940, - [1686] = 957, - [1687] = 946, - [1688] = 958, - [1689] = 964, + [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, + [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] = 971, - [1692] = 961, - [1693] = 976, - [1694] = 993, - [1695] = 947, - [1696] = 1014, - [1697] = 1038, - [1698] = 1050, - [1699] = 937, - [1700] = 938, - [1701] = 960, - [1702] = 941, - [1703] = 942, - [1704] = 943, - [1705] = 945, - [1706] = 946, - [1707] = 961, - [1708] = 947, - [1709] = 948, - [1710] = 963, - [1711] = 949, - [1712] = 948, - [1713] = 963, - [1714] = 399, - [1715] = 964, - [1716] = 970, - [1717] = 971, - [1718] = 949, - [1719] = 995, - [1720] = 978, - [1721] = 976, - [1722] = 950, - [1723] = 399, - [1724] = 951, - [1725] = 993, - [1726] = 1003, - [1727] = 988, - [1728] = 991, - [1729] = 952, - [1730] = 954, - [1731] = 995, - [1732] = 1003, - [1733] = 1006, - [1734] = 1039, - [1735] = 1239, - [1736] = 1006, - [1737] = 950, - [1738] = 944, - [1739] = 999, - [1740] = 951, - [1741] = 955, - [1742] = 983, - [1743] = 956, - [1744] = 999, - [1745] = 987, - [1746] = 1001, - [1747] = 1005, - [1748] = 952, - [1749] = 954, - [1750] = 955, - [1751] = 956, - [1752] = 1051, - [1753] = 1039, - [1754] = 1008, - [1755] = 1004, - [1756] = 1023, - [1757] = 946, - [1758] = 953, - [1759] = 962, - [1760] = 989, - [1761] = 998, - [1762] = 1007, - [1763] = 1016, - [1764] = 1025, - [1765] = 1034, - [1766] = 1036, - [1767] = 1043, - [1768] = 1049, - [1769] = 986, - [1770] = 994, - [1771] = 1035, - [1772] = 961, - [1773] = 940, - [1774] = 988, - [1775] = 991, - [1776] = 952, - [1777] = 954, - [1778] = 1239, - [1779] = 1001, - [1780] = 955, - [1781] = 956, - [1782] = 999, - [1783] = 1001, - [1784] = 1005, - [1785] = 957, - [1786] = 1008, - [1787] = 399, - [1788] = 923, - [1789] = 934, - [1790] = 935, - [1791] = 911, - [1792] = 915, - [1793] = 916, - [1794] = 1023, - [1795] = 950, - [1796] = 918, - [1797] = 924, - [1798] = 925, - [1799] = 926, - [1800] = 927, - [1801] = 928, - [1802] = 908, - [1803] = 931, - [1804] = 910, - [1805] = 929, - [1806] = 912, - [1807] = 921, - [1808] = 922, - [1809] = 986, - [1810] = 994, - [1811] = 958, - [1812] = 940, - [1813] = 932, - [1814] = 909, - [1815] = 920, - [1816] = 917, - [1817] = 919, - [1818] = 930, - [1819] = 957, - [1820] = 964, - [1821] = 399, - [1822] = 1014, - [1823] = 1038, - [1824] = 1050, - [1825] = 937, - [1826] = 938, - [1827] = 960, - [1828] = 941, - [1829] = 942, - [1830] = 943, - [1831] = 945, - [1832] = 958, - [1833] = 964, - [1834] = 970, - [1835] = 971, - [1836] = 946, - [1837] = 961, - [1838] = 947, - [1839] = 970, - [1840] = 976, - [1841] = 993, - [1842] = 948, - [1843] = 963, - [1844] = 949, - [1845] = 971, - [1846] = 978, - [1847] = 1014, - [1848] = 1038, - [1849] = 1050, - [1850] = 937, - [1851] = 938, - [1852] = 960, - [1853] = 941, - [1854] = 942, - [1855] = 943, - [1856] = 945, - [1857] = 978, - [1858] = 946, - [1859] = 961, - [1860] = 947, - [1861] = 948, - [1862] = 963, - [1863] = 949, - [1864] = 944, - [1865] = 978, - [1866] = 1005, - [1867] = 399, - [1868] = 976, - [1869] = 993, - [1870] = 947, - [1871] = 995, - [1872] = 1003, - [1873] = 1006, - [1874] = 1014, - [1875] = 399, - [1876] = 995, - [1877] = 1003, - [1878] = 1006, - [1879] = 1039, - [1880] = 995, - [1881] = 1003, - [1882] = 1038, - [1883] = 1050, - [1884] = 1006, - [1885] = 1050, - [1886] = 1039, - [1887] = 950, - [1888] = 944, - [1889] = 321, - [1890] = 944, - [1891] = 1039, - [1892] = 937, - [1893] = 951, - [1894] = 950, - [1895] = 944, - [1896] = 938, - [1897] = 983, - [1898] = 960, - [1899] = 941, - [1900] = 987, - [1901] = 942, - [1902] = 943, - [1903] = 1051, - [1904] = 945, - [1905] = 951, - [1906] = 946, - [1907] = 983, - [1908] = 1004, - [1909] = 961, - [1910] = 987, - [1911] = 947, - [1912] = 953, - [1913] = 1051, - [1914] = 962, - [1915] = 989, - [1916] = 1004, - [1917] = 998, - [1918] = 1007, - [1919] = 953, - [1920] = 962, - [1921] = 989, - [1922] = 998, - [1923] = 1007, - [1924] = 1016, - [1925] = 1025, - [1926] = 1034, - [1927] = 1036, - [1928] = 1043, - [1929] = 1049, - [1930] = 1016, - [1931] = 1025, - [1932] = 1035, - [1933] = 1034, - [1934] = 1036, - [1935] = 988, - [1936] = 991, - [1937] = 1021, - [1938] = 1043, - [1939] = 1049, - [1940] = 948, - [1941] = 963, - [1942] = 1239, - [1943] = 1035, - [1944] = 949, - [1945] = 951, - [1946] = 988, - [1947] = 991, - [1948] = 952, - [1949] = 955, - [1950] = 956, - [1951] = 954, - [1952] = 1239, - [1953] = 999, - [1954] = 1001, - [1955] = 1005, - [1956] = 1008, - [1957] = 1008, - [1958] = 1023, - [1959] = 955, - [1960] = 986, - [1961] = 994, - [1962] = 956, - [1963] = 940, - [1964] = 957, - [1965] = 999, - [1966] = 958, - [1967] = 983, - [1968] = 964, - [1969] = 970, - [1970] = 971, - [1971] = 1001, - [1972] = 976, - [1973] = 993, - [1974] = 1005, - [1975] = 978, - [1976] = 1008, - [1977] = 987, - [1978] = 1023, - [1979] = 948, - [1980] = 1051, - [1981] = 986, - [1982] = 994, - [1983] = 1004, - [1984] = 399, - [1985] = 940, - [1986] = 953, - [1987] = 962, - [1988] = 989, - [1989] = 998, - [1990] = 1007, - [1991] = 1016, - [1992] = 1014, - [1993] = 1038, - [1994] = 1050, - [1995] = 937, - [1996] = 938, - [1997] = 960, - [1998] = 941, - [1999] = 942, - [2000] = 943, - [2001] = 945, - [2002] = 1025, - [2003] = 1034, - [2004] = 1036, - [2005] = 1043, - [2006] = 1049, - [2007] = 957, - [2008] = 983, - [2009] = 1035, - [2010] = 958, - [2011] = 964, - [2012] = 946, - [2013] = 961, - [2014] = 947, - [2015] = 988, - [2016] = 991, - [2017] = 952, - [2018] = 948, - [2019] = 963, - [2020] = 949, - [2021] = 954, - [2022] = 970, - [2023] = 1239, - [2024] = 322, - [2025] = 978, - [2026] = 971, - [2027] = 963, + [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, + [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, + [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, + [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] = 993, - [2030] = 949, - [2031] = 1014, - [2032] = 995, - [2033] = 1003, - [2034] = 1006, - [2035] = 1039, - [2036] = 1038, - [2037] = 1050, - [2038] = 950, - [2039] = 944, - [2040] = 951, - [2041] = 937, - [2042] = 983, - [2043] = 938, - [2044] = 960, - [2045] = 987, - [2046] = 941, - [2047] = 942, - [2048] = 1051, - [2049] = 943, - [2050] = 945, - [2051] = 1004, - [2052] = 946, - [2053] = 961, - [2054] = 953, - [2055] = 962, - [2056] = 989, - [2057] = 998, - [2058] = 1007, - [2059] = 1016, - [2060] = 1025, - [2061] = 1034, - [2062] = 1036, - [2063] = 1043, - [2064] = 1049, - [2065] = 947, - [2066] = 948, - [2067] = 1035, - [2068] = 963, - [2069] = 949, - [2070] = 988, - [2071] = 991, - [2072] = 952, - [2073] = 954, - [2074] = 1239, - [2075] = 955, - [2076] = 956, + [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] = 1001, - [2079] = 1005, - [2080] = 987, - [2081] = 1008, - [2082] = 1023, - [2083] = 978, - [2084] = 986, - [2085] = 994, - [2086] = 1023, - [2087] = 940, - [2088] = 957, - [2089] = 399, - [2090] = 958, - [2091] = 964, - [2092] = 970, - [2093] = 971, - [2094] = 995, - [2095] = 976, - [2096] = 993, - [2097] = 1003, - [2098] = 1014, - [2099] = 1038, - [2100] = 1050, - [2101] = 937, - [2102] = 938, - [2103] = 960, - [2104] = 941, - [2105] = 942, - [2106] = 943, - [2107] = 945, - [2108] = 946, - [2109] = 961, - [2110] = 947, - [2111] = 948, - [2112] = 963, - [2113] = 949, - [2114] = 1006, - [2115] = 978, - [2116] = 399, - [2117] = 1039, - [2118] = 995, - [2119] = 1003, - [2120] = 1006, - [2121] = 995, - [2122] = 1003, - [2123] = 1006, - [2124] = 1039, - [2125] = 1039, - [2126] = 938, - [2127] = 950, - [2128] = 944, - [2129] = 951, - [2130] = 978, - [2131] = 983, - [2132] = 950, - [2133] = 944, - [2134] = 987, - [2135] = 950, - [2136] = 951, - [2137] = 1051, - [2138] = 944, - [2139] = 983, - [2140] = 1004, - [2141] = 1051, - [2142] = 951, - [2143] = 953, - [2144] = 962, - [2145] = 989, - [2146] = 998, - [2147] = 1007, - [2148] = 1016, - [2149] = 1025, - [2150] = 1034, - [2151] = 1036, - [2152] = 1043, - [2153] = 1049, - [2154] = 987, - [2155] = 1035, - [2156] = 983, - [2157] = 1051, - [2158] = 988, - [2159] = 991, - [2160] = 952, - [2161] = 954, - [2162] = 1239, - [2163] = 955, - [2164] = 956, - [2165] = 999, - [2166] = 1001, - [2167] = 1005, - [2168] = 960, - [2169] = 1008, - [2170] = 1023, - [2171] = 1004, - [2172] = 986, - [2173] = 994, - [2174] = 1004, - [2175] = 940, - [2176] = 957, - [2177] = 987, - [2178] = 958, - [2179] = 964, - [2180] = 970, - [2181] = 971, - [2182] = 941, - [2183] = 976, - [2184] = 993, - [2185] = 953, - [2186] = 1014, - [2187] = 1038, - [2188] = 1050, - [2189] = 937, - [2190] = 938, - [2191] = 960, - [2192] = 941, - [2193] = 942, - [2194] = 943, - [2195] = 945, - [2196] = 946, - [2197] = 961, - [2198] = 947, - [2199] = 948, - [2200] = 963, - [2201] = 949, - [2202] = 978, - [2203] = 962, - [2204] = 989, - [2205] = 998, - [2206] = 1007, - [2207] = 995, - [2208] = 1003, - [2209] = 1006, - [2210] = 1039, - [2211] = 1016, - [2212] = 1025, - [2213] = 950, - [2214] = 944, - [2215] = 951, - [2216] = 1034, - [2217] = 983, - [2218] = 1036, - [2219] = 1043, - [2220] = 987, - [2221] = 1049, - [2222] = 942, - [2223] = 1051, - [2224] = 1051, - [2225] = 1035, - [2226] = 1004, - [2227] = 953, - [2228] = 962, - [2229] = 953, - [2230] = 962, - [2231] = 989, - [2232] = 998, - [2233] = 1007, - [2234] = 1016, - [2235] = 1025, - [2236] = 1034, - [2237] = 1036, - [2238] = 1043, - [2239] = 1049, - [2240] = 988, - [2241] = 991, - [2242] = 1035, - [2243] = 952, - [2244] = 954, - [2245] = 988, - [2246] = 991, - [2247] = 952, - [2248] = 954, - [2249] = 1239, - [2250] = 1239, - [2251] = 955, - [2252] = 956, - [2253] = 999, - [2254] = 1001, - [2255] = 1005, - [2256] = 986, - [2257] = 1008, - [2258] = 1023, - [2259] = 955, - [2260] = 986, - [2261] = 994, - [2262] = 956, - [2263] = 940, - [2264] = 957, - [2265] = 999, - [2266] = 958, - [2267] = 964, - [2268] = 970, - [2269] = 971, - [2270] = 1001, - [2271] = 976, - [2272] = 993, - [2273] = 1005, - [2274] = 1014, - [2275] = 1038, - [2276] = 1036, - [2277] = 960, - [2278] = 953, - [2279] = 962, - [2280] = 1090, - [2281] = 989, - [2282] = 998, - [2283] = 1007, - [2284] = 1016, - [2285] = 1025, - [2286] = 1034, - [2287] = 1036, - [2288] = 1043, - [2289] = 1049, - [2290] = 1035, - [2291] = 988, - [2292] = 991, - [2293] = 1054, - [2294] = 995, - [2295] = 952, - [2296] = 954, - [2297] = 955, - [2298] = 956, - [2299] = 322, - [2300] = 1003, - [2301] = 1006, - [2302] = 999, - [2303] = 1001, - [2304] = 1005, - [2305] = 1021, - [2306] = 1039, - [2307] = 1008, - [2308] = 1023, - [2309] = 986, - [2310] = 994, - [2311] = 940, - [2312] = 957, - [2313] = 978, - [2314] = 964, - [2315] = 970, - [2316] = 971, - [2317] = 961, - [2318] = 944, - [2319] = 976, - [2320] = 963, - [2321] = 993, - [2322] = 1014, - [2323] = 1038, - [2324] = 1050, - [2325] = 937, - [2326] = 938, - [2327] = 941, - [2328] = 942, - [2329] = 943, - [2330] = 945, - [2331] = 946, - [2332] = 947, - [2333] = 948, - [2334] = 949, - [2335] = 983, - [2336] = 399, - [2337] = 987, - [2338] = 1051, - [2339] = 950, - [2340] = 1291, - [2341] = 951, - [2342] = 1391, - [2343] = 401, - [2344] = 1004, - [2345] = 958, - [2346] = 401, - [2347] = 2347, - [2348] = 2348, - [2349] = 2349, - [2350] = 2350, - [2351] = 2351, - [2352] = 2352, - [2353] = 2353, - [2354] = 2354, - [2355] = 2355, - [2356] = 2355, - [2357] = 2354, - [2358] = 2358, - [2359] = 2359, - [2360] = 2354, - [2361] = 2358, - [2362] = 2359, - [2363] = 2354, - [2364] = 2359, - [2365] = 2355, - [2366] = 2354, - [2367] = 2358, - [2368] = 2359, - [2369] = 2354, - [2370] = 2359, - [2371] = 2354, - [2372] = 2359, - [2373] = 2354, - [2374] = 2359, - [2375] = 2354, - [2376] = 2359, - [2377] = 2355, - [2378] = 2354, - [2379] = 2355, - [2380] = 2355, - [2381] = 2354, - [2382] = 2358, - [2383] = 2359, - [2384] = 2354, - [2385] = 2358, - [2386] = 2359, - [2387] = 2358, - [2388] = 2359, - [2389] = 2355, - [2390] = 2359, - [2391] = 2354, - [2392] = 2358, - [2393] = 2359, - [2394] = 2354, - [2395] = 2358, - [2396] = 2359, - [2397] = 2355, - [2398] = 2354, - [2399] = 2358, - [2400] = 2359, - [2401] = 2355, - [2402] = 2354, - [2403] = 2358, - [2404] = 2359, - [2405] = 2355, - [2406] = 2354, - [2407] = 2358, - [2408] = 2359, - [2409] = 2358, - [2410] = 2355, - [2411] = 2354, - [2412] = 2358, - [2413] = 2359, - [2414] = 2355, - [2415] = 2355, - [2416] = 2354, - [2417] = 2355, - [2418] = 2354, - [2419] = 2358, - [2420] = 2359, - [2421] = 2355, - [2422] = 2358, - [2423] = 2359, - [2424] = 2358, - [2425] = 2355, - [2426] = 2426, - [2427] = 2426, - [2428] = 2426, - [2429] = 2426, - [2430] = 2426, - [2431] = 2426, - [2432] = 2426, - [2433] = 2426, - [2434] = 2426, - [2435] = 2426, - [2436] = 2426, - [2437] = 2426, - [2438] = 2426, - [2439] = 2426, - [2440] = 2426, - [2441] = 2426, - [2442] = 2426, - [2443] = 2443, - [2444] = 2443, - [2445] = 2443, - [2446] = 2443, - [2447] = 2443, - [2448] = 2443, - [2449] = 2449, - [2450] = 2450, - [2451] = 2443, - [2452] = 2443, - [2453] = 2443, - [2454] = 2443, + [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] = 2443, - [2457] = 2443, - [2458] = 2443, - [2459] = 2443, - [2460] = 2443, - [2461] = 2443, - [2462] = 2443, - [2463] = 2463, - [2464] = 2464, - [2465] = 2463, - [2466] = 2464, - [2467] = 2467, - [2468] = 2467, + [2456] = 2456, + [2457] = 2456, + [2458] = 2456, + [2459] = 2456, + [2460] = 2460, + [2461] = 2461, + [2462] = 2456, + [2463] = 347, + [2464] = 2456, + [2465] = 2465, + [2466] = 2456, + [2467] = 2456, + [2468] = 2468, [2469] = 2469, - [2470] = 2469, + [2470] = 2461, [2471] = 2471, - [2472] = 2467, - [2473] = 2467, - [2474] = 2467, - [2475] = 2469, - [2476] = 2469, - [2477] = 2469, - [2478] = 2469, - [2479] = 2467, - [2480] = 2467, - [2481] = 2467, - [2482] = 2469, - [2483] = 2467, - [2484] = 2469, - [2485] = 2467, - [2486] = 2469, - [2487] = 2469, - [2488] = 2469, - [2489] = 322, - [2490] = 2467, - [2491] = 2467, - [2492] = 2469, - [2493] = 2467, - [2494] = 2469, - [2495] = 2467, - [2496] = 2469, - [2497] = 2497, - [2498] = 2498, - [2499] = 2467, - [2500] = 2500, - [2501] = 2467, - [2502] = 2469, - [2503] = 2469, + [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, + [2487] = 2487, + [2488] = 2488, + [2489] = 2489, + [2490] = 2490, + [2491] = 2490, + [2492] = 2492, + [2493] = 2493, + [2494] = 2493, + [2495] = 2495, + [2496] = 2490, + [2497] = 2485, + [2498] = 2493, + [2499] = 2485, + [2500] = 2495, + [2501] = 2488, + [2502] = 246, + [2503] = 2503, [2504] = 2504, [2505] = 2505, - [2506] = 2504, + [2506] = 2506, [2507] = 2507, - [2508] = 2504, + [2508] = 246, [2509] = 2509, - [2510] = 2504, + [2510] = 2510, [2511] = 2511, - [2512] = 2504, - [2513] = 2504, - [2514] = 2511, - [2515] = 2511, - [2516] = 2504, - [2517] = 401, - [2518] = 2504, + [2512] = 2512, + [2513] = 2507, + [2514] = 2514, + [2515] = 2503, + [2516] = 2516, + [2517] = 2517, + [2518] = 2516, [2519] = 2519, - [2520] = 2519, - [2521] = 2504, - [2522] = 2504, + [2520] = 2520, + [2521] = 2521, + [2522] = 2522, [2523] = 2523, - [2524] = 2509, - [2525] = 2504, - [2526] = 2504, - [2527] = 2504, - [2528] = 2504, + [2524] = 2524, + [2525] = 2503, + [2526] = 2516, + [2527] = 2510, + [2528] = 2523, [2529] = 2529, - [2530] = 2504, - [2531] = 2504, - [2532] = 2532, - [2533] = 2533, - [2534] = 2534, - [2535] = 2535, - [2536] = 347, - [2537] = 2537, - [2538] = 322, - [2539] = 2532, - [2540] = 2532, - [2541] = 2535, + [2530] = 2530, + [2531] = 2520, + [2532] = 2521, + [2533] = 2529, + [2534] = 2530, + [2535] = 347, + [2536] = 2536, + [2537] = 2507, + [2538] = 1021, + [2539] = 2539, + [2540] = 2540, + [2541] = 2541, [2542] = 2542, - [2543] = 2534, - [2544] = 2544, - [2545] = 2534, + [2543] = 2539, + [2544] = 246, + [2545] = 2460, [2546] = 2546, - [2547] = 2537, - [2548] = 2548, - [2549] = 2542, - [2550] = 2542, - [2551] = 2551, - [2552] = 2552, - [2553] = 2552, - [2554] = 2554, - [2555] = 2555, - [2556] = 2556, + [2547] = 2542, + [2548] = 2539, + [2549] = 2549, + [2550] = 2550, + [2551] = 2542, + [2552] = 2465, + [2553] = 2553, + [2554] = 2539, + [2555] = 2471, + [2556] = 2542, [2557] = 2557, - [2558] = 2558, - [2559] = 401, + [2558] = 1019, + [2559] = 2542, [2560] = 2560, - [2561] = 2561, - [2562] = 2562, - [2563] = 2563, - [2564] = 2564, - [2565] = 2565, - [2566] = 2557, - [2567] = 322, - [2568] = 2558, - [2569] = 2569, - [2570] = 2570, - [2571] = 2571, - [2572] = 2570, - [2573] = 2573, - [2574] = 2574, - [2575] = 2558, + [2561] = 2539, + [2562] = 1020, + [2563] = 2539, + [2564] = 2542, + [2565] = 2539, + [2566] = 2566, + [2567] = 2567, + [2568] = 2568, + [2569] = 245, + [2570] = 2539, + [2571] = 2542, + [2572] = 2539, + [2573] = 2539, + [2574] = 347, + [2575] = 2575, [2576] = 2576, [2577] = 2577, - [2578] = 2569, - [2579] = 2571, - [2580] = 2577, - [2581] = 2563, - [2582] = 2562, - [2583] = 2562, - [2584] = 2563, + [2578] = 2542, + [2579] = 2539, + [2580] = 2542, + [2581] = 2581, + [2582] = 2542, + [2583] = 2583, + [2584] = 2584, [2585] = 2585, - [2586] = 2586, - [2587] = 2587, + [2586] = 2542, + [2587] = 2539, [2588] = 2588, [2589] = 2589, - [2590] = 2590, + [2590] = 2539, [2591] = 2591, [2592] = 2592, - [2593] = 2588, - [2594] = 2591, - [2595] = 2595, - [2596] = 2588, - [2597] = 2597, + [2593] = 2593, + [2594] = 2594, + [2595] = 2593, + [2596] = 2596, + [2597] = 2596, [2598] = 2598, - [2599] = 2599, - [2600] = 322, - [2601] = 2588, - [2602] = 2591, - [2603] = 2603, - [2604] = 2588, + [2599] = 2546, + [2600] = 2546, + [2601] = 2593, + [2602] = 2542, + [2603] = 2539, + [2604] = 2604, [2605] = 2605, - [2606] = 2591, - [2607] = 2607, - [2608] = 2608, - [2609] = 2609, - [2610] = 2588, - [2611] = 2591, + [2606] = 2542, + [2607] = 2539, + [2608] = 2542, + [2609] = 2576, + [2610] = 2576, + [2611] = 2611, [2612] = 2612, - [2613] = 2613, - [2614] = 2614, - [2615] = 2588, - [2616] = 2591, + [2613] = 2542, + [2614] = 245, + [2615] = 2615, + [2616] = 2549, [2617] = 2617, - [2618] = 2618, - [2619] = 960, - [2620] = 2588, - [2621] = 961, - [2622] = 2591, - [2623] = 321, - [2624] = 963, - [2625] = 2625, - [2626] = 2507, - [2627] = 2627, - [2628] = 2588, - [2629] = 2589, + [2618] = 2539, + [2619] = 2542, + [2620] = 2549, + [2621] = 2621, + [2622] = 2549, + [2623] = 2576, + [2624] = 2624, + [2625] = 345, + [2626] = 2549, + [2627] = 2624, + [2628] = 2628, + [2629] = 2629, [2630] = 2630, [2631] = 2631, - [2632] = 2632, - [2633] = 2613, - [2634] = 2588, - [2635] = 2591, - [2636] = 2636, - [2637] = 2588, - [2638] = 2591, + [2632] = 2549, + [2633] = 2576, + [2634] = 2624, + [2635] = 2624, + [2636] = 2624, + [2637] = 2549, + [2638] = 2638, [2639] = 2639, - [2640] = 2640, - [2641] = 2588, - [2642] = 2591, - [2643] = 2613, - [2644] = 2588, - [2645] = 2591, - [2646] = 2617, - [2647] = 2591, - [2648] = 2617, - [2649] = 2588, - [2650] = 321, - [2651] = 2591, - [2652] = 2588, - [2653] = 2627, - [2654] = 2631, - [2655] = 2655, - [2656] = 2627, - [2657] = 2591, - [2658] = 2505, - [2659] = 2659, - [2660] = 2660, - [2661] = 2589, - [2662] = 2662, - [2663] = 2523, - [2664] = 401, - [2665] = 2588, - [2666] = 2591, - [2667] = 2667, - [2668] = 2591, + [2640] = 246, + [2641] = 2549, + [2642] = 2576, + [2643] = 347, + [2644] = 2576, + [2645] = 2624, + [2646] = 2624, + [2647] = 2647, + [2648] = 2624, + [2649] = 2549, + [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] = 2670, + [2670] = 2546, [2671] = 2671, - [2672] = 2617, - [2673] = 2673, - [2674] = 2674, - [2675] = 322, - [2676] = 2613, - [2677] = 2677, - [2678] = 2617, - [2679] = 399, - [2680] = 2670, - [2681] = 2613, - [2682] = 2682, - [2683] = 2670, - [2684] = 2684, - [2685] = 2670, - [2686] = 2670, - [2687] = 2687, - [2688] = 2589, - [2689] = 2670, - [2690] = 2690, - [2691] = 2613, - [2692] = 2613, - [2693] = 2589, - [2694] = 2589, - [2695] = 2617, - [2696] = 2669, + [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, [2697] = 2697, - [2698] = 2617, - [2699] = 2670, - [2700] = 2589, - [2701] = 2701, - [2702] = 2613, - [2703] = 2703, - [2704] = 2704, - [2705] = 2670, - [2706] = 2706, - [2707] = 960, - [2708] = 961, - [2709] = 963, - [2710] = 2670, - [2711] = 960, - [2712] = 961, - [2713] = 963, + [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, + [2713] = 2713, [2714] = 2714, - [2715] = 2670, - [2716] = 2670, - [2717] = 2617, - [2718] = 2613, - [2719] = 2670, - [2720] = 2617, - [2721] = 2721, - [2722] = 401, - [2723] = 2723, - [2724] = 2613, - [2725] = 2589, - [2726] = 2589, - [2727] = 2670, - [2728] = 2671, - [2729] = 2729, - [2730] = 2730, - [2731] = 2589, + [2715] = 2715, + [2716] = 2621, + [2717] = 2576, + [2718] = 2624, + [2719] = 2719, + [2720] = 2549, + [2721] = 2621, + [2722] = 2722, + [2723] = 2621, + [2724] = 2724, + [2725] = 2621, + [2726] = 2629, + [2727] = 2628, + [2728] = 2629, + [2729] = 2628, + [2730] = 2624, + [2731] = 2731, [2732] = 2732, - [2733] = 2671, + [2733] = 2733, [2734] = 2734, - [2735] = 2617, - [2736] = 2670, - [2737] = 2737, - [2738] = 2617, - [2739] = 2617, - [2740] = 2732, + [2735] = 2735, + [2736] = 2734, + [2737] = 2735, + [2738] = 2738, + [2739] = 2739, + [2740] = 2740, [2741] = 2741, - [2742] = 2732, - [2743] = 2671, - [2744] = 2670, - [2745] = 2732, - [2746] = 2746, - [2747] = 2747, - [2748] = 2732, - [2749] = 2703, - [2750] = 2589, - [2751] = 2732, - [2752] = 2589, - [2753] = 2753, - [2754] = 2732, - [2755] = 2613, - [2756] = 2732, - [2757] = 2757, - [2758] = 2732, - [2759] = 2613, + [2742] = 2742, + [2743] = 2743, + [2744] = 2744, + [2745] = 2541, + [2746] = 2738, + [2747] = 2734, + [2748] = 2748, + [2749] = 2742, + [2750] = 2748, + [2751] = 2751, + [2752] = 2739, + [2753] = 2738, + [2754] = 2734, + [2755] = 2735, + [2756] = 2740, + [2757] = 2741, + [2758] = 2758, + [2759] = 2738, [2760] = 2760, - [2761] = 2741, - [2762] = 2670, - [2763] = 2732, - [2764] = 2589, - [2765] = 2732, - [2766] = 2766, - [2767] = 2732, - [2768] = 2732, + [2761] = 2739, + [2762] = 2740, + [2763] = 2741, + [2764] = 2764, + [2765] = 2731, + [2766] = 2733, + [2767] = 2734, + [2768] = 2739, [2769] = 2732, - [2770] = 2617, + [2770] = 2770, [2771] = 2771, - [2772] = 2732, - [2773] = 2732, - [2774] = 2757, - [2775] = 2669, - [2776] = 2613, - [2777] = 2757, - [2778] = 399, - [2779] = 2779, + [2772] = 2735, + [2773] = 2742, + [2774] = 2742, + [2775] = 2748, + [2776] = 2743, + [2777] = 2734, + [2778] = 2735, + [2779] = 2748, [2780] = 2780, - [2781] = 2781, - [2782] = 2782, - [2783] = 2783, - [2784] = 2784, - [2785] = 2785, - [2786] = 2786, - [2787] = 2787, - [2788] = 2788, - [2789] = 2789, - [2790] = 2790, - [2791] = 2786, - [2792] = 2782, - [2793] = 2780, - [2794] = 2781, - [2795] = 2795, - [2796] = 2784, - [2797] = 2784, - [2798] = 2659, - [2799] = 2786, - [2800] = 2785, - [2801] = 2787, - [2802] = 2782, + [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] = 2785, - [2805] = 2788, - [2806] = 2787, - [2807] = 2790, - [2808] = 2780, - [2809] = 2781, + [2804] = 2738, + [2805] = 2739, + [2806] = 2740, + [2807] = 2741, + [2808] = 2808, + [2809] = 2809, [2810] = 2810, - [2811] = 2784, - [2812] = 2660, - [2813] = 2786, - [2814] = 2787, - [2815] = 2788, - [2816] = 2803, - [2817] = 2810, - [2818] = 2788, - [2819] = 2786, - [2820] = 2810, - [2821] = 2779, - [2822] = 2795, - [2823] = 2795, - [2824] = 2787, - [2825] = 2825, - [2826] = 2826, - [2827] = 2788, - [2828] = 2782, - [2829] = 2829, - [2830] = 2785, - [2831] = 401, - [2832] = 2789, - [2833] = 2780, - [2834] = 2781, - [2835] = 2835, - [2836] = 2836, - [2837] = 2795, - [2838] = 2784, - [2839] = 2786, - [2840] = 2787, - [2841] = 2788, - [2842] = 2842, - [2843] = 2843, - [2844] = 2779, - [2845] = 2825, - [2846] = 2795, - [2847] = 2826, - [2848] = 2782, - [2849] = 2829, - [2850] = 2795, - [2851] = 2782, - [2852] = 2785, - [2853] = 2785, - [2854] = 2789, - [2855] = 2780, - [2856] = 2781, - [2857] = 2857, - [2858] = 2639, - [2859] = 2835, - [2860] = 2636, - [2861] = 2784, - [2862] = 2786, - [2863] = 2787, - [2864] = 2788, - [2865] = 2780, - [2866] = 2781, - [2867] = 2612, - [2868] = 2784, - [2869] = 2795, - [2870] = 2870, - [2871] = 2871, - [2872] = 2786, - [2873] = 2787, - [2874] = 2782, + [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, + [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, [2875] = 2875, - [2876] = 2785, - [2877] = 2788, - [2878] = 2780, - [2879] = 2781, - [2880] = 2880, - [2881] = 2881, - [2882] = 2599, - [2883] = 2784, - [2884] = 2786, - [2885] = 2787, - [2886] = 2788, - [2887] = 2887, - [2888] = 2784, - [2889] = 2782, - [2890] = 2795, - [2891] = 2795, - [2892] = 2785, - [2893] = 2893, - [2894] = 2894, - [2895] = 2786, - [2896] = 2782, - [2897] = 2785, - [2898] = 2898, - [2899] = 2782, - [2900] = 2900, - [2901] = 2780, - [2902] = 2781, - [2903] = 2795, - [2904] = 2784, - [2905] = 2786, - [2906] = 2787, - [2907] = 2788, - [2908] = 2630, - [2909] = 2909, - [2910] = 2785, - [2911] = 321, - [2912] = 2825, - [2913] = 2795, - [2914] = 2787, - [2915] = 2780, - [2916] = 2916, - [2917] = 2780, - [2918] = 2781, - [2919] = 2782, - [2920] = 2785, - [2921] = 2781, - [2922] = 322, - [2923] = 2780, - [2924] = 2781, - [2925] = 2925, - [2926] = 2795, - [2927] = 2784, - [2928] = 2784, - [2929] = 2929, - [2930] = 2786, - [2931] = 2787, - [2932] = 2788, - [2933] = 2786, - [2934] = 2787, - [2935] = 2786, - [2936] = 2788, - [2937] = 2786, - [2938] = 2788, - [2939] = 2786, - [2940] = 2788, - [2941] = 2786, - [2942] = 2788, - [2943] = 2887, - [2944] = 2788, - [2945] = 2945, - [2946] = 2603, - [2947] = 2782, - [2948] = 2785, - [2949] = 2949, - [2950] = 2605, - [2951] = 2898, - [2952] = 2900, - [2953] = 2782, - [2954] = 2916, - [2955] = 2909, - [2956] = 2836, - [2957] = 2842, - [2958] = 2870, - [2959] = 2871, - [2960] = 2925, - [2961] = 2961, - [2962] = 2843, - [2963] = 2963, - [2964] = 2783, - [2965] = 2881, - [2966] = 2929, - [2967] = 2945, - [2968] = 2887, - [2969] = 2893, - [2970] = 322, - [2971] = 2784, - [2972] = 2949, - [2973] = 2786, - [2974] = 2787, - [2975] = 2975, - [2976] = 2780, - [2977] = 2781, - [2978] = 2898, - [2979] = 2900, - [2980] = 2795, - [2981] = 2909, - [2982] = 2836, - [2983] = 2842, - [2984] = 2925, - [2985] = 2961, - [2986] = 2843, - [2987] = 2963, - [2988] = 2783, - [2989] = 2881, - [2990] = 2929, - [2991] = 2945, - [2992] = 2887, - [2993] = 2788, - [2994] = 2590, - [2995] = 2898, - [2996] = 2900, - [2997] = 2836, - [2998] = 2842, - [2999] = 2887, - [3000] = 2790, - [3001] = 2782, - [3002] = 2785, - [3003] = 2898, - [3004] = 2900, - [3005] = 2592, - [3006] = 2836, - [3007] = 2842, - [3008] = 2887, - [3009] = 2857, - [3010] = 2780, - [3011] = 2803, - [3012] = 3012, - [3013] = 2826, - [3014] = 2784, - [3015] = 2786, - [3016] = 2898, - [3017] = 2900, - [3018] = 2780, - [3019] = 2836, - [3020] = 2842, - [3021] = 2887, - [3022] = 2781, - [3023] = 2787, - [3024] = 2788, - [3025] = 2898, - [3026] = 2900, - [3027] = 2784, - [3028] = 2836, - [3029] = 2842, - [3030] = 2887, - [3031] = 2835, - [3032] = 2898, - [3033] = 2900, - [3034] = 2786, - [3035] = 2836, - [3036] = 2842, - [3037] = 2887, - [3038] = 2949, - [3039] = 2961, - [3040] = 2781, - [3041] = 2787, - [3042] = 2898, - [3043] = 2900, - [3044] = 2788, - [3045] = 2836, - [3046] = 2842, - [3047] = 2887, - [3048] = 2788, - [3049] = 2795, - [3050] = 2829, - [3051] = 2785, - [3052] = 2893, - [3053] = 2898, - [3054] = 2900, - [3055] = 2836, - [3056] = 2842, - [3057] = 2887, - [3058] = 2898, - [3059] = 2900, - [3060] = 2836, - [3061] = 2842, - [3062] = 2887, - [3063] = 2963, - [3064] = 2898, - [3065] = 2900, - [3066] = 2795, - [3067] = 2836, - [3068] = 2842, - [3069] = 2887, - [3070] = 2782, - [3071] = 2785, - [3072] = 2898, - [3073] = 2900, - [3074] = 2795, - [3075] = 2836, - [3076] = 2842, - [3077] = 2887, - [3078] = 2949, - [3079] = 2898, - [3080] = 2900, - [3081] = 2836, - [3082] = 2842, - [3083] = 2887, + [2876] = 2810, + [2877] = 2862, + [2878] = 2863, + [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, + [3046] = 3046, + [3047] = 3047, + [3048] = 245, + [3049] = 3049, + [3050] = 2594, + [3051] = 3051, + [3052] = 2771, + [3053] = 3053, + [3054] = 2771, + [3055] = 347, + [3056] = 2771, + [3057] = 3057, + [3058] = 3058, + [3059] = 3059, + [3060] = 3060, + [3061] = 3061, + [3062] = 2771, + [3063] = 3063, + [3064] = 3064, + [3065] = 3049, + [3066] = 3066, + [3067] = 3067, + [3068] = 3068, + [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] = 2780, - [3086] = 2898, - [3087] = 2900, - [3088] = 2836, - [3089] = 2842, - [3090] = 2887, - [3091] = 2781, - [3092] = 2784, - [3093] = 2898, - [3094] = 2900, - [3095] = 2836, - [3096] = 2842, - [3097] = 2900, - [3098] = 2842, - [3099] = 2900, - [3100] = 2842, - [3101] = 2900, - [3102] = 2842, - [3103] = 2900, - [3104] = 2842, - [3105] = 2780, - [3106] = 2782, - [3107] = 2785, - [3108] = 2781, - [3109] = 2857, - [3110] = 2803, - [3111] = 3111, - [3112] = 3112, - [3113] = 2803, - [3114] = 2723, - [3115] = 2674, + [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] = 3117, - [3118] = 2636, - [3119] = 3119, - [3120] = 3120, - [3121] = 3121, - [3122] = 3112, - [3123] = 3123, - [3124] = 3124, - [3125] = 3117, - [3126] = 3126, - [3127] = 3127, - [3128] = 3111, - [3129] = 3123, - [3130] = 2607, - [3131] = 2803, - [3132] = 3132, - [3133] = 2701, - [3134] = 399, - [3135] = 401, - [3136] = 3136, - [3137] = 3112, - [3138] = 3138, - [3139] = 3124, - [3140] = 3117, - [3141] = 3126, - [3142] = 3127, - [3143] = 3111, - [3144] = 3144, - [3145] = 2747, - [3146] = 2746, - [3147] = 3116, - [3148] = 2706, - [3149] = 3149, - [3150] = 3112, - [3151] = 3119, - [3152] = 3124, - [3153] = 3112, - [3154] = 3117, - [3155] = 3124, - [3156] = 3117, - [3157] = 3126, - [3158] = 3127, - [3159] = 3111, - [3160] = 2803, - [3161] = 3121, - [3162] = 3126, - [3163] = 3127, - [3164] = 360, - [3165] = 3111, - [3166] = 3123, - [3167] = 3111, - [3168] = 2753, - [3169] = 3136, - [3170] = 2614, - [3171] = 3112, - [3172] = 3172, - [3173] = 3124, - [3174] = 3117, - [3175] = 3126, - [3176] = 3127, - [3177] = 3111, - [3178] = 3178, - [3179] = 2803, - [3180] = 2803, - [3181] = 3181, - [3182] = 3120, - [3183] = 2729, - [3184] = 3136, - [3185] = 3112, - [3186] = 3138, - [3187] = 3124, - [3188] = 3117, - [3189] = 3126, - [3190] = 3127, - [3191] = 3111, - [3192] = 3178, - [3193] = 2760, - [3194] = 3144, - [3195] = 3195, - [3196] = 3196, - [3197] = 2803, - [3198] = 3112, - [3199] = 3112, - [3200] = 3124, - [3201] = 3117, - [3202] = 3126, - [3203] = 3127, - [3204] = 3111, - [3205] = 3126, - [3206] = 3127, - [3207] = 3117, - [3208] = 3126, - [3209] = 3127, - [3210] = 3111, - [3211] = 321, - [3212] = 3112, - [3213] = 3213, - [3214] = 3124, - [3215] = 3117, - [3216] = 3126, - [3217] = 3127, - [3218] = 3111, - [3219] = 3219, - [3220] = 2803, - [3221] = 3116, - [3222] = 3149, - [3223] = 3112, - [3224] = 3127, - [3225] = 3124, - [3226] = 3112, - [3227] = 3124, - [3228] = 3124, - [3229] = 3117, - [3230] = 3126, - [3231] = 3127, - [3232] = 3111, - [3233] = 3117, - [3234] = 3138, - [3235] = 2714, - [3236] = 3236, - [3237] = 3112, + [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] = 3124, - [3240] = 3119, - [3241] = 3117, - [3242] = 3112, - [3243] = 3126, - [3244] = 3124, - [3245] = 3117, - [3246] = 3126, - [3247] = 3127, - [3248] = 3111, - [3249] = 3127, - [3250] = 3111, - [3251] = 3178, - [3252] = 3126, - [3253] = 3132, - [3254] = 3121, - [3255] = 3120, - [3256] = 3213, - [3257] = 3126, - [3258] = 3112, - [3259] = 3127, - [3260] = 3124, - [3261] = 3117, - [3262] = 3126, - [3263] = 3127, - [3264] = 3111, - [3265] = 3111, - [3266] = 3144, - [3267] = 3124, - [3268] = 3127, + [3239] = 3239, + [3240] = 3239, + [3241] = 3241, + [3242] = 3242, + [3243] = 3243, + [3244] = 3225, + [3245] = 3245, + [3246] = 3224, + [3247] = 3247, + [3248] = 3248, + [3249] = 3249, + [3250] = 3226, + [3251] = 3251, + [3252] = 3252, + [3253] = 3253, + [3254] = 3254, + [3255] = 3235, + [3256] = 3256, + [3257] = 3257, + [3258] = 3258, + [3259] = 3226, + [3260] = 3227, + [3261] = 3233, + [3262] = 3238, + [3263] = 3242, + [3264] = 3256, + [3265] = 3265, + [3266] = 3266, + [3267] = 3267, + [3268] = 3268, [3269] = 3269, - [3270] = 321, - [3271] = 3124, - [3272] = 3127, - [3273] = 2803, - [3274] = 321, - [3275] = 3124, - [3276] = 3127, - [3277] = 401, - [3278] = 3278, - [3279] = 3124, - [3280] = 3127, - [3281] = 3281, - [3282] = 3112, - [3283] = 3283, - [3284] = 3124, - [3285] = 3117, - [3286] = 2803, - [3287] = 3124, - [3288] = 3288, - [3289] = 3289, + [3270] = 3237, + [3271] = 3271, + [3272] = 3227, + [3273] = 3239, + [3274] = 3233, + [3275] = 3241, + [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] = 3291, - [3292] = 3289, - [3293] = 3290, - [3294] = 3294, + [3291] = 3266, + [3292] = 3228, + [3293] = 3229, + [3294] = 3238, [3295] = 3295, - [3296] = 3296, - [3297] = 3297, - [3298] = 3298, - [3299] = 3299, + [3296] = 3267, + [3297] = 3251, + [3298] = 3252, + [3299] = 3235, [3300] = 3300, - [3301] = 3301, - [3302] = 3302, - [3303] = 3303, - [3304] = 3304, - [3305] = 3305, - [3306] = 3306, - [3307] = 3307, - [3308] = 3308, - [3309] = 3291, - [3310] = 3294, - [3311] = 3296, - [3312] = 3312, - [3313] = 3304, - [3314] = 3312, - [3315] = 3315, - [3316] = 3316, - [3317] = 3297, - [3318] = 3318, - [3319] = 3299, - [3320] = 3084, - [3321] = 3321, - [3322] = 3322, - [3323] = 3323, - [3324] = 3324, - [3325] = 3318, - [3326] = 3326, - [3327] = 3327, - [3328] = 3328, - [3329] = 3300, - [3330] = 3330, - [3331] = 3331, - [3332] = 3315, - [3333] = 3301, - [3334] = 2771, - [3335] = 3303, - [3336] = 3316, - [3337] = 3305, - [3338] = 3338, - [3339] = 3306, - [3340] = 3307, - [3341] = 3308, - [3342] = 3330, - [3343] = 3291, - [3344] = 3344, - [3345] = 3294, - [3346] = 3296, - [3347] = 3347, - [3348] = 960, - [3349] = 961, - [3350] = 963, - [3351] = 3305, - [3352] = 3304, - [3353] = 3312, - [3354] = 3289, - [3355] = 3290, - [3356] = 3315, - [3357] = 3316, - [3358] = 3297, - [3359] = 3306, - [3360] = 3307, - [3361] = 3361, - [3362] = 3297, - [3363] = 3321, - [3364] = 3299, - [3365] = 3321, - [3366] = 3301, - [3367] = 3322, - [3368] = 3303, - [3369] = 3323, - [3370] = 3305, - [3371] = 3306, - [3372] = 3307, - [3373] = 3308, - [3374] = 3291, - [3375] = 3294, - [3376] = 3296, - [3377] = 3324, - [3378] = 3304, - [3379] = 3312, - [3380] = 3315, - [3381] = 3316, - [3382] = 3318, - [3383] = 399, - [3384] = 3326, - [3385] = 3327, - [3386] = 3321, - [3387] = 3322, - [3388] = 3323, - [3389] = 3324, - [3390] = 3318, - [3391] = 3326, - [3392] = 3327, - [3393] = 3328, - [3394] = 3300, - [3395] = 3330, - [3396] = 3331, - [3397] = 3328, - [3398] = 3300, - [3399] = 3330, - [3400] = 3331, - [3401] = 3322, + [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, + [3400] = 3400, + [3401] = 3285, [3402] = 3402, - [3403] = 3338, - [3404] = 399, - [3405] = 3323, - [3406] = 3324, - [3407] = 399, + [3403] = 3237, + [3404] = 3276, + [3405] = 3405, + [3406] = 3276, + [3407] = 3226, [3408] = 3408, - [3409] = 3344, - [3410] = 3410, - [3411] = 3338, - [3412] = 3347, - [3413] = 3318, - [3414] = 3326, - [3415] = 3299, - [3416] = 3327, - [3417] = 3328, - [3418] = 3300, - [3419] = 3289, - [3420] = 3290, - [3421] = 3421, - [3422] = 3344, - [3423] = 3331, - [3424] = 3330, - [3425] = 3331, - [3426] = 3347, - [3427] = 3297, - [3428] = 3308, - [3429] = 3299, - [3430] = 3291, - [3431] = 3301, - [3432] = 3432, - [3433] = 3303, - [3434] = 3289, - [3435] = 3305, - [3436] = 3306, - [3437] = 3307, - [3438] = 3308, - [3439] = 3291, - [3440] = 3294, - [3441] = 3296, - [3442] = 3294, - [3443] = 3304, - [3444] = 3312, - [3445] = 3315, - [3446] = 3316, - [3447] = 3296, - [3448] = 3290, - [3449] = 3408, - [3450] = 3304, - [3451] = 3321, - [3452] = 3322, - [3453] = 3323, - [3454] = 3324, - [3455] = 3318, - [3456] = 3326, - [3457] = 3327, - [3458] = 3328, - [3459] = 3300, - [3460] = 3330, - [3461] = 3331, - [3462] = 3338, + [3409] = 3409, + [3410] = 3258, + [3411] = 3227, + [3412] = 3228, + [3413] = 3285, + [3414] = 3414, + [3415] = 3415, + [3416] = 3233, + [3417] = 3238, + [3418] = 3242, + [3419] = 3256, + [3420] = 3229, + [3421] = 1019, + [3422] = 3276, + [3423] = 3265, + [3424] = 1020, + [3425] = 1021, + [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] = 3289, - [3465] = 3290, - [3466] = 3312, - [3467] = 3315, - [3468] = 3338, + [3464] = 1018, + [3465] = 3268, + [3466] = 3225, + [3467] = 3258, + [3468] = 3243, [3469] = 3469, - [3470] = 3470, - [3471] = 3316, - [3472] = 3344, - [3473] = 3410, - [3474] = 3344, - [3475] = 3297, - [3476] = 3476, - [3477] = 3347, - [3478] = 3299, - [3479] = 3479, - [3480] = 3323, - [3481] = 3324, - [3482] = 3318, - [3483] = 3326, - [3484] = 3301, - [3485] = 3485, - [3486] = 3303, - [3487] = 3347, - [3488] = 3297, + [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] = 3305, - [3491] = 3306, - [3492] = 3299, - [3493] = 3307, - [3494] = 3308, - [3495] = 3291, - [3496] = 3301, - [3497] = 3497, - [3498] = 3294, - [3499] = 3296, - [3500] = 3303, - [3501] = 3302, - [3502] = 3502, - [3503] = 3503, - [3504] = 3504, - [3505] = 3304, - [3506] = 3305, - [3507] = 3306, - [3508] = 3307, - [3509] = 3308, - [3510] = 3291, - [3511] = 3294, - [3512] = 3296, - [3513] = 3312, - [3514] = 3514, - [3515] = 3515, - [3516] = 3315, - [3517] = 3304, - [3518] = 3312, - [3519] = 3315, - [3520] = 3316, - [3521] = 3316, - [3522] = 3522, - [3523] = 951, + [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] = 3525, - [3526] = 3321, - [3527] = 3322, - [3528] = 3323, - [3529] = 3324, - [3530] = 3318, - [3531] = 3321, - [3532] = 3322, - [3533] = 3323, - [3534] = 3324, - [3535] = 3326, - [3536] = 3327, - [3537] = 3328, - [3538] = 3300, - [3539] = 3330, - [3540] = 3331, - [3541] = 3321, - [3542] = 3542, - [3543] = 3322, - [3544] = 3323, - [3545] = 3324, - [3546] = 2673, - [3547] = 3289, - [3548] = 3338, - [3549] = 2677, - [3550] = 3326, - [3551] = 3290, - [3552] = 3479, - [3553] = 3553, - [3554] = 3344, - [3555] = 3318, - [3556] = 3326, - [3557] = 3347, - [3558] = 2697, - [3559] = 3327, - [3560] = 3297, - [3561] = 3328, - [3562] = 3504, - [3563] = 3470, - [3564] = 3302, - [3565] = 3299, - [3566] = 3503, - [3567] = 3504, - [3568] = 3568, - [3569] = 3569, - [3570] = 3570, - [3571] = 3571, - [3572] = 3572, - [3573] = 3485, - [3574] = 3318, - [3575] = 3326, - [3576] = 3300, - [3577] = 3514, - [3578] = 3515, - [3579] = 3289, - [3580] = 3290, - [3581] = 2721, - [3582] = 3301, - [3583] = 3327, - [3584] = 3328, - [3585] = 3330, - [3586] = 3303, - [3587] = 3331, - [3588] = 3305, - [3589] = 3300, - [3590] = 3330, - [3591] = 3331, - [3592] = 3297, - [3593] = 3306, - [3594] = 3299, - [3595] = 3307, - [3596] = 3301, - [3597] = 3308, - [3598] = 3303, - [3599] = 3291, - [3600] = 3305, - [3601] = 3306, - [3602] = 3307, - [3603] = 3308, - [3604] = 3291, - [3605] = 3294, - [3606] = 3296, - [3607] = 3294, - [3608] = 3304, - [3609] = 3312, - [3610] = 3315, - [3611] = 3316, - [3612] = 3296, - [3613] = 3502, - [3614] = 3497, - [3615] = 3304, - [3616] = 3321, - [3617] = 3322, - [3618] = 3323, - [3619] = 3324, - [3620] = 3318, - [3621] = 3503, - [3622] = 3504, - [3623] = 3326, - [3624] = 3327, - [3625] = 3625, - [3626] = 3361, - [3627] = 3463, - [3628] = 3525, - [3629] = 3629, - [3630] = 3630, - [3631] = 3328, - [3632] = 3514, - [3633] = 3515, - [3634] = 3300, - [3635] = 3330, - [3636] = 3331, - [3637] = 3312, - [3638] = 3522, - [3639] = 3315, - [3640] = 3316, - [3641] = 3641, - [3642] = 3344, - [3643] = 3338, + [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, + [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] = 3344, - [3646] = 3646, - [3647] = 3321, - [3648] = 3503, - [3649] = 3504, - [3650] = 3322, - [3651] = 3344, - [3652] = 3301, - [3653] = 3323, - [3654] = 3324, - [3655] = 3568, - [3656] = 3338, - [3657] = 952, - [3658] = 3514, - [3659] = 3515, - [3660] = 954, - [3661] = 3347, - [3662] = 3662, - [3663] = 3318, - [3664] = 3326, - [3665] = 3327, + [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] = 3328, - [3668] = 3300, - [3669] = 3330, - [3670] = 3289, - [3671] = 3290, - [3672] = 3331, - [3673] = 3307, - [3674] = 3503, - [3675] = 3504, - [3676] = 3629, - [3677] = 3338, - [3678] = 3497, - [3679] = 3679, - [3680] = 3308, - [3681] = 3297, - [3682] = 3682, - [3683] = 3299, - [3684] = 3514, - [3685] = 3515, - [3686] = 3686, - [3687] = 3687, - [3688] = 3301, - [3689] = 3338, - [3690] = 3303, - [3691] = 3304, - [3692] = 3305, - [3693] = 3306, - [3694] = 3307, - [3695] = 3308, - [3696] = 3291, - [3697] = 3294, - [3698] = 3296, - [3699] = 3699, - [3700] = 3503, - [3701] = 3504, - [3702] = 3344, - [3703] = 3569, - [3704] = 3304, - [3705] = 3312, - [3706] = 3687, - [3707] = 3315, - [3708] = 3553, - [3709] = 3316, - [3710] = 3514, - [3711] = 3515, - [3712] = 3289, - [3713] = 3347, - [3714] = 3630, - [3715] = 3290, - [3716] = 3344, - [3717] = 3321, - [3718] = 3322, - [3719] = 3323, - [3720] = 3324, - [3721] = 3318, - [3722] = 3326, - [3723] = 3327, - [3724] = 3328, - [3725] = 3300, - [3726] = 3503, - [3727] = 3504, - [3728] = 3728, - [3729] = 3330, - [3730] = 3298, - [3731] = 3408, - [3732] = 3410, - [3733] = 3485, - [3734] = 3502, - [3735] = 3522, - [3736] = 3514, - [3737] = 3515, - [3738] = 3331, - [3739] = 3288, - [3740] = 3344, - [3741] = 3347, - [3742] = 3312, - [3743] = 3743, - [3744] = 3553, - [3745] = 3338, - [3746] = 3289, - [3747] = 3321, - [3748] = 3315, - [3749] = 3749, - [3750] = 3316, - [3751] = 3344, - [3752] = 3503, - [3753] = 3504, - [3754] = 3347, - [3755] = 3755, - [3756] = 3291, - [3757] = 3347, - [3758] = 3758, - [3759] = 3570, + [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, + [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, + [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] = 3322, - [3762] = 3514, - [3763] = 3515, - [3764] = 3289, - [3765] = 3290, - [3766] = 3289, - [3767] = 3290, - [3768] = 3294, - [3769] = 3769, - [3770] = 3306, - [3771] = 3625, - [3772] = 3772, - [3773] = 3289, - [3774] = 3290, - [3775] = 3646, - [3776] = 3296, - [3777] = 3297, - [3778] = 3503, - [3779] = 3504, - [3780] = 3571, - [3781] = 3687, - [3782] = 3542, - [3783] = 3299, - [3784] = 3289, - [3785] = 3297, - [3786] = 3301, - [3787] = 3572, - [3788] = 3514, - [3789] = 3515, - [3790] = 3790, - [3791] = 3299, - [3792] = 3290, - [3793] = 3301, - [3794] = 3303, - [3795] = 3303, - [3796] = 3347, - [3797] = 3305, - [3798] = 3306, - [3799] = 3307, - [3800] = 3308, - [3801] = 3291, - [3802] = 3294, - [3803] = 3296, - [3804] = 3503, - [3805] = 3504, - [3806] = 3297, - [3807] = 3305, - [3808] = 3299, - [3809] = 3304, - [3810] = 3301, - [3811] = 3305, - [3812] = 3303, - [3813] = 3813, - [3814] = 3514, - [3815] = 3515, - [3816] = 3305, - [3817] = 3306, - [3818] = 3312, - [3819] = 3315, - [3820] = 3316, - [3821] = 3306, - [3822] = 3307, - [3823] = 3308, - [3824] = 3323, - [3825] = 3321, - [3826] = 3322, - [3827] = 3323, - [3828] = 3324, - [3829] = 3318, - [3830] = 3503, - [3831] = 3504, - [3832] = 3307, - [3833] = 3308, - [3834] = 3291, - [3835] = 3294, - [3836] = 3296, - [3837] = 3326, - [3838] = 3304, - [3839] = 3312, - [3840] = 3514, - [3841] = 3515, - [3842] = 3315, - [3843] = 3316, - [3844] = 3327, - [3845] = 3328, - [3846] = 3300, - [3847] = 3330, - [3848] = 3331, - [3849] = 3291, - [3850] = 3294, - [3851] = 3296, - [3852] = 3338, - [3853] = 3324, - [3854] = 3304, - [3855] = 3338, - [3856] = 3503, - [3857] = 3504, - [3858] = 3858, - [3859] = 3312, - [3860] = 3860, - [3861] = 3315, - [3862] = 3862, - [3863] = 3321, - [3864] = 3322, - [3865] = 3323, - [3866] = 3514, - [3867] = 3515, - [3868] = 3324, - [3869] = 3470, - [3870] = 3316, - [3871] = 3297, - [3872] = 3872, - [3873] = 3344, - [3874] = 2894, - [3875] = 955, - [3876] = 3347, - [3877] = 3321, - [3878] = 3322, - [3879] = 3323, - [3880] = 3324, - [3881] = 3318, - [3882] = 3503, - [3883] = 3504, - [3884] = 3568, - [3885] = 3569, - [3886] = 3570, - [3887] = 3571, - [3888] = 3572, - [3889] = 3290, - [3890] = 3318, - [3891] = 3326, - [3892] = 3514, - [3893] = 3515, - [3894] = 3894, - [3895] = 3338, - [3896] = 3326, - [3897] = 3289, - [3898] = 3290, - [3899] = 3899, - [3900] = 3327, - [3901] = 3328, - [3902] = 3300, - [3903] = 3330, - [3904] = 3331, - [3905] = 3297, - [3906] = 950, - [3907] = 3299, - [3908] = 3503, - [3909] = 3504, - [3910] = 3327, - [3911] = 3911, - [3912] = 3327, - [3913] = 3328, - [3914] = 3300, - [3915] = 3330, - [3916] = 3331, - [3917] = 3301, - [3918] = 3514, - [3919] = 3515, - [3920] = 3920, - [3921] = 3303, - [3922] = 3299, - [3923] = 3305, - [3924] = 3306, - [3925] = 3307, - [3926] = 3308, - [3927] = 3291, - [3928] = 3294, - [3929] = 3296, - [3930] = 3297, - [3931] = 3304, - [3932] = 3312, - [3933] = 3315, - [3934] = 3503, - [3935] = 3504, - [3936] = 3316, - [3937] = 3625, - [3938] = 3361, - [3939] = 3463, - [3940] = 3525, - [3941] = 3629, - [3942] = 3630, - [3943] = 3943, - [3944] = 3514, - [3945] = 3515, - [3946] = 3946, - [3947] = 3299, - [3948] = 3338, - [3949] = 3321, - [3950] = 3322, - [3951] = 3323, - [3952] = 3324, - [3953] = 3318, - [3954] = 3326, - [3955] = 3327, - [3956] = 3328, - [3957] = 3300, - [3958] = 3330, - [3959] = 3331, - [3960] = 956, - [3961] = 3301, - [3962] = 3301, - [3963] = 3347, - [3964] = 3303, - [3965] = 3344, - [3966] = 3338, - [3967] = 3303, - [3968] = 3305, - [3969] = 3347, - [3970] = 3514, - [3971] = 3306, - [3972] = 3344, - [3973] = 3755, - [3974] = 3974, - [3975] = 3347, - [3976] = 3503, - [3977] = 3298, - [3978] = 3524, - [3979] = 3743, - [3980] = 3662, - [3981] = 3295, - [3982] = 3679, - [3983] = 3489, - [3984] = 3758, - [3985] = 3760, - [3986] = 3920, - [3987] = 3682, - [3988] = 3699, - [3989] = 3328, - [3990] = 3515, - [3991] = 3307, - [3992] = 3524, - [3993] = 3743, - [3994] = 3662, - [3995] = 3295, - [3996] = 3679, - [3997] = 3489, - [3998] = 3758, - [3999] = 3760, - [4000] = 3920, - [4001] = 3682, - [4002] = 3699, - [4003] = 3524, - [4004] = 3743, - [4005] = 3524, - [4006] = 3743, - [4007] = 3524, - [4008] = 3743, - [4009] = 3524, - [4010] = 3743, - [4011] = 3524, - [4012] = 3743, - [4013] = 3524, - [4014] = 3743, - [4015] = 3524, - [4016] = 3743, - [4017] = 3524, - [4018] = 3743, - [4019] = 3524, - [4020] = 3743, - [4021] = 3524, - [4022] = 3743, - [4023] = 3524, - [4024] = 3743, - [4025] = 3524, - [4026] = 3743, - [4027] = 3524, - [4028] = 3743, - [4029] = 3743, - [4030] = 3743, - [4031] = 3743, - [4032] = 3743, - [4033] = 3911, - [4034] = 3288, - [4035] = 3911, - [4036] = 3288, - [4037] = 3911, - [4038] = 3288, - [4039] = 3911, - [4040] = 3288, - [4041] = 3911, - [4042] = 3288, - [4043] = 3911, - [4044] = 3288, - [4045] = 3911, - [4046] = 3288, - [4047] = 3911, - [4048] = 3288, - [4049] = 3911, - [4050] = 3308, - [4051] = 3911, - [4052] = 3288, - [4053] = 3911, - [4054] = 3288, - [4055] = 3911, - [4056] = 3288, - [4057] = 3911, - [4058] = 3288, - [4059] = 3911, - [4060] = 3288, - [4061] = 3911, - [4062] = 3288, - [4063] = 3288, - [4064] = 3288, - [4065] = 3288, - [4066] = 3288, - [4067] = 3303, + [3761] = 3237, + [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, + [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, }; static const TSCharacterRange aux_sym_shortcode_naked_string_token1_character_set_1[] = { @@ -6604,52 +6533,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(2050); + if (eof) ADVANCE(2051); ADVANCE_MAP( - ' ', 2086, - '"', 2084, - '$', 2104, - '\'', 2082, - ')', 2104, - '-', 2104, - ':', 2104, - '=', 2078, - '[', 2104, - '\\', 2085, - '`', 2071, - '{', 2073, - '|', 2120, - '}', 2074, + ' ', 2087, + '"', 2085, + '$', 2105, + '\'', 2083, + ')', 2105, + '-', 2105, + ':', 2105, + '=', 2079, + '[', 2105, + '\\', 2086, + '`', 2072, + '{', 2074, + '|', 2121, + '}', 2075, ); if (('!' <= lookahead && lookahead <= '(') || ('+' <= lookahead && lookahead <= ';') || lookahead == '?' || lookahead == '@' || lookahead == ']' || - lookahead == '~') ADVANCE(2104); + lookahead == '~') ADVANCE(2105); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(2097); - if (lookahead != 0) ADVANCE(2084); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(2098); + if (lookahead != 0) ADVANCE(2085); END_STATE(); case 1: ADVANCE_MAP( '\t', 2128, ' ', 2125, - '!', 2121, - '$', 2064, - '&', 2114, - '[', 2055, - '\\', 2124, - ']', 2072, - '{', 2073, - '|', 2120, - 0x3030, 2119, - '+', 2117, - '-', 2117, - ',', 2122, - '.', 2122, - ';', 2122, - '?', 2122, + '!', 2122, + '$', 2065, + '&', 2115, + '[', 2056, + '\\', 2046, + ']', 2073, + '{', 2074, + '|', 2121, + 0x3030, 2120, + '+', 2118, + '-', 2118, + ',', 2123, + '.', 2123, + ';', 2123, + '?', 2123, ); if (('#' <= lookahead && lookahead <= '%') || lookahead == '(' || @@ -6676,7 +6605,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfe63 || lookahead == 0xff0d || lookahead == 0x10d6e || - lookahead == 0x10ead) ADVANCE(2113); + lookahead == 0x10ead) ADVANCE(2114); if (lookahead == 0x203c || lookahead == 0x2049 || lookahead == 0x303d || @@ -6718,29 +6647,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x1fade || (0x1faea <= lookahead && lookahead <= 0x1faef) || (0x1faf9 <= lookahead && lookahead <= 0x1faff) || - (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2119); - if (set_contains(aux_sym_pandoc_str_token1_character_set_4, 78, lookahead)) ADVANCE(2115); - if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 809, lookahead)) ADVANCE(2117); + (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( - '!', 2121, - '$', 2064, - '&', 2114, - '[', 2055, - '\\', 2124, - ']', 2056, - '{', 2073, - '|', 2120, - 0x3030, 2119, + '!', 2122, + '$', 2065, + '&', 2115, + '[', 2056, + '\\', 2046, + ']', 2057, + '{', 2074, + '|', 2121, + 0x3030, 2120, '\t', 2126, ' ', 2126, - '+', 2117, - '-', 2117, - ',', 2122, - '.', 2122, - ';', 2122, - '?', 2122, + '+', 2118, + '-', 2118, + ',', 2123, + '.', 2123, + ';', 2123, + '?', 2123, ); if (('#' <= lookahead && lookahead <= '%') || lookahead == '(' || @@ -6767,7 +6696,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfe63 || lookahead == 0xff0d || lookahead == 0x10d6e || - lookahead == 0x10ead) ADVANCE(2113); + lookahead == 0x10ead) ADVANCE(2114); if (lookahead == 0x203c || lookahead == 0x2049 || lookahead == 0x303d || @@ -6809,29 +6738,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x1fade || (0x1faea <= lookahead && lookahead <= 0x1faef) || (0x1faf9 <= lookahead && lookahead <= 0x1faff) || - (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2119); - if (set_contains(aux_sym_pandoc_str_token1_character_set_4, 78, lookahead)) ADVANCE(2115); - if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 809, lookahead)) ADVANCE(2117); + (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( - '!', 2121, - '$', 2064, - '&', 2114, - '[', 2055, - '\\', 2124, - ']', 2112, - '{', 2073, - '|', 2120, - 0x3030, 2119, + '!', 2122, + '$', 2065, + '&', 2115, + '[', 2056, + '\\', 2046, + ']', 2113, + '{', 2074, + '|', 2121, + 0x3030, 2120, '\t', 2127, ' ', 2127, - '+', 2117, - '-', 2117, - ',', 2122, - '.', 2122, - ';', 2122, - '?', 2122, + '+', 2118, + '-', 2118, + ',', 2123, + '.', 2123, + ';', 2123, + '?', 2123, ); if (('#' <= lookahead && lookahead <= '%') || lookahead == '(' || @@ -6858,7 +6787,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfe63 || lookahead == 0xff0d || lookahead == 0x10d6e || - lookahead == 0x10ead) ADVANCE(2113); + lookahead == 0x10ead) ADVANCE(2114); if (lookahead == 0x203c || lookahead == 0x2049 || lookahead == 0x303d || @@ -6900,28 +6829,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x1fade || (0x1faea <= lookahead && lookahead <= 0x1faef) || (0x1faf9 <= lookahead && lookahead <= 0x1faff) || - (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2119); - if (set_contains(aux_sym_pandoc_str_token1_character_set_4, 78, lookahead)) ADVANCE(2115); - if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 809, lookahead)) ADVANCE(2117); + (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( - '!', 2121, - '$', 2064, - '&', 2114, - '[', 2055, - '\\', 2124, - '{', 2073, - '|', 2120, - 0x3030, 2119, + '!', 2122, + '$', 2065, + '&', 2115, + '[', 2056, + '\\', 2046, + '{', 2074, + '|', 2121, + 0x3030, 2120, '\t', 2128, ' ', 2128, - '+', 2117, - '-', 2117, - ',', 2122, - '.', 2122, - ';', 2122, - '?', 2122, + '+', 2118, + '-', 2118, + ',', 2123, + '.', 2123, + ';', 2123, + '?', 2123, ); if (('#' <= lookahead && lookahead <= '%') || lookahead == '(' || @@ -6948,7 +6877,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfe63 || lookahead == 0xff0d || lookahead == 0x10d6e || - lookahead == 0x10ead) ADVANCE(2113); + lookahead == 0x10ead) ADVANCE(2114); if (lookahead == 0x203c || lookahead == 0x2049 || lookahead == 0x303d || @@ -6990,19 +6919,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x1fade || (0x1faea <= lookahead && lookahead <= 0x1faef) || (0x1faf9 <= lookahead && lookahead <= 0x1faff) || - (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2119); - if (set_contains(aux_sym_pandoc_str_token1_character_set_4, 78, lookahead)) ADVANCE(2115); - if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 809, lookahead)) ADVANCE(2117); + (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 5: ADVANCE_MAP( - '"', 2089, + '"', 2090, '#', 2041, '.', 2039, - '=', 2078, - ']', 2112, - '{', 2073, - '}', 2074, + '=', 2079, + ']', 2113, + '{', 2074, + '}', 2075, '\t', 386, ' ', 386, ); @@ -7010,68 +6939,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2081); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2082); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(2089); - if (lookahead == '\'') ADVANCE(2082); - if (lookahead == '-') ADVANCE(2098); - if (lookahead == '0') ADVANCE(2106); - if (lookahead == '=') ADVANCE(2078); + if (lookahead == '"') ADVANCE(2090); + if (lookahead == '\'') ADVANCE(2083); + if (lookahead == '-') ADVANCE(2099); + if (lookahead == '0') ADVANCE(2107); + if (lookahead == '=') ADVANCE(2079); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2128); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2107); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2108); if (('!' <= lookahead && lookahead <= ')') || ('+' <= lookahead && lookahead <= ';') || lookahead == '?' || lookahead == '@' || lookahead == '[' || lookahead == ']' || - lookahead == '~') ADVANCE(2103); + lookahead == '~') ADVANCE(2104); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2096); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2097); END_STATE(); case 7: - if (lookahead == '"') ADVANCE(2089); - if (lookahead == '\\') ADVANCE(2094); - if (lookahead != 0) ADVANCE(2093); + if (lookahead == '"') ADVANCE(2090); + if (lookahead == '\\') ADVANCE(2095); + if (lookahead != 0) ADVANCE(2094); END_STATE(); case 8: ADVANCE_MAP( '#', 2041, - '$', 2063, - ')', 2062, - '-', 2052, + '$', 2064, + ')', 2063, + '-', 2053, '.', 2038, - ':', 2051, - '{', 2073, - '}', 2074, + ':', 2052, + '{', 2074, + '}', 2075, '\t', 2128, ' ', 2128, ); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2111); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2112); END_STATE(); case 9: - if (lookahead == '$') ADVANCE(2048); - if (lookahead == '\\') ADVANCE(2069); - if (lookahead != 0) ADVANCE(2068); + if (lookahead == '$') ADVANCE(2049); + if (lookahead == '\\') ADVANCE(2070); + if (lookahead != 0) ADVANCE(2069); END_STATE(); case 10: - if (lookahead == '\'') ADVANCE(2082); - if (lookahead == '\\') ADVANCE(2087); - if (lookahead != 0) ADVANCE(2086); + if (lookahead == '\'') ADVANCE(2083); + if (lookahead == '\\') ADVANCE(2088); + if (lookahead != 0) ADVANCE(2087); END_STATE(); case 11: - if (lookahead == ')') ADVANCE(2062); - if (lookahead == '\\') ADVANCE(2061); + if (lookahead == ')') ADVANCE(2063); + if (lookahead == '\\') ADVANCE(2062); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2128); if (lookahead != 0 && - lookahead != '{') ADVANCE(2059); + lookahead != '{') ADVANCE(2060); END_STATE(); case 12: if (lookahead == '1') ADVANCE(2018); @@ -7079,7 +7008,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 13: if (lookahead == '1') ADVANCE(2032); - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); END_STATE(); case 14: if (lookahead == '1') ADVANCE(240); @@ -7103,11 +7032,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '8') ADVANCE(19); END_STATE(); case 19: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); END_STATE(); case 20: ADVANCE_MAP( - ';', 2053, + ';', 2054, 'A', 452, 'B', 442, 'E', 147, @@ -7134,7 +7063,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); END_STATE(); case 21: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'A') ADVANCE(1628); if (lookahead == 'a') ADVANCE(1621); if (lookahead == 'd') ADVANCE(1457); @@ -7143,46 +7072,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'x') ADVANCE(1162); END_STATE(); case 22: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'A') ADVANCE(1740); END_STATE(); case 23: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'A') ADVANCE(1740); if (lookahead == 'V') ADVANCE(931); END_STATE(); case 24: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'B') ADVANCE(405); END_STATE(); case 25: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'B') ADVANCE(405); if (lookahead == 'D') ADVANCE(1511); END_STATE(); case 26: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'B') ADVANCE(405); if (lookahead == 'E') ADVANCE(1599); END_STATE(); case 27: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'B') ADVANCE(405); if (lookahead == 'L') ADVANCE(933); END_STATE(); case 28: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'B') ADVANCE(405); if (lookahead == 'R') ADVANCE(1184); END_STATE(); case 29: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'B') ADVANCE(405); if (lookahead == 'U') ADVANCE(1555); END_STATE(); case 30: ADVANCE_MAP( - ';', 2053, + ';', 2054, 'C', 1522, 'D', 1496, 'E', 1231, @@ -7198,25 +7127,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); END_STATE(); case 31: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'C') ADVANCE(431); END_STATE(); case 32: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'D') ADVANCE(1457); if (lookahead == 'E') ADVANCE(1599); END_STATE(); case 33: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'D') ADVANCE(304); END_STATE(); case 34: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'E') ADVANCE(19); END_STATE(); case 35: ADVANCE_MAP( - ';', 2053, + ';', 2054, 'E', 19, 'a', 1536, 'c', 1927, @@ -7230,7 +7159,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 36: ADVANCE_MAP( - ';', 2053, + ';', 2054, 'E', 19, 'd', 1457, 'e', 107, @@ -7242,18 +7171,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); END_STATE(); case 37: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'E') ADVANCE(19); if (lookahead == 'd') ADVANCE(1457); if (lookahead == 'v') ADVANCE(2034); END_STATE(); case 38: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'E') ADVANCE(19); if (lookahead == 'e') ADVANCE(192); END_STATE(); case 39: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'E') ADVANCE(19); if (lookahead == 'i') ADVANCE(740); if (lookahead == 'o') ADVANCE(1762); @@ -7261,7 +7190,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 40: ADVANCE_MAP( - ';', 2053, + ';', 2054, 'E', 164, 'a', 680, 'b', 1608, @@ -7282,11 +7211,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); END_STATE(); case 41: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'E') ADVANCE(1599); END_STATE(); case 42: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'E') ADVANCE(1599); if (lookahead == 'F') ADVANCE(1956); if (lookahead == 'G') ADVANCE(1749); @@ -7295,13 +7224,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(1177); END_STATE(); case 43: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'E') ADVANCE(1599); if (lookahead == 'F') ADVANCE(1956); if (lookahead == 'T') ADVANCE(1177); END_STATE(); case 44: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'E') ADVANCE(1599); if (lookahead == 'G') ADVANCE(1749); if (lookahead == 'L') ADVANCE(831); @@ -7309,33 +7238,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'T') ADVANCE(1177); END_STATE(); case 45: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'E') ADVANCE(1599); if (lookahead == 'S') ADVANCE(1317); END_STATE(); case 46: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'E') ADVANCE(1599); if (lookahead == 'S') ADVANCE(1317); if (lookahead == 'T') ADVANCE(1177); END_STATE(); case 47: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'G') ADVANCE(19); END_STATE(); case 48: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'H') ADVANCE(19); END_STATE(); case 49: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'I') ADVANCE(1439); if (lookahead == 'S') ADVANCE(1920); if (lookahead == 'U') ADVANCE(1420); END_STATE(); case 50: ADVANCE_MAP( - ';', 2053, + ';', 2054, 'J', 613, 'a', 679, 'c', 472, @@ -7351,7 +7280,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 51: ADVANCE_MAP( - ';', 2053, + ';', 2054, 'J', 613, 'a', 1359, 'b', 1608, @@ -7367,64 +7296,64 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); END_STATE(); case 52: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'L') ADVANCE(831); END_STATE(); case 53: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'N') ADVANCE(19); END_STATE(); case 54: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'P') ADVANCE(19); END_STATE(); case 55: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'P') ADVANCE(1307); END_STATE(); case 56: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'T') ADVANCE(19); END_STATE(); case 57: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'T') ADVANCE(1177); END_STATE(); case 58: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'Y') ADVANCE(19); END_STATE(); case 59: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(643); if (lookahead == 'p') ADVANCE(1273); END_STATE(); case 60: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(994); if (lookahead == 'o') ADVANCE(1872); END_STATE(); case 61: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(2036); END_STATE(); case 62: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(637); if (lookahead == 'l') ADVANCE(19); END_STATE(); case 63: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1609); END_STATE(); case 64: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(651); if (lookahead == 'p') ADVANCE(19); END_STATE(); case 65: ADVANCE_MAP( - ';', 2053, + ';', 2054, 'a', 1537, 'c', 1927, 'e', 116, @@ -7437,14 +7366,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); END_STATE(); case 66: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(172); if (lookahead == 's') ADVANCE(1115); if (lookahead == 't') ADVANCE(19); END_STATE(); case 67: ADVANCE_MAP( - ';', 2053, + ';', 2054, 'a', 1536, 'b', 143, 'f', 1762, @@ -7459,7 +7388,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 68: ADVANCE_MAP( - ';', 2053, + ';', 2054, 'a', 709, 'c', 1092, 'd', 2030, @@ -7471,7 +7400,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); END_STATE(); case 69: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(709); if (lookahead == 'i') ADVANCE(740); if (lookahead == 'o') ADVANCE(1762); @@ -7480,14 +7409,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'e') ADVANCE(19); END_STATE(); case 70: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1628); if (lookahead == 'c') ADVANCE(1508); if (lookahead == 'h') ADVANCE(507); if (lookahead == 't') ADVANCE(1644); END_STATE(); case 71: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1628); if (lookahead == 'd') ADVANCE(139); if (lookahead == 'i') ADVANCE(996); @@ -7496,34 +7425,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'v') ADVANCE(19); END_STATE(); case 72: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1762); END_STATE(); case 73: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1773); if (lookahead == 'c') ADVANCE(1092); if (lookahead == 'd') ADVANCE(1464); END_STATE(); case 74: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1217); END_STATE(); case 75: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1662); if (lookahead == 'e') ADVANCE(780); if (lookahead == 'i') ADVANCE(1676); if (lookahead == 'y') ADVANCE(19); END_STATE(); case 76: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1222); if (lookahead == 'c') ADVANCE(1817); if (lookahead == 'g') ADVANCE(19); END_STATE(); case 77: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1362); if (lookahead == 'b') ADVANCE(1731); if (lookahead == 'c') ADVANCE(435); @@ -7531,34 +7460,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 's') ADVANCE(19); END_STATE(); case 78: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1362); if (lookahead == 's') ADVANCE(1272); if (lookahead == 'd' || lookahead == 'v') ADVANCE(19); END_STATE(); case 79: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(702); END_STATE(); case 80: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1657); if (lookahead == 'c') ADVANCE(1049); if (lookahead == 'o') ADVANCE(1696); if (lookahead == 'y') ADVANCE(19); END_STATE(); case 81: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1242); END_STATE(); case 82: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1625); if (lookahead == 'f') ADVANCE(19); END_STATE(); case 83: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1571); if (lookahead == 'c') ADVANCE(1947); if (lookahead == 'e') ADVANCE(1591); @@ -7566,44 +7495,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 's') ADVANCE(1114); END_STATE(); case 84: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1122); if (lookahead == 'e') ADVANCE(201); END_STATE(); case 85: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a') ADVANCE(1316); if (lookahead == 's') ADVANCE(1217); if (lookahead == 't') ADVANCE(19); END_STATE(); case 86: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'b') ADVANCE(1457); if (lookahead == 'c') ADVANCE(1092); if (lookahead == 'f') ADVANCE(185); END_STATE(); case 87: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'b') ADVANCE(19); if (lookahead == 'd') ADVANCE(223); END_STATE(); case 88: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'b') ADVANCE(19); if (lookahead == 'h') ADVANCE(1809); END_STATE(); case 89: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'b') ADVANCE(63); END_STATE(); case 90: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'b') ADVANCE(63); if (lookahead == 'd') ADVANCE(19); END_STATE(); case 91: ADVANCE_MAP( - ';', 2053, + ';', 2054, 'b', 143, 'f', 1762, 'h', 1198, @@ -7614,12 +7543,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); END_STATE(); case 92: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'b') ADVANCE(405); if (lookahead == 'e') ADVANCE(1591); END_STATE(); case 93: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'b') ADVANCE(1684); if (lookahead == 'c') ADVANCE(435); if (lookahead == 'd') ADVANCE(1457); @@ -7627,11 +7556,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 's') ADVANCE(19); END_STATE(); case 94: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'c') ADVANCE(19); END_STATE(); case 95: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'c') ADVANCE(127); if (lookahead == 'f') ADVANCE(1425); if (lookahead == 'm') ADVANCE(1081); @@ -7640,12 +7569,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'e') ADVANCE(19); END_STATE(); case 96: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'c') ADVANCE(83); END_STATE(); case 97: ADVANCE_MAP( - ';', 2053, + ';', 2054, 'c', 622, 'd', 1457, 'h', 1658, @@ -7656,7 +7585,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); END_STATE(); case 98: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'c') ADVANCE(622); if (lookahead == 'd') ADVANCE(1457); if (lookahead == 'l') ADVANCE(362); @@ -7664,59 +7593,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(430); END_STATE(); case 99: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'c') ADVANCE(126); END_STATE(); case 100: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'c') ADVANCE(621); if (lookahead == 'd') ADVANCE(1501); if (lookahead == 'l') ADVANCE(134); END_STATE(); case 101: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'c') ADVANCE(621); if (lookahead == 'd') ADVANCE(1502); if (lookahead == 'g') ADVANCE(134); if (lookahead == 's') ADVANCE(528); END_STATE(); case 102: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'c') ADVANCE(459); if (lookahead == 'e') ADVANCE(1027); if (lookahead == 'l') ADVANCE(514); if (lookahead == 'p') ADVANCE(1669); END_STATE(); case 103: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'c') ADVANCE(1092); if (lookahead == 'w') ADVANCE(19); END_STATE(); case 104: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'c') ADVANCE(1927); if (lookahead == 'e') ADVANCE(99); END_STATE(); case 105: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'c') ADVANCE(1927); if (lookahead == 'e' || lookahead == 'r') ADVANCE(19); END_STATE(); case 106: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'c') ADVANCE(549); if (lookahead == 'f') ADVANCE(1137); if (lookahead == 'o') ADVANCE(735); if (lookahead == 't') ADVANCE(102); END_STATE(); case 107: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'd') ADVANCE(1457); END_STATE(); case 108: ADVANCE_MAP( - ';', 2053, + ';', 2054, 'd', 1457, 'e', 192, 'g', 34, @@ -7727,24 +7656,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); END_STATE(); case 109: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'd') ADVANCE(1457); if (lookahead == 's') ADVANCE(225); if (lookahead == 'E' || lookahead == 'v') ADVANCE(19); END_STATE(); case 110: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'd') ADVANCE(19); END_STATE(); case 111: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'd') ADVANCE(19); if (lookahead == 'l') ADVANCE(785); END_STATE(); case 112: ADVANCE_MAP( - ';', 2053, + ';', 2054, 'd', 1458, 'e', 107, 'h', 1775, @@ -7758,34 +7687,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'E') ADVANCE(19); END_STATE(); case 113: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'd') ADVANCE(1450); if (lookahead == 'l') ADVANCE(845); if (lookahead == 'r') ADVANCE(1145); END_STATE(); case 114: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'd') ADVANCE(1450); if (lookahead == 'l') ADVANCE(845); if (lookahead == 'u') ADVANCE(1536); END_STATE(); case 115: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'd') ADVANCE(1450); if (lookahead == 'l') ADVANCE(938); if (lookahead == 'q') ADVANCE(19); if (lookahead == 'r') ADVANCE(1188); END_STATE(); case 116: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'd') ADVANCE(1122); END_STATE(); case 117: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(19); END_STATE(); case 118: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(19); if (lookahead == 'l') ADVANCE(785); if (lookahead == 'm') ADVANCE(1792); @@ -7794,182 +7723,182 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'z') ADVANCE(442); END_STATE(); case 119: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(19); if (lookahead == 's') ADVANCE(873); END_STATE(); case 120: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1609); END_STATE(); case 121: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1592); if (lookahead == 'm') ADVANCE(1174); if (lookahead == 'p') ADVANCE(1307); if (lookahead == 's') ADVANCE(1606); END_STATE(); case 122: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1817); END_STATE(); case 123: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1020); END_STATE(); case 124: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(965); END_STATE(); case 125: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(192); END_STATE(); case 126: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1591); END_STATE(); case 127: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1591); if (lookahead == 'l') ADVANCE(806); END_STATE(); case 128: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(201); END_STATE(); case 129: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(711); if (lookahead == 'i') ADVANCE(1346); if (lookahead == 'o') ADVANCE(764); END_STATE(); case 130: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(188); END_STATE(); case 131: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1596); END_STATE(); case 132: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1596); if (lookahead == 'n') ADVANCE(850); END_STATE(); case 133: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(458); END_STATE(); case 134: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1762); END_STATE(); case 135: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1793); END_STATE(); case 136: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1417); if (lookahead == 'f') ADVANCE(19); END_STATE(); case 137: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1694); if (lookahead == 's') ADVANCE(821); END_STATE(); case 138: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1650); if (lookahead == 's') ADVANCE(1536); END_STATE(); case 139: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1660); if (lookahead == 'f' || lookahead == 'm') ADVANCE(19); END_STATE(); case 140: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e') ADVANCE(1649); END_STATE(); case 141: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'f') ADVANCE(19); END_STATE(); case 142: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'f') ADVANCE(19); if (lookahead == 'r') ADVANCE(1446); if (lookahead == 'y') ADVANCE(202); END_STATE(); case 143: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'f') ADVANCE(1762); END_STATE(); case 144: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'f') ADVANCE(1822); if (lookahead == 'g') ADVANCE(19); if (lookahead == 'q') ADVANCE(193); if (lookahead == 's') ADVANCE(101); END_STATE(); case 145: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'f') ADVANCE(1363); if (lookahead == 'l') ADVANCE(807); END_STATE(); case 146: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'f') ADVANCE(1848); if (lookahead == 'q') ADVANCE(193); if (lookahead == 's') ADVANCE(201); END_STATE(); case 147: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'g') ADVANCE(19); END_STATE(); case 148: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'g') ADVANCE(19); if (lookahead == 'l') ADVANCE(1838); if (lookahead == 'm') ADVANCE(1570); END_STATE(); case 149: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'g') ADVANCE(1817); END_STATE(); case 150: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'g') ADVANCE(785); END_STATE(); case 151: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'h') ADVANCE(19); END_STATE(); case 152: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'h') ADVANCE(19); if (lookahead == 'l') ADVANCE(1488); END_STATE(); case 153: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'h') ADVANCE(1447); END_STATE(); case 154: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'i') ADVANCE(1095); if (lookahead == 'n') ADVANCE(977); if (lookahead == 'o') ADVANCE(1838); END_STATE(); case 155: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'i') ADVANCE(759); if (lookahead == 'o') ADVANCE(1380); END_STATE(); case 156: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'i') ADVANCE(1639); if (lookahead == 'u') ADVANCE(1854); if (lookahead == 'E' || @@ -7977,374 +7906,374 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'y') ADVANCE(19); END_STATE(); case 157: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'i') ADVANCE(1639); if (lookahead == 'y') ADVANCE(19); END_STATE(); case 158: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'i') ADVANCE(1397); if (lookahead == 'p') ADVANCE(511); if (lookahead == 's') ADVANCE(19); END_STATE(); case 159: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'i') ADVANCE(1876); END_STATE(); case 160: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'i') ADVANCE(724); END_STATE(); case 161: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'i') ADVANCE(1372); if (lookahead == 'n') ADVANCE(1105); END_STATE(); case 162: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'i') ADVANCE(1299); END_STATE(); case 163: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'i') ADVANCE(1436); if (lookahead == 'l') ADVANCE(19); if (lookahead == 's') ADVANCE(107); END_STATE(); case 164: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'l') ADVANCE(19); END_STATE(); case 165: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'l') ADVANCE(19); if (lookahead == 'q') ADVANCE(193); if (lookahead == 's') ADVANCE(100); END_STATE(); case 166: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'l') ADVANCE(1875); if (lookahead == 'e' || lookahead == 'f') ADVANCE(19); END_STATE(); case 167: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'l') ADVANCE(1817); END_STATE(); case 168: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'l') ADVANCE(1488); END_STATE(); case 169: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'l') ADVANCE(1488); if (lookahead == 'v') ADVANCE(19); END_STATE(); case 170: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'l') ADVANCE(785); if (lookahead == 'd' || lookahead == 'e') ADVANCE(19); END_STATE(); case 171: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'l') ADVANCE(1879); if (lookahead == 'm') ADVANCE(431); END_STATE(); case 172: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'l') ADVANCE(1258); END_STATE(); case 173: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'm') ADVANCE(19); END_STATE(); case 174: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'm') ADVANCE(138); END_STATE(); case 175: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'm') ADVANCE(465); END_STATE(); case 176: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'n') ADVANCE(19); END_STATE(); case 177: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'n') ADVANCE(484); END_STATE(); case 178: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'o') ADVANCE(19); END_STATE(); case 179: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'o') ADVANCE(197); END_STATE(); case 180: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'o') ADVANCE(164); END_STATE(); case 181: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'o') ADVANCE(955); END_STATE(); case 182: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'o') ADVANCE(1986); END_STATE(); case 183: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'o') ADVANCE(1975); END_STATE(); case 184: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'o') ADVANCE(709); END_STATE(); case 185: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'o') ADVANCE(1663); END_STATE(); case 186: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'o') ADVANCE(1892); END_STATE(); case 187: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'o') ADVANCE(1402); if (lookahead == 's') ADVANCE(19); END_STATE(); case 188: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'o') ADVANCE(1427); END_STATE(); case 189: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'p') ADVANCE(19); END_STATE(); case 190: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'p') ADVANCE(955); if (lookahead == 't') ADVANCE(161); END_STATE(); case 191: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'p') ADVANCE(1688); END_STATE(); case 192: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'q') ADVANCE(19); END_STATE(); case 193: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'q') ADVANCE(19); if (lookahead == 's') ADVANCE(1302); END_STATE(); case 194: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'q') ADVANCE(193); if (lookahead == 's') ADVANCE(19); END_STATE(); case 195: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'q') ADVANCE(192); END_STATE(); case 196: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'q') ADVANCE(1938); END_STATE(); case 197: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'r') ADVANCE(19); END_STATE(); case 198: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'r') ADVANCE(423); if (lookahead == 's') ADVANCE(107); END_STATE(); case 199: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'r') ADVANCE(1130); END_STATE(); case 200: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'r') ADVANCE(1108); END_STATE(); case 201: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 's') ADVANCE(19); END_STATE(); case 202: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 's') ADVANCE(1609); END_STATE(); case 203: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 's') ADVANCE(110); if (lookahead == 'v') ADVANCE(19); END_STATE(); case 204: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 's') ADVANCE(90); END_STATE(); case 205: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 's') ADVANCE(2008); if (lookahead == 'v') ADVANCE(19); END_STATE(); case 206: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 's') ADVANCE(1322); END_STATE(); case 207: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 's') ADVANCE(1217); END_STATE(); case 208: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 's') ADVANCE(1880); END_STATE(); case 209: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 's') ADVANCE(821); if (lookahead == 'v') ADVANCE(19); END_STATE(); case 210: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 's') ADVANCE(875); END_STATE(); case 211: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 's') ADVANCE(888); if (lookahead == 'E' || lookahead == 'e') ADVANCE(19); END_STATE(); case 212: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 's') ADVANCE(1942); END_STATE(); case 213: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 't') ADVANCE(19); END_STATE(); case 214: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 't') ADVANCE(391); END_STATE(); case 215: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 't') ADVANCE(1447); END_STATE(); case 216: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 't') ADVANCE(140); END_STATE(); case 217: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 't') ADVANCE(593); END_STATE(); case 218: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 't') ADVANCE(1217); END_STATE(); case 219: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 't') ADVANCE(691); if (lookahead == 'v') ADVANCE(19); END_STATE(); case 220: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 't') ADVANCE(538); END_STATE(); case 221: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 't') ADVANCE(1471); END_STATE(); case 222: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 't') ADVANCE(1130); END_STATE(); case 223: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'u') ADVANCE(19); END_STATE(); case 224: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'u') ADVANCE(1100); END_STATE(); case 225: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'v') ADVANCE(19); END_STATE(); case 226: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'v') ADVANCE(2034); END_STATE(); case 227: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'v') ADVANCE(582); END_STATE(); case 228: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'v') ADVANCE(887); END_STATE(); case 229: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'a' || lookahead == 'h') ADVANCE(19); END_STATE(); case 230: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'b' || lookahead == 'e') ADVANCE(19); END_STATE(); case 231: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'c' || lookahead == 'w') ADVANCE(19); END_STATE(); case 232: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e' || lookahead == 'g') ADVANCE(19); END_STATE(); case 233: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e' || lookahead == 'l') ADVANCE(19); END_STATE(); case 234: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'f' || lookahead == 'v') ADVANCE(19); END_STATE(); case 235: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'e' || lookahead == 'f') ADVANCE(19); END_STATE(); case 236: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'E' || lookahead == 'a' || lookahead == 'j') ADVANCE(19); END_STATE(); case 237: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == '4' || lookahead == '5' || lookahead == '8') ADVANCE(19); END_STATE(); case 238: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'D' || lookahead == 'U' || lookahead == 'd' || lookahead == 'u') ADVANCE(19); END_STATE(); case 239: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (lookahead == 'H' || lookahead == 'L' || lookahead == 'R' || @@ -8353,63 +8282,63 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'r') ADVANCE(19); END_STATE(); case 240: - if (lookahead == ';') ADVANCE(2053); + if (lookahead == ';') ADVANCE(2054); if (('2' <= lookahead && lookahead <= '6') || lookahead == '8') ADVANCE(19); END_STATE(); case 241: - if (lookahead == ';') ADVANCE(2054); + if (lookahead == ';') ADVANCE(2055); END_STATE(); case 242: - if (lookahead == ';') ADVANCE(2054); + if (lookahead == ';') ADVANCE(2055); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(243); END_STATE(); case 243: - if (lookahead == ';') ADVANCE(2054); + if (lookahead == ';') ADVANCE(2055); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(241); END_STATE(); case 244: - if (lookahead == ';') ADVANCE(2054); + if (lookahead == ';') ADVANCE(2055); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); case 245: - if (lookahead == ';') ADVANCE(2054); + if (lookahead == ';') ADVANCE(2055); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(244); END_STATE(); case 246: - if (lookahead == ';') ADVANCE(2054); + if (lookahead == ';') ADVANCE(2055); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(245); END_STATE(); case 247: - if (lookahead == ';') ADVANCE(2054); + if (lookahead == ';') ADVANCE(2055); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(246); END_STATE(); case 248: - if (lookahead == ';') ADVANCE(2054); + if (lookahead == ';') ADVANCE(2055); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(241); END_STATE(); case 249: - if (lookahead == ';') ADVANCE(2054); + if (lookahead == ';') ADVANCE(2055); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); END_STATE(); case 250: - if (lookahead == ';') ADVANCE(2054); + if (lookahead == ';') ADVANCE(2055); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(249); END_STATE(); case 251: - if (lookahead == ';') ADVANCE(2054); + if (lookahead == ';') ADVANCE(2055); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(250); END_STATE(); case 252: - if (lookahead == ';') ADVANCE(2054); + if (lookahead == ';') ADVANCE(2055); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(251); @@ -9330,25 +9259,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'W') ADVANCE(1133); END_STATE(); case 384: - if (lookahead == '\\') ADVANCE(2085); + if (lookahead == '\\') ADVANCE(2086); if (lookahead != 0 && lookahead != ' ' && - lookahead != '\'') ADVANCE(2084); + lookahead != '\'') ADVANCE(2085); END_STATE(); case 385: - if (lookahead == '\\') ADVANCE(2092); + if (lookahead == '\\') ADVANCE(2093); if (lookahead != 0 && lookahead != ' ' && - lookahead != '"') ADVANCE(2091); + lookahead != '"') ADVANCE(2092); END_STATE(); case 386: - if (lookahead == ']') ADVANCE(2112); + if (lookahead == ']') ADVANCE(2113); if (lookahead == '\t' || lookahead == ' ') ADVANCE(386); END_STATE(); case 387: - if (lookahead == '`') ADVANCE(2071); - if (lookahead != 0) ADVANCE(2070); + if (lookahead == '`') ADVANCE(2072); + if (lookahead != 0) ADVANCE(2071); END_STATE(); case 388: ADVANCE_MAP( @@ -15028,14 +14957,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'z') ADVANCE(871); END_STATE(); case 2016: - if (lookahead == '{') ADVANCE(2073); + if (lookahead == '{') ADVANCE(2074); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2128); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2081); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2082); END_STATE(); case 2017: if (lookahead == '\t' || @@ -15043,7 +14972,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != '$') ADVANCE(2066); + lookahead != '$') ADVANCE(2067); END_STATE(); case 2018: if (lookahead == '2' || @@ -15129,17 +15058,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 2038: if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2076); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2077); END_STATE(); case 2039: if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2077); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2078); END_STATE(); case 2040: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2111); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2112); END_STATE(); case 2041: if (lookahead == '-' || @@ -15147,62 +15076,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2075); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2076); END_STATE(); case 2042: - if (set_contains(aux_sym_pandoc_str_token1_character_set_4, 78, lookahead)) ADVANCE(2119); + if (set_contains(aux_sym_pandoc_str_token1_character_set_4, 78, lookahead)) ADVANCE(2120); END_STATE(); case 2043: - if (set_contains(aux_sym_pandoc_str_token1_character_set_5, 770, lookahead)) ADVANCE(2117); + if (set_contains(aux_sym_pandoc_str_token1_character_set_5, 770, lookahead)) ADVANCE(2118); END_STATE(); case 2044: if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(2110); + lookahead != '}') ADVANCE(2111); END_STATE(); case 2045: if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != ' ' && - lookahead != '$') ADVANCE(2066); + lookahead != '$') ADVANCE(2067); END_STATE(); case 2046: if (lookahead != 0 && - lookahead != '\n') ADVANCE(2060); + lookahead != '\n') ADVANCE(2114); END_STATE(); case 2047: if (lookahead != 0 && - lookahead != '\n') ADVANCE(2123); + lookahead != '\n') ADVANCE(2061); END_STATE(); case 2048: if (lookahead != 0 && - lookahead != '$') ADVANCE(2068); + lookahead != '\n') ADVANCE(2124); END_STATE(); case 2049: - if (eof) ADVANCE(2050); + if (lookahead != 0 && + lookahead != '$') ADVANCE(2069); + END_STATE(); + case 2050: + if (eof) ADVANCE(2051); ADVANCE_MAP( - '!', 2121, - '"', 2090, - '$', 2064, - '&', 2114, - '\'', 2083, - ':', 2051, - '[', 2055, - '\\', 2124, - '{', 2073, - '|', 2120, - '}', 2074, - 0x3030, 2119, + '!', 2122, + '"', 2091, + '$', 2065, + '&', 2115, + '\'', 2084, + ':', 2052, + '[', 2056, + '\\', 2046, + '{', 2074, + '|', 2121, + '}', 2075, + 0x3030, 2120, '\t', 2128, ' ', 2128, - '+', 2117, - '-', 2117, - ',', 2122, - '.', 2122, - ';', 2122, - '?', 2122, + '+', 2118, + '-', 2118, + ',', 2123, + '.', 2123, + ';', 2123, + '?', 2123, ); if (('#' <= lookahead && lookahead <= ')') || lookahead == '/' || @@ -15226,7 +15159,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfe63 || lookahead == 0xff0d || lookahead == 0x10d6e || - lookahead == 0x10ead) ADVANCE(2113); + lookahead == 0x10ead) ADVANCE(2114); if (lookahead == 0x203c || lookahead == 0x2049 || lookahead == 0x303d || @@ -15268,307 +15201,307 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x1fade || (0x1faea <= lookahead && lookahead <= 0x1faef) || (0x1faf9 <= lookahead && lookahead <= 0x1faff) || - (0x1fc00 <= lookahead && lookahead <= 0x1fffd)) ADVANCE(2119); - if (set_contains(aux_sym_pandoc_str_token1_character_set_4, 78, lookahead)) ADVANCE(2115); - if (set_contains(aux_sym_pandoc_str_token1_character_set_1, 809, lookahead)) ADVANCE(2117); - END_STATE(); - case 2050: - ACCEPT_TOKEN(ts_builtin_sym_end); + (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 2051: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 2052: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 2053: - ACCEPT_TOKEN(sym_entity_reference); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 2054: - ACCEPT_TOKEN(sym_numeric_character_reference); + ACCEPT_TOKEN(sym_entity_reference); END_STATE(); case 2055: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(sym_numeric_character_reference); END_STATE(); case 2056: - ACCEPT_TOKEN(aux_sym_pandoc_span_token1); - if (lookahead == '(') ADVANCE(2058); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 2057: - ACCEPT_TOKEN(anon_sym_BANG_LBRACK); + ACCEPT_TOKEN(aux_sym_pandoc_span_token1); + if (lookahead == '(') ADVANCE(2059); END_STATE(); case 2058: - ACCEPT_TOKEN(aux_sym_target_token1); + ACCEPT_TOKEN(anon_sym_BANG_LBRACK); END_STATE(); case 2059: - ACCEPT_TOKEN(aux_sym_target_token2); + ACCEPT_TOKEN(aux_sym_target_token1); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_target_token2); - if (lookahead == '\\') ADVANCE(2046); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_target_token2); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(2060); + if (lookahead == '\\') ADVANCE(2047); END_STATE(); case 2062: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(aux_sym_target_token2); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(2061); END_STATE(); case 2063: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 2064: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '$') ADVANCE(2067); END_STATE(); case 2065: + ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '$') ADVANCE(2068); + END_STATE(); + case 2066: ACCEPT_TOKEN(aux_sym_pandoc_math_token1); - if (lookahead == '$') ADVANCE(2066); - if (lookahead == '\\') ADVANCE(2065); + if (lookahead == '$') ADVANCE(2067); + if (lookahead == '\\') ADVANCE(2066); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2017); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(2066); + lookahead != '\n') ADVANCE(2067); END_STATE(); - case 2066: + case 2067: ACCEPT_TOKEN(aux_sym_pandoc_math_token1); - if (lookahead == '\\') ADVANCE(2065); + if (lookahead == '\\') ADVANCE(2066); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2017); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && - lookahead != '$') ADVANCE(2066); - END_STATE(); - case 2067: - ACCEPT_TOKEN(anon_sym_DOLLAR_DOLLAR); + lookahead != '$') ADVANCE(2067); END_STATE(); case 2068: - ACCEPT_TOKEN(aux_sym_pandoc_display_math_token1); - if (lookahead == '$') ADVANCE(2048); - if (lookahead == '\\') ADVANCE(2069); - if (lookahead != 0) ADVANCE(2068); + ACCEPT_TOKEN(anon_sym_DOLLAR_DOLLAR); END_STATE(); case 2069: ACCEPT_TOKEN(aux_sym_pandoc_display_math_token1); - if (lookahead == '$') ADVANCE(2068); - if (lookahead == '\\') ADVANCE(2069); - if (lookahead != 0) ADVANCE(2068); + if (lookahead == '$') ADVANCE(2049); + if (lookahead == '\\') ADVANCE(2070); + if (lookahead != 0) ADVANCE(2069); END_STATE(); case 2070: + ACCEPT_TOKEN(aux_sym_pandoc_display_math_token1); + if (lookahead == '$') ADVANCE(2069); + if (lookahead == '\\') ADVANCE(2070); + if (lookahead != 0) ADVANCE(2069); + END_STATE(); + case 2071: ACCEPT_TOKEN(aux_sym_pandoc_code_span_token1); if (lookahead != 0 && - lookahead != '`') ADVANCE(2070); + lookahead != '`') ADVANCE(2071); END_STATE(); - case 2071: + case 2072: ACCEPT_TOKEN(aux_sym_pandoc_code_span_token2); END_STATE(); - case 2072: + case 2073: ACCEPT_TOKEN(aux_sym_insert_token1); END_STATE(); - case 2073: + case 2074: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 2074: + case 2075: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 2075: + case 2076: ACCEPT_TOKEN(aux_sym_commonmark_specifier_token1); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2075); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2076); END_STATE(); - case 2076: + case 2077: ACCEPT_TOKEN(aux_sym__commonmark_specifier_start_with_class_token1); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2076); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2077); END_STATE(); - case 2077: + case 2078: ACCEPT_TOKEN(aux_sym__commonmark_specifier_start_with_class_token2); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2077); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2078); END_STATE(); - case 2078: + case 2079: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 2079: + case 2080: ACCEPT_TOKEN(anon_sym_SQUOTE_SQUOTE); END_STATE(); - case 2080: + case 2081: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE); END_STATE(); - case 2081: + case 2082: ACCEPT_TOKEN(sym__commonmark_naked_value); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2081); - END_STATE(); - case 2082: - ACCEPT_TOKEN(aux_sym__commonmark_single_quote_string_token1); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2082); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym__commonmark_single_quote_string_token1); - if (lookahead == '\'') ADVANCE(2079); END_STATE(); case 2084: - ACCEPT_TOKEN(aux_sym__commonmark_single_quote_string_token2); + ACCEPT_TOKEN(aux_sym__commonmark_single_quote_string_token1); + if (lookahead == '\'') ADVANCE(2080); END_STATE(); case 2085: ACCEPT_TOKEN(aux_sym__commonmark_single_quote_string_token2); - if (lookahead == '\'') ADVANCE(2084); END_STATE(); case 2086: - ACCEPT_TOKEN(aux_sym__commonmark_single_quote_string_token3); + ACCEPT_TOKEN(aux_sym__commonmark_single_quote_string_token2); + if (lookahead == '\'') ADVANCE(2085); END_STATE(); case 2087: ACCEPT_TOKEN(aux_sym__commonmark_single_quote_string_token3); - if (lookahead == '\'') ADVANCE(2088); END_STATE(); case 2088: - ACCEPT_TOKEN(aux_sym__commonmark_single_quote_string_token4); + ACCEPT_TOKEN(aux_sym__commonmark_single_quote_string_token3); + if (lookahead == '\'') ADVANCE(2089); END_STATE(); case 2089: - ACCEPT_TOKEN(aux_sym__commonmark_double_quote_string_token1); + ACCEPT_TOKEN(aux_sym__commonmark_single_quote_string_token4); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym__commonmark_double_quote_string_token1); - if (lookahead == '"') ADVANCE(2080); END_STATE(); case 2091: - ACCEPT_TOKEN(aux_sym__commonmark_double_quote_string_token2); + ACCEPT_TOKEN(aux_sym__commonmark_double_quote_string_token1); + if (lookahead == '"') ADVANCE(2081); END_STATE(); case 2092: ACCEPT_TOKEN(aux_sym__commonmark_double_quote_string_token2); - if (lookahead == '"') ADVANCE(2091); END_STATE(); case 2093: - ACCEPT_TOKEN(aux_sym__commonmark_double_quote_string_token3); + ACCEPT_TOKEN(aux_sym__commonmark_double_quote_string_token2); + if (lookahead == '"') ADVANCE(2092); END_STATE(); case 2094: ACCEPT_TOKEN(aux_sym__commonmark_double_quote_string_token3); - if (lookahead == '"') ADVANCE(2095); END_STATE(); case 2095: - ACCEPT_TOKEN(aux_sym__commonmark_double_quote_string_token4); + ACCEPT_TOKEN(aux_sym__commonmark_double_quote_string_token3); + if (lookahead == '"') ADVANCE(2096); END_STATE(); case 2096: + ACCEPT_TOKEN(aux_sym__commonmark_double_quote_string_token4); + END_STATE(); + case 2097: ACCEPT_TOKEN(sym_shortcode_name); - if (lookahead == '?') ADVANCE(2099); + if (lookahead == '?') ADVANCE(2100); 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(2103); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(2104); if (('-' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2096); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2097); END_STATE(); - case 2097: + case 2098: ACCEPT_TOKEN(sym_shortcode_name); 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 == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2097); - END_STATE(); - case 2098: - ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '0') ADVANCE(2106); - if (lookahead == '?') ADVANCE(2099); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(2107); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2103); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2098); END_STATE(); case 2099: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '=') ADVANCE(2105); - if (lookahead == '?') ADVANCE(2099); - if (set_contains(aux_sym_shortcode_naked_string_token2_character_set_1, 10, lookahead)) ADVANCE(2099); + 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); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '?') ADVANCE(2099); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2102); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2109); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2103); + if (lookahead == '=') ADVANCE(2106); + if (lookahead == '?') ADVANCE(2100); + if (set_contains(aux_sym_shortcode_naked_string_token2_character_set_1, 10, lookahead)) ADVANCE(2100); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '?') ADVANCE(2099); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2108); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2103); + 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); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '?') ADVANCE(2099); + 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(2103); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2104); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); - if (lookahead == '?') ADVANCE(2099); - if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2103); + if (lookahead == '?') ADVANCE(2100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2110); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2104); 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); END_STATE(); case 2105: - ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token2); - if (set_contains(aux_sym_shortcode_naked_string_token2_character_set_1, 10, lookahead)) ADVANCE(2105); + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token1); + if (set_contains(aux_sym_shortcode_naked_string_token1_character_set_1, 9, lookahead)) ADVANCE(2105); END_STATE(); case 2106: - ACCEPT_TOKEN(sym_shortcode_number); - if (lookahead == '.') ADVANCE(2101); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2100); + ACCEPT_TOKEN(aux_sym_shortcode_naked_string_token2); + if (set_contains(aux_sym_shortcode_naked_string_token2_character_set_1, 10, lookahead)) ADVANCE(2106); END_STATE(); case 2107: ACCEPT_TOKEN(sym_shortcode_number); - if (lookahead == '.') ADVANCE(2101); + if (lookahead == '.') ADVANCE(2102); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2100); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2107); + lookahead == 'e') ADVANCE(2101); END_STATE(); case 2108: ACCEPT_TOKEN(sym_shortcode_number); + if (lookahead == '.') ADVANCE(2102); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2100); + lookahead == 'e') ADVANCE(2101); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2108); END_STATE(); case 2109: ACCEPT_TOKEN(sym_shortcode_number); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(2101); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2109); END_STATE(); case 2110: + ACCEPT_TOKEN(sym_shortcode_number); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2110); + END_STATE(); + case 2111: ACCEPT_TOKEN(aux_sym_citation_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '}') ADVANCE(2110); + lookahead != '}') ADVANCE(2111); END_STATE(); - case 2111: + case 2112: ACCEPT_TOKEN(aux_sym_citation_token2); if (('#' <= lookahead && lookahead <= '&') || lookahead == '+' || @@ -15581,15 +15514,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2111); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(2112); END_STATE(); - case 2112: + case 2113: ACCEPT_TOKEN(aux_sym_inline_note_token1); END_STATE(); - case 2113: + case 2114: ACCEPT_TOKEN(aux_sym_pandoc_str_token1); END_STATE(); - case 2114: + case 2115: ACCEPT_TOKEN(aux_sym_pandoc_str_token1); ADVANCE_MAP( '#', 2022, @@ -15647,89 +15580,84 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 'z', 518, ); END_STATE(); - case 2115: + 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(2118); + if (lookahead == 0xfe0f) ADVANCE(2119); if (lookahead == 0x2018 || - lookahead == 0x2019) ADVANCE(2117); - if ((0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(2116); - if (set_contains(aux_sym_pandoc_str_token1_character_set_6, 829, lookahead)) ADVANCE(2117); + 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 2116: + 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(2117); - if (set_contains(aux_sym_pandoc_str_token1_character_set_6, 829, lookahead)) ADVANCE(2117); + lookahead == 0x2019) ADVANCE(2118); + if (set_contains(aux_sym_pandoc_str_token1_character_set_6, 829, lookahead)) ADVANCE(2118); END_STATE(); - case 2117: + case 2118: ACCEPT_TOKEN(aux_sym_pandoc_str_token1); if (lookahead == '\'') ADVANCE(2043); if (lookahead == '_') ADVANCE(2043); if (lookahead == 0x2018 || - lookahead == 0x2019) ADVANCE(2117); - if (set_contains(aux_sym_pandoc_str_token1_character_set_2, 828, lookahead)) ADVANCE(2117); + lookahead == 0x2019) ADVANCE(2118); + if (set_contains(aux_sym_pandoc_str_token1_character_set_2, 828, lookahead)) ADVANCE(2118); END_STATE(); - case 2118: + case 2119: ACCEPT_TOKEN(aux_sym_pandoc_str_token1); if (lookahead == 0x200d) ADVANCE(2042); END_STATE(); - case 2119: + case 2120: ACCEPT_TOKEN(aux_sym_pandoc_str_token1); if (lookahead == 0x200d) ADVANCE(2042); if (lookahead == 0xfe0f || - (0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(2118); + (0x1f3fb <= lookahead && lookahead <= 0x1f3ff)) ADVANCE(2119); END_STATE(); - case 2120: + case 2121: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 2121: + case 2122: ACCEPT_TOKEN(aux_sym__prose_punctuation_token1); - if (lookahead == '[') ADVANCE(2057); + if (lookahead == '[') ADVANCE(2058); if (lookahead == '!' || lookahead == ',' || lookahead == '.' || lookahead == ';' || - lookahead == '?') ADVANCE(2122); + lookahead == '?') ADVANCE(2123); END_STATE(); - case 2122: + case 2123: ACCEPT_TOKEN(aux_sym__prose_punctuation_token1); if (lookahead == '!' || lookahead == ',' || lookahead == '.' || lookahead == ';' || - lookahead == '?') ADVANCE(2122); - END_STATE(); - case 2123: - ACCEPT_TOKEN(sym__code_line); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(2123); + lookahead == '?') ADVANCE(2123); END_STATE(); case 2124: - ACCEPT_TOKEN(aux_sym_pandoc_line_break_token1); + ACCEPT_TOKEN(sym__code_line); if (lookahead != 0 && - lookahead != '\n') ADVANCE(2113); + lookahead != '\n') ADVANCE(2124); END_STATE(); case 2125: ACCEPT_TOKEN(sym__whitespace); if (lookahead == '\t') ADVANCE(2128); if (lookahead == ' ') ADVANCE(2125); - if (lookahead == ']') ADVANCE(2072); + if (lookahead == ']') ADVANCE(2073); END_STATE(); case 2126: ACCEPT_TOKEN(sym__whitespace); - if (lookahead == ']') ADVANCE(2056); + if (lookahead == ']') ADVANCE(2057); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2126); END_STATE(); case 2127: ACCEPT_TOKEN(sym__whitespace); - if (lookahead == ']') ADVANCE(2112); + if (lookahead == ']') ADVANCE(2113); if (lookahead == '\t' || lookahead == ' ') ADVANCE(2127); END_STATE(); @@ -15745,150 +15673,150 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 2049, .external_lex_state = 2}, - [2] = {.lex_state = 2049, .external_lex_state = 3}, - [3] = {.lex_state = 2049, .external_lex_state = 3}, - [4] = {.lex_state = 2049, .external_lex_state = 3}, - [5] = {.lex_state = 2049, .external_lex_state = 3}, - [6] = {.lex_state = 2049, .external_lex_state = 3}, - [7] = {.lex_state = 2049, .external_lex_state = 3}, - [8] = {.lex_state = 2049, .external_lex_state = 3}, - [9] = {.lex_state = 2049, .external_lex_state = 3}, - [10] = {.lex_state = 2049, .external_lex_state = 3}, - [11] = {.lex_state = 2049, .external_lex_state = 3}, - [12] = {.lex_state = 2049, .external_lex_state = 3}, - [13] = {.lex_state = 2049, .external_lex_state = 3}, - [14] = {.lex_state = 2049, .external_lex_state = 3}, - [15] = {.lex_state = 2049, .external_lex_state = 3}, - [16] = {.lex_state = 2049, .external_lex_state = 3}, - [17] = {.lex_state = 2049, .external_lex_state = 3}, - [18] = {.lex_state = 2049, .external_lex_state = 3}, - [19] = {.lex_state = 2049, .external_lex_state = 3}, - [20] = {.lex_state = 2049, .external_lex_state = 4}, - [21] = {.lex_state = 2049, .external_lex_state = 4}, - [22] = {.lex_state = 2049, .external_lex_state = 4}, - [23] = {.lex_state = 2049, .external_lex_state = 4}, - [24] = {.lex_state = 2049, .external_lex_state = 4}, - [25] = {.lex_state = 2049, .external_lex_state = 4}, - [26] = {.lex_state = 2049, .external_lex_state = 4}, - [27] = {.lex_state = 2049, .external_lex_state = 4}, - [28] = {.lex_state = 2049, .external_lex_state = 4}, - [29] = {.lex_state = 2049, .external_lex_state = 4}, - [30] = {.lex_state = 2049, .external_lex_state = 4}, - [31] = {.lex_state = 2049, .external_lex_state = 4}, - [32] = {.lex_state = 2049, .external_lex_state = 4}, - [33] = {.lex_state = 2049, .external_lex_state = 4}, - [34] = {.lex_state = 2049, .external_lex_state = 4}, - [35] = {.lex_state = 2049, .external_lex_state = 4}, - [36] = {.lex_state = 2049, .external_lex_state = 4}, - [37] = {.lex_state = 2049, .external_lex_state = 4}, - [38] = {.lex_state = 2049, .external_lex_state = 5}, - [39] = {.lex_state = 2049, .external_lex_state = 5}, - [40] = {.lex_state = 2049, .external_lex_state = 6}, - [41] = {.lex_state = 2049, .external_lex_state = 5}, - [42] = {.lex_state = 2049, .external_lex_state = 5}, - [43] = {.lex_state = 2049, .external_lex_state = 5}, - [44] = {.lex_state = 2049, .external_lex_state = 5}, - [45] = {.lex_state = 2049, .external_lex_state = 5}, - [46] = {.lex_state = 2049, .external_lex_state = 5}, - [47] = {.lex_state = 2049, .external_lex_state = 6}, - [48] = {.lex_state = 2049, .external_lex_state = 5}, - [49] = {.lex_state = 2049, .external_lex_state = 5}, - [50] = {.lex_state = 2049, .external_lex_state = 5}, - [51] = {.lex_state = 2049, .external_lex_state = 5}, - [52] = {.lex_state = 2049, .external_lex_state = 5}, - [53] = {.lex_state = 2049, .external_lex_state = 6}, - [54] = {.lex_state = 2049, .external_lex_state = 5}, - [55] = {.lex_state = 2049, .external_lex_state = 5}, - [56] = {.lex_state = 2049, .external_lex_state = 5}, - [57] = {.lex_state = 2049, .external_lex_state = 5}, - [58] = {.lex_state = 2049, .external_lex_state = 5}, - [59] = {.lex_state = 2049, .external_lex_state = 5}, - [60] = {.lex_state = 2049, .external_lex_state = 7}, - [61] = {.lex_state = 2049, .external_lex_state = 7}, - [62] = {.lex_state = 2049, .external_lex_state = 2}, - [63] = {.lex_state = 2049, .external_lex_state = 2}, - [64] = {.lex_state = 2049, .external_lex_state = 7}, - [65] = {.lex_state = 2049, .external_lex_state = 7}, - [66] = {.lex_state = 2049, .external_lex_state = 7}, - [67] = {.lex_state = 2049, .external_lex_state = 7}, - [68] = {.lex_state = 2049, .external_lex_state = 7}, - [69] = {.lex_state = 2049, .external_lex_state = 7}, - [70] = {.lex_state = 2049, .external_lex_state = 2}, - [71] = {.lex_state = 2049, .external_lex_state = 7}, - [72] = {.lex_state = 2049, .external_lex_state = 7}, - [73] = {.lex_state = 2049, .external_lex_state = 7}, - [74] = {.lex_state = 2049, .external_lex_state = 5}, - [75] = {.lex_state = 2049, .external_lex_state = 5}, - [76] = {.lex_state = 2049, .external_lex_state = 5}, - [77] = {.lex_state = 2049, .external_lex_state = 2}, - [78] = {.lex_state = 2049, .external_lex_state = 2}, - [79] = {.lex_state = 2049, .external_lex_state = 2}, - [80] = {.lex_state = 2049, .external_lex_state = 7}, - [81] = {.lex_state = 2049, .external_lex_state = 7}, - [82] = {.lex_state = 2049, .external_lex_state = 7}, - [83] = {.lex_state = 2049, .external_lex_state = 5}, - [84] = {.lex_state = 2049, .external_lex_state = 5}, - [85] = {.lex_state = 2049, .external_lex_state = 5}, - [86] = {.lex_state = 2049, .external_lex_state = 2}, - [87] = {.lex_state = 2049, .external_lex_state = 7}, - [88] = {.lex_state = 2049, .external_lex_state = 7}, - [89] = {.lex_state = 2049, .external_lex_state = 2}, - [90] = {.lex_state = 2049, .external_lex_state = 7}, - [91] = {.lex_state = 2049, .external_lex_state = 2}, - [92] = {.lex_state = 2049, .external_lex_state = 5}, - [93] = {.lex_state = 2049, .external_lex_state = 5}, - [94] = {.lex_state = 2049, .external_lex_state = 5}, - [95] = {.lex_state = 2049, .external_lex_state = 2}, - [96] = {.lex_state = 2049, .external_lex_state = 7}, - [97] = {.lex_state = 2049, .external_lex_state = 7}, - [98] = {.lex_state = 2049, .external_lex_state = 7}, - [99] = {.lex_state = 2049, .external_lex_state = 2}, - [100] = {.lex_state = 2049, .external_lex_state = 2}, - [101] = {.lex_state = 2049, .external_lex_state = 5}, - [102] = {.lex_state = 2049, .external_lex_state = 5}, - [103] = {.lex_state = 2049, .external_lex_state = 5}, - [104] = {.lex_state = 2049, .external_lex_state = 7}, - [105] = {.lex_state = 2049, .external_lex_state = 2}, - [106] = {.lex_state = 2049, .external_lex_state = 2}, - [107] = {.lex_state = 2049, .external_lex_state = 2}, - [108] = {.lex_state = 2049, .external_lex_state = 7}, - [109] = {.lex_state = 2049, .external_lex_state = 7}, - [110] = {.lex_state = 2049, .external_lex_state = 5}, - [111] = {.lex_state = 2049, .external_lex_state = 5}, - [112] = {.lex_state = 2049, .external_lex_state = 5}, - [113] = {.lex_state = 2049, .external_lex_state = 7}, - [114] = {.lex_state = 2049, .external_lex_state = 7}, - [115] = {.lex_state = 2049, .external_lex_state = 2}, - [116] = {.lex_state = 2049, .external_lex_state = 2}, - [117] = {.lex_state = 2049, .external_lex_state = 2}, - [118] = {.lex_state = 2049, .external_lex_state = 7}, - [119] = {.lex_state = 2049, .external_lex_state = 5}, - [120] = {.lex_state = 2049, .external_lex_state = 5}, - [121] = {.lex_state = 2049, .external_lex_state = 5}, - [122] = {.lex_state = 2049, .external_lex_state = 7}, - [123] = {.lex_state = 2049, .external_lex_state = 7}, - [124] = {.lex_state = 2049, .external_lex_state = 2}, - [125] = {.lex_state = 2049, .external_lex_state = 7}, - [126] = {.lex_state = 2049, .external_lex_state = 2}, - [127] = {.lex_state = 2049, .external_lex_state = 2}, - [128] = {.lex_state = 2049, .external_lex_state = 8}, - [129] = {.lex_state = 2049, .external_lex_state = 8}, - [130] = {.lex_state = 2049, .external_lex_state = 8}, - [131] = {.lex_state = 2049, .external_lex_state = 8}, - [132] = {.lex_state = 2049, .external_lex_state = 8}, - [133] = {.lex_state = 2049, .external_lex_state = 8}, + [1] = {.lex_state = 2050, .external_lex_state = 2}, + [2] = {.lex_state = 2050, .external_lex_state = 3}, + [3] = {.lex_state = 2050, .external_lex_state = 3}, + [4] = {.lex_state = 2050, .external_lex_state = 3}, + [5] = {.lex_state = 2050, .external_lex_state = 3}, + [6] = {.lex_state = 2050, .external_lex_state = 3}, + [7] = {.lex_state = 2050, .external_lex_state = 3}, + [8] = {.lex_state = 2050, .external_lex_state = 3}, + [9] = {.lex_state = 2050, .external_lex_state = 3}, + [10] = {.lex_state = 2050, .external_lex_state = 3}, + [11] = {.lex_state = 2050, .external_lex_state = 3}, + [12] = {.lex_state = 2050, .external_lex_state = 3}, + [13] = {.lex_state = 2050, .external_lex_state = 3}, + [14] = {.lex_state = 2050, .external_lex_state = 3}, + [15] = {.lex_state = 2050, .external_lex_state = 3}, + [16] = {.lex_state = 2050, .external_lex_state = 3}, + [17] = {.lex_state = 2050, .external_lex_state = 3}, + [18] = {.lex_state = 2050, .external_lex_state = 3}, + [19] = {.lex_state = 2050, .external_lex_state = 3}, + [20] = {.lex_state = 2050, .external_lex_state = 4}, + [21] = {.lex_state = 2050, .external_lex_state = 4}, + [22] = {.lex_state = 2050, .external_lex_state = 4}, + [23] = {.lex_state = 2050, .external_lex_state = 4}, + [24] = {.lex_state = 2050, .external_lex_state = 4}, + [25] = {.lex_state = 2050, .external_lex_state = 4}, + [26] = {.lex_state = 2050, .external_lex_state = 4}, + [27] = {.lex_state = 2050, .external_lex_state = 4}, + [28] = {.lex_state = 2050, .external_lex_state = 4}, + [29] = {.lex_state = 2050, .external_lex_state = 4}, + [30] = {.lex_state = 2050, .external_lex_state = 4}, + [31] = {.lex_state = 2050, .external_lex_state = 4}, + [32] = {.lex_state = 2050, .external_lex_state = 4}, + [33] = {.lex_state = 2050, .external_lex_state = 4}, + [34] = {.lex_state = 2050, .external_lex_state = 4}, + [35] = {.lex_state = 2050, .external_lex_state = 4}, + [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}, + [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}, + [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}, + [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}, + [60] = {.lex_state = 2050, .external_lex_state = 7}, + [61] = {.lex_state = 2050, .external_lex_state = 7}, + [62] = {.lex_state = 2050, .external_lex_state = 2}, + [63] = {.lex_state = 2050, .external_lex_state = 7}, + [64] = {.lex_state = 2050, .external_lex_state = 2}, + [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}, + [70] = {.lex_state = 2050, .external_lex_state = 7}, + [71] = {.lex_state = 2050, .external_lex_state = 7}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [106] = {.lex_state = 2050, .external_lex_state = 2}, + [107] = {.lex_state = 2050, .external_lex_state = 2}, + [108] = {.lex_state = 2050, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [122] = {.lex_state = 2050, .external_lex_state = 7}, + [123] = {.lex_state = 2050, .external_lex_state = 2}, + [124] = {.lex_state = 2050, .external_lex_state = 2}, + [125] = {.lex_state = 2050, .external_lex_state = 7}, + [126] = {.lex_state = 2050, .external_lex_state = 2}, + [127] = {.lex_state = 2050, .external_lex_state = 7}, + [128] = {.lex_state = 2050, .external_lex_state = 8}, + [129] = {.lex_state = 2050, .external_lex_state = 8}, + [130] = {.lex_state = 2050, .external_lex_state = 8}, + [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 = 2, .external_lex_state = 9}, - [137] = {.lex_state = 2, .external_lex_state = 9}, - [138] = {.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 = 2, .external_lex_state = 9}, - [142] = {.lex_state = 2, .external_lex_state = 9}, - [143] = {.lex_state = 2, .external_lex_state = 9}, - [144] = {.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}, @@ -15911,86 +15839,86 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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 = 2049, .external_lex_state = 5}, - [168] = {.lex_state = 4, .external_lex_state = 10}, - [169] = {.lex_state = 2049, .external_lex_state = 5}, - [170] = {.lex_state = 2049, .external_lex_state = 5}, - [171] = {.lex_state = 4, .external_lex_state = 8}, - [172] = {.lex_state = 4, .external_lex_state = 8}, - [173] = {.lex_state = 4, .external_lex_state = 8}, - [174] = {.lex_state = 4, .external_lex_state = 10}, - [175] = {.lex_state = 4, .external_lex_state = 8}, - [176] = {.lex_state = 4, .external_lex_state = 10}, - [177] = {.lex_state = 4, .external_lex_state = 10}, - [178] = {.lex_state = 2049, .external_lex_state = 5}, - [179] = {.lex_state = 2049, .external_lex_state = 5}, - [180] = {.lex_state = 2049, .external_lex_state = 5}, - [181] = {.lex_state = 2049, .external_lex_state = 5}, - [182] = {.lex_state = 2049, .external_lex_state = 5}, - [183] = {.lex_state = 2049, .external_lex_state = 5}, - [184] = {.lex_state = 2049, .external_lex_state = 5}, - [185] = {.lex_state = 4, .external_lex_state = 8}, - [186] = {.lex_state = 4, .external_lex_state = 8}, + [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}, + [175] = {.lex_state = 2, .external_lex_state = 9}, + [176] = {.lex_state = 2050, .external_lex_state = 5}, + [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 = 2049, .external_lex_state = 5}, - [189] = {.lex_state = 2049, .external_lex_state = 5}, - [190] = {.lex_state = 4, .external_lex_state = 11}, - [191] = {.lex_state = 2049, .external_lex_state = 2}, - [192] = {.lex_state = 4, .external_lex_state = 11}, - [193] = {.lex_state = 4, .external_lex_state = 11}, - [194] = {.lex_state = 1, .external_lex_state = 9}, - [195] = {.lex_state = 1, .external_lex_state = 9}, - [196] = {.lex_state = 1, .external_lex_state = 9}, - [197] = {.lex_state = 1, .external_lex_state = 9}, - [198] = {.lex_state = 1, .external_lex_state = 9}, - [199] = {.lex_state = 1, .external_lex_state = 9}, - [200] = {.lex_state = 1, .external_lex_state = 9}, - [201] = {.lex_state = 1, .external_lex_state = 9}, - [202] = {.lex_state = 1, .external_lex_state = 9}, - [203] = {.lex_state = 1, .external_lex_state = 9}, - [204] = {.lex_state = 1, .external_lex_state = 9}, - [205] = {.lex_state = 2049, .external_lex_state = 7}, - [206] = {.lex_state = 1, .external_lex_state = 9}, - [207] = {.lex_state = 1, .external_lex_state = 9}, - [208] = {.lex_state = 1, .external_lex_state = 9}, - [209] = {.lex_state = 1, .external_lex_state = 9}, - [210] = {.lex_state = 2049, .external_lex_state = 7}, - [211] = {.lex_state = 2049, .external_lex_state = 7}, - [212] = {.lex_state = 1, .external_lex_state = 9}, - [213] = {.lex_state = 1, .external_lex_state = 9}, + [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 = 1, .external_lex_state = 9}, - [216] = {.lex_state = 2049, .external_lex_state = 7}, + [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 = 11}, - [223] = {.lex_state = 4, .external_lex_state = 11}, - [224] = {.lex_state = 1, .external_lex_state = 9}, - [225] = {.lex_state = 1, .external_lex_state = 9}, - [226] = {.lex_state = 1, .external_lex_state = 9}, - [227] = {.lex_state = 1, .external_lex_state = 9}, - [228] = {.lex_state = 2049, .external_lex_state = 7}, - [229] = {.lex_state = 2049, .external_lex_state = 2}, - [230] = {.lex_state = 1, .external_lex_state = 9}, - [231] = {.lex_state = 1, .external_lex_state = 9}, - [232] = {.lex_state = 1, .external_lex_state = 9}, - [233] = {.lex_state = 1, .external_lex_state = 9}, - [234] = {.lex_state = 4, .external_lex_state = 11}, - [235] = {.lex_state = 2049, .external_lex_state = 2}, - [236] = {.lex_state = 1, .external_lex_state = 9}, - [237] = {.lex_state = 1, .external_lex_state = 9}, - [238] = {.lex_state = 1, .external_lex_state = 9}, - [239] = {.lex_state = 1, .external_lex_state = 9}, - [240] = {.lex_state = 2049, .external_lex_state = 2}, - [241] = {.lex_state = 4, .external_lex_state = 11}, - [242] = {.lex_state = 1, .external_lex_state = 9}, - [243] = {.lex_state = 1, .external_lex_state = 9}, - [244] = {.lex_state = 1, .external_lex_state = 9}, - [245] = {.lex_state = 1, .external_lex_state = 9}, - [246] = {.lex_state = 4, .external_lex_state = 11}, + [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}, @@ -15999,498 +15927,498 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [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 = 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 = 2049, .external_lex_state = 7}, + [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 = 2049, .external_lex_state = 2}, + [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 = 2049, .external_lex_state = 2}, - [271] = {.lex_state = 4, .external_lex_state = 11}, - [272] = {.lex_state = 4, .external_lex_state = 11}, - [273] = {.lex_state = 4, .external_lex_state = 11}, - [274] = {.lex_state = 4, .external_lex_state = 11}, - [275] = {.lex_state = 2049, .external_lex_state = 2}, - [276] = {.lex_state = 2049, .external_lex_state = 2}, - [277] = {.lex_state = 2049, .external_lex_state = 2}, - [278] = {.lex_state = 2049, .external_lex_state = 7}, - [279] = {.lex_state = 2049, .external_lex_state = 2}, - [280] = {.lex_state = 2049, .external_lex_state = 2}, - [281] = {.lex_state = 4, .external_lex_state = 12}, + [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 = 2049, .external_lex_state = 7}, - [284] = {.lex_state = 4, .external_lex_state = 11}, - [285] = {.lex_state = 4, .external_lex_state = 11}, - [286] = {.lex_state = 4, .external_lex_state = 11}, - [287] = {.lex_state = 4, .external_lex_state = 11}, - [288] = {.lex_state = 4, .external_lex_state = 11}, + [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 = 2049, .external_lex_state = 7}, - [291] = {.lex_state = 2049, .external_lex_state = 7}, - [292] = {.lex_state = 2049, .external_lex_state = 7}, + [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 = 2049, .external_lex_state = 7}, - [296] = {.lex_state = 4, .external_lex_state = 12}, - [297] = {.lex_state = 4, .external_lex_state = 12}, - [298] = {.lex_state = 2049, .external_lex_state = 2}, - [299] = {.lex_state = 4, .external_lex_state = 9}, - [300] = {.lex_state = 4, .external_lex_state = 13}, - [301] = {.lex_state = 4, .external_lex_state = 13}, - [302] = {.lex_state = 4, .external_lex_state = 14}, - [303] = {.lex_state = 2049, .external_lex_state = 15}, - [304] = {.lex_state = 4, .external_lex_state = 8}, - [305] = {.lex_state = 2049, .external_lex_state = 15}, - [306] = {.lex_state = 4, .external_lex_state = 8}, - [307] = {.lex_state = 4, .external_lex_state = 13}, - [308] = {.lex_state = 2049, .external_lex_state = 15}, - [309] = {.lex_state = 2049, .external_lex_state = 15}, - [310] = {.lex_state = 2049, .external_lex_state = 15}, - [311] = {.lex_state = 2049, .external_lex_state = 15}, - [312] = {.lex_state = 2049, .external_lex_state = 15}, - [313] = {.lex_state = 2049, .external_lex_state = 15}, - [314] = {.lex_state = 2049, .external_lex_state = 15}, - [315] = {.lex_state = 2049, .external_lex_state = 15}, - [316] = {.lex_state = 2049, .external_lex_state = 15}, - [317] = {.lex_state = 2049, .external_lex_state = 15}, - [318] = {.lex_state = 2049, .external_lex_state = 15}, - [319] = {.lex_state = 4, .external_lex_state = 9}, - [320] = {.lex_state = 2049, .external_lex_state = 15}, - [321] = {.lex_state = 2049, .external_lex_state = 15}, - [322] = {.lex_state = 2049, .external_lex_state = 15}, - [323] = {.lex_state = 4, .external_lex_state = 9}, - [324] = {.lex_state = 4, .external_lex_state = 13}, - [325] = {.lex_state = 4, .external_lex_state = 14}, - [326] = {.lex_state = 4, .external_lex_state = 14}, - [327] = {.lex_state = 4, .external_lex_state = 13}, - [328] = {.lex_state = 4, .external_lex_state = 14}, - [329] = {.lex_state = 4, .external_lex_state = 13}, - [330] = {.lex_state = 4, .external_lex_state = 14}, - [331] = {.lex_state = 4, .external_lex_state = 9}, - [332] = {.lex_state = 4, .external_lex_state = 9}, - [333] = {.lex_state = 4, .external_lex_state = 9}, - [334] = {.lex_state = 4, .external_lex_state = 9}, - [335] = {.lex_state = 4, .external_lex_state = 9}, - [336] = {.lex_state = 4, .external_lex_state = 9}, - [337] = {.lex_state = 4, .external_lex_state = 9}, - [338] = {.lex_state = 4, .external_lex_state = 9}, - [339] = {.lex_state = 4, .external_lex_state = 9}, - [340] = {.lex_state = 4, .external_lex_state = 9}, - [341] = {.lex_state = 4, .external_lex_state = 9}, - [342] = {.lex_state = 4, .external_lex_state = 9}, - [343] = {.lex_state = 4, .external_lex_state = 9}, - [344] = {.lex_state = 2049, .external_lex_state = 15}, - [345] = {.lex_state = 2049, .external_lex_state = 6}, - [346] = {.lex_state = 2049, .external_lex_state = 5}, - [347] = {.lex_state = 2049, .external_lex_state = 5}, - [348] = {.lex_state = 2049, .external_lex_state = 5}, - [349] = {.lex_state = 2049, .external_lex_state = 16}, - [350] = {.lex_state = 2049, .external_lex_state = 16}, - [351] = {.lex_state = 2049, .external_lex_state = 16}, - [352] = {.lex_state = 2049, .external_lex_state = 16}, - [353] = {.lex_state = 2049, .external_lex_state = 5}, - [354] = {.lex_state = 2049, .external_lex_state = 16}, - [355] = {.lex_state = 4, .external_lex_state = 12}, - [356] = {.lex_state = 2049, .external_lex_state = 5}, - [357] = {.lex_state = 2, .external_lex_state = 17}, - [358] = {.lex_state = 2049, .external_lex_state = 5}, - [359] = {.lex_state = 2049, .external_lex_state = 5}, - [360] = {.lex_state = 2049, .external_lex_state = 5}, - [361] = {.lex_state = 2, .external_lex_state = 17}, - [362] = {.lex_state = 2049, .external_lex_state = 5}, - [363] = {.lex_state = 2049, .external_lex_state = 16}, - [364] = {.lex_state = 2049, .external_lex_state = 5}, - [365] = {.lex_state = 2049, .external_lex_state = 5}, - [366] = {.lex_state = 2049, .external_lex_state = 5}, - [367] = {.lex_state = 2049, .external_lex_state = 5}, - [368] = {.lex_state = 2049, .external_lex_state = 5}, - [369] = {.lex_state = 2049, .external_lex_state = 5}, - [370] = {.lex_state = 2049, .external_lex_state = 5}, - [371] = {.lex_state = 2049, .external_lex_state = 5}, - [372] = {.lex_state = 2049, .external_lex_state = 5}, - [373] = {.lex_state = 2049, .external_lex_state = 5}, - [374] = {.lex_state = 2049, .external_lex_state = 5}, - [375] = {.lex_state = 2049, .external_lex_state = 5}, - [376] = {.lex_state = 2049, .external_lex_state = 5}, - [377] = {.lex_state = 2049, .external_lex_state = 5}, - [378] = {.lex_state = 2049, .external_lex_state = 5}, - [379] = {.lex_state = 2049, .external_lex_state = 5}, - [380] = {.lex_state = 2049, .external_lex_state = 5}, - [381] = {.lex_state = 2049, .external_lex_state = 5}, - [382] = {.lex_state = 2049, .external_lex_state = 5}, - [383] = {.lex_state = 2049, .external_lex_state = 5}, - [384] = {.lex_state = 2049, .external_lex_state = 5}, - [385] = {.lex_state = 2049, .external_lex_state = 5}, - [386] = {.lex_state = 2049, .external_lex_state = 5}, - [387] = {.lex_state = 2049, .external_lex_state = 5}, - [388] = {.lex_state = 2049, .external_lex_state = 5}, - [389] = {.lex_state = 2049, .external_lex_state = 5}, - [390] = {.lex_state = 2049, .external_lex_state = 5}, - [391] = {.lex_state = 2049, .external_lex_state = 5}, - [392] = {.lex_state = 2049, .external_lex_state = 5}, - [393] = {.lex_state = 2049, .external_lex_state = 5}, - [394] = {.lex_state = 2049, .external_lex_state = 5}, - [395] = {.lex_state = 2049, .external_lex_state = 5}, - [396] = {.lex_state = 2049, .external_lex_state = 5}, - [397] = {.lex_state = 2049, .external_lex_state = 5}, - [398] = {.lex_state = 2049, .external_lex_state = 5}, - [399] = {.lex_state = 2049, .external_lex_state = 5}, - [400] = {.lex_state = 2049, .external_lex_state = 5}, - [401] = {.lex_state = 2049, .external_lex_state = 5}, - [402] = {.lex_state = 2, .external_lex_state = 9}, - [403] = {.lex_state = 2, .external_lex_state = 9}, - [404] = {.lex_state = 2, .external_lex_state = 9}, - [405] = {.lex_state = 2049, .external_lex_state = 3}, - [406] = {.lex_state = 4, .external_lex_state = 17}, - [407] = {.lex_state = 2, .external_lex_state = 17}, - [408] = {.lex_state = 2, .external_lex_state = 17}, - [409] = {.lex_state = 2049, .external_lex_state = 3}, - [410] = {.lex_state = 2049, .external_lex_state = 6}, - [411] = {.lex_state = 2, .external_lex_state = 17}, - [412] = {.lex_state = 2, .external_lex_state = 17}, - [413] = {.lex_state = 2049, .external_lex_state = 6}, - [414] = {.lex_state = 2049, .external_lex_state = 3}, - [415] = {.lex_state = 2049, .external_lex_state = 3}, - [416] = {.lex_state = 4, .external_lex_state = 18}, - [417] = {.lex_state = 4, .external_lex_state = 18}, - [418] = {.lex_state = 2049, .external_lex_state = 5}, - [419] = {.lex_state = 2, .external_lex_state = 17}, - [420] = {.lex_state = 2, .external_lex_state = 17}, - [421] = {.lex_state = 4, .external_lex_state = 18}, - [422] = {.lex_state = 2049, .external_lex_state = 3}, - [423] = {.lex_state = 2049, .external_lex_state = 3}, - [424] = {.lex_state = 2, .external_lex_state = 17}, - [425] = {.lex_state = 2, .external_lex_state = 17}, - [426] = {.lex_state = 2049, .external_lex_state = 6}, - [427] = {.lex_state = 2, .external_lex_state = 17}, - [428] = {.lex_state = 2, .external_lex_state = 17}, - [429] = {.lex_state = 2, .external_lex_state = 17}, - [430] = {.lex_state = 2, .external_lex_state = 17}, - [431] = {.lex_state = 2, .external_lex_state = 17}, - [432] = {.lex_state = 2, .external_lex_state = 17}, - [433] = {.lex_state = 2049, .external_lex_state = 16}, - [434] = {.lex_state = 2, .external_lex_state = 17}, - [435] = {.lex_state = 2, .external_lex_state = 17}, - [436] = {.lex_state = 2, .external_lex_state = 17}, - [437] = {.lex_state = 2, .external_lex_state = 17}, - [438] = {.lex_state = 2, .external_lex_state = 17}, - [439] = {.lex_state = 2, .external_lex_state = 17}, - [440] = {.lex_state = 2049, .external_lex_state = 6}, - [441] = {.lex_state = 2049, .external_lex_state = 16}, - [442] = {.lex_state = 2, .external_lex_state = 17}, - [443] = {.lex_state = 2, .external_lex_state = 17}, - [444] = {.lex_state = 2049, .external_lex_state = 5}, - [445] = {.lex_state = 2049, .external_lex_state = 5}, - [446] = {.lex_state = 2049, .external_lex_state = 16}, - [447] = {.lex_state = 2, .external_lex_state = 17}, - [448] = {.lex_state = 2, .external_lex_state = 17}, - [449] = {.lex_state = 2049, .external_lex_state = 5}, - [450] = {.lex_state = 4, .external_lex_state = 17}, - [451] = {.lex_state = 2, .external_lex_state = 17}, - [452] = {.lex_state = 2, .external_lex_state = 17}, - [453] = {.lex_state = 2049, .external_lex_state = 5}, - [454] = {.lex_state = 2049, .external_lex_state = 16}, - [455] = {.lex_state = 2049, .external_lex_state = 6}, - [456] = {.lex_state = 2049, .external_lex_state = 6}, - [457] = {.lex_state = 2, .external_lex_state = 17}, - [458] = {.lex_state = 2, .external_lex_state = 17}, - [459] = {.lex_state = 2049, .external_lex_state = 6}, - [460] = {.lex_state = 2049, .external_lex_state = 6}, - [461] = {.lex_state = 2049, .external_lex_state = 6}, - [462] = {.lex_state = 2049, .external_lex_state = 6}, - [463] = {.lex_state = 2049, .external_lex_state = 6}, + [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}, + [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}, + [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}, + [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}, + [444] = {.lex_state = 4, .external_lex_state = 9}, + [445] = {.lex_state = 2050, .external_lex_state = 6}, + [446] = {.lex_state = 2050, .external_lex_state = 14}, + [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}, + [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}, + [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 = 2, .external_lex_state = 17}, - [466] = {.lex_state = 2049, .external_lex_state = 5}, - [467] = {.lex_state = 4, .external_lex_state = 12}, - [468] = {.lex_state = 2049, .external_lex_state = 16}, - [469] = {.lex_state = 2049, .external_lex_state = 6}, - [470] = {.lex_state = 2049, .external_lex_state = 6}, - [471] = {.lex_state = 2049, .external_lex_state = 5}, - [472] = {.lex_state = 2049, .external_lex_state = 6}, - [473] = {.lex_state = 2049, .external_lex_state = 6}, - [474] = {.lex_state = 2049, .external_lex_state = 6}, - [475] = {.lex_state = 2049, .external_lex_state = 16}, - [476] = {.lex_state = 2049, .external_lex_state = 16}, - [477] = {.lex_state = 2049, .external_lex_state = 16}, - [478] = {.lex_state = 2049, .external_lex_state = 16}, - [479] = {.lex_state = 2049, .external_lex_state = 5}, - [480] = {.lex_state = 2049, .external_lex_state = 5}, - [481] = {.lex_state = 2049, .external_lex_state = 5}, - [482] = {.lex_state = 2049, .external_lex_state = 5}, - [483] = {.lex_state = 2049, .external_lex_state = 5}, - [484] = {.lex_state = 2049, .external_lex_state = 5}, - [485] = {.lex_state = 2049, .external_lex_state = 5}, - [486] = {.lex_state = 2049, .external_lex_state = 5}, - [487] = {.lex_state = 2049, .external_lex_state = 16}, - [488] = {.lex_state = 2049, .external_lex_state = 16}, - [489] = {.lex_state = 2049, .external_lex_state = 2}, - [490] = {.lex_state = 2049, .external_lex_state = 7}, - [491] = {.lex_state = 2049, .external_lex_state = 2}, - [492] = {.lex_state = 2049, .external_lex_state = 2}, - [493] = {.lex_state = 2049, .external_lex_state = 2}, - [494] = {.lex_state = 2049, .external_lex_state = 2}, - [495] = {.lex_state = 2049, .external_lex_state = 2}, - [496] = {.lex_state = 2049, .external_lex_state = 2}, - [497] = {.lex_state = 2049, .external_lex_state = 2}, - [498] = {.lex_state = 2049, .external_lex_state = 2}, - [499] = {.lex_state = 2049, .external_lex_state = 2}, - [500] = {.lex_state = 2049, .external_lex_state = 2}, - [501] = {.lex_state = 2049, .external_lex_state = 2}, - [502] = {.lex_state = 2049, .external_lex_state = 2}, - [503] = {.lex_state = 2049, .external_lex_state = 7}, - [504] = {.lex_state = 2049, .external_lex_state = 7}, - [505] = {.lex_state = 2049, .external_lex_state = 7}, - [506] = {.lex_state = 2049, .external_lex_state = 7}, - [507] = {.lex_state = 2049, .external_lex_state = 2}, - [508] = {.lex_state = 2049, .external_lex_state = 2}, - [509] = {.lex_state = 2049, .external_lex_state = 2}, - [510] = {.lex_state = 2049, .external_lex_state = 2}, - [511] = {.lex_state = 2049, .external_lex_state = 2}, - [512] = {.lex_state = 2049, .external_lex_state = 7}, - [513] = {.lex_state = 2049, .external_lex_state = 7}, - [514] = {.lex_state = 2049, .external_lex_state = 2}, - [515] = {.lex_state = 2049, .external_lex_state = 2}, - [516] = {.lex_state = 2049, .external_lex_state = 2}, - [517] = {.lex_state = 2049, .external_lex_state = 2}, - [518] = {.lex_state = 2049, .external_lex_state = 2}, - [519] = {.lex_state = 2049, .external_lex_state = 2}, - [520] = {.lex_state = 4, .external_lex_state = 19}, - [521] = {.lex_state = 2049, .external_lex_state = 7}, - [522] = {.lex_state = 1, .external_lex_state = 9}, - [523] = {.lex_state = 2049, .external_lex_state = 7}, - [524] = {.lex_state = 2049, .external_lex_state = 2}, - [525] = {.lex_state = 2049, .external_lex_state = 2}, - [526] = {.lex_state = 2049, .external_lex_state = 7}, - [527] = {.lex_state = 2049, .external_lex_state = 2}, - [528] = {.lex_state = 2049, .external_lex_state = 7}, - [529] = {.lex_state = 4, .external_lex_state = 19}, - [530] = {.lex_state = 2049, .external_lex_state = 7}, - [531] = {.lex_state = 2049, .external_lex_state = 2}, - [532] = {.lex_state = 2049, .external_lex_state = 7}, - [533] = {.lex_state = 2049, .external_lex_state = 7}, - [534] = {.lex_state = 2049, .external_lex_state = 7}, - [535] = {.lex_state = 2049, .external_lex_state = 7}, - [536] = {.lex_state = 2049, .external_lex_state = 2}, - [537] = {.lex_state = 2049, .external_lex_state = 7}, - [538] = {.lex_state = 2049, .external_lex_state = 7}, - [539] = {.lex_state = 2049, .external_lex_state = 7}, - [540] = {.lex_state = 2049, .external_lex_state = 7}, - [541] = {.lex_state = 2049, .external_lex_state = 7}, - [542] = {.lex_state = 2049, .external_lex_state = 7}, - [543] = {.lex_state = 2049, .external_lex_state = 7}, - [544] = {.lex_state = 2049, .external_lex_state = 7}, - [545] = {.lex_state = 4, .external_lex_state = 19}, - [546] = {.lex_state = 2049, .external_lex_state = 2}, - [547] = {.lex_state = 2049, .external_lex_state = 2}, - [548] = {.lex_state = 2049, .external_lex_state = 7}, - [549] = {.lex_state = 2049, .external_lex_state = 2}, - [550] = {.lex_state = 2049, .external_lex_state = 7}, - [551] = {.lex_state = 2049, .external_lex_state = 2}, - [552] = {.lex_state = 2049, .external_lex_state = 2}, - [553] = {.lex_state = 2049, .external_lex_state = 2}, - [554] = {.lex_state = 2049, .external_lex_state = 7}, - [555] = {.lex_state = 2049, .external_lex_state = 2}, - [556] = {.lex_state = 2049, .external_lex_state = 7}, - [557] = {.lex_state = 4, .external_lex_state = 20}, - [558] = {.lex_state = 2049, .external_lex_state = 7}, - [559] = {.lex_state = 4, .external_lex_state = 20}, - [560] = {.lex_state = 4, .external_lex_state = 20}, - [561] = {.lex_state = 2049, .external_lex_state = 2}, - [562] = {.lex_state = 2049, .external_lex_state = 2}, - [563] = {.lex_state = 2049, .external_lex_state = 7}, - [564] = {.lex_state = 1, .external_lex_state = 9}, - [565] = {.lex_state = 2049, .external_lex_state = 2}, - [566] = {.lex_state = 2049, .external_lex_state = 2}, - [567] = {.lex_state = 4, .external_lex_state = 21}, - [568] = {.lex_state = 4, .external_lex_state = 21}, - [569] = {.lex_state = 2049, .external_lex_state = 2}, - [570] = {.lex_state = 2049, .external_lex_state = 2}, - [571] = {.lex_state = 2049, .external_lex_state = 2}, - [572] = {.lex_state = 2049, .external_lex_state = 2}, - [573] = {.lex_state = 2049, .external_lex_state = 2}, - [574] = {.lex_state = 2049, .external_lex_state = 7}, - [575] = {.lex_state = 4, .external_lex_state = 21}, - [576] = {.lex_state = 4, .external_lex_state = 22}, - [577] = {.lex_state = 4, .external_lex_state = 22}, - [578] = {.lex_state = 4, .external_lex_state = 22}, - [579] = {.lex_state = 2049, .external_lex_state = 7}, - [580] = {.lex_state = 2049, .external_lex_state = 7}, - [581] = {.lex_state = 2049, .external_lex_state = 7}, - [582] = {.lex_state = 2049, .external_lex_state = 7}, - [583] = {.lex_state = 2049, .external_lex_state = 2}, - [584] = {.lex_state = 4, .external_lex_state = 23}, - [585] = {.lex_state = 2049, .external_lex_state = 7}, - [586] = {.lex_state = 2049, .external_lex_state = 7}, - [587] = {.lex_state = 2049, .external_lex_state = 7}, - [588] = {.lex_state = 4, .external_lex_state = 23}, - [589] = {.lex_state = 4, .external_lex_state = 23}, - [590] = {.lex_state = 3, .external_lex_state = 9}, - [591] = {.lex_state = 3, .external_lex_state = 9}, - [592] = {.lex_state = 3, .external_lex_state = 9}, - [593] = {.lex_state = 4, .external_lex_state = 13}, - [594] = {.lex_state = 2049, .external_lex_state = 7}, - [595] = {.lex_state = 2049, .external_lex_state = 2}, - [596] = {.lex_state = 2049, .external_lex_state = 2}, - [597] = {.lex_state = 4, .external_lex_state = 24}, - [598] = {.lex_state = 2049, .external_lex_state = 7}, - [599] = {.lex_state = 4, .external_lex_state = 24}, - [600] = {.lex_state = 4, .external_lex_state = 24}, - [601] = {.lex_state = 4, .external_lex_state = 13}, - [602] = {.lex_state = 1, .external_lex_state = 9}, - [603] = {.lex_state = 4, .external_lex_state = 25}, - [604] = {.lex_state = 4, .external_lex_state = 25}, - [605] = {.lex_state = 4, .external_lex_state = 25}, - [606] = {.lex_state = 4, .external_lex_state = 26}, - [607] = {.lex_state = 4, .external_lex_state = 26}, - [608] = {.lex_state = 4, .external_lex_state = 26}, - [609] = {.lex_state = 4, .external_lex_state = 27}, - [610] = {.lex_state = 4, .external_lex_state = 27}, - [611] = {.lex_state = 2049, .external_lex_state = 7}, - [612] = {.lex_state = 4, .external_lex_state = 27}, - [613] = {.lex_state = 2049, .external_lex_state = 2}, - [614] = {.lex_state = 2049, .external_lex_state = 7}, - [615] = {.lex_state = 2049, .external_lex_state = 7}, - [616] = {.lex_state = 2049, .external_lex_state = 7}, - [617] = {.lex_state = 2049, .external_lex_state = 2}, - [618] = {.lex_state = 2049, .external_lex_state = 7}, - [619] = {.lex_state = 2049, .external_lex_state = 7}, - [620] = {.lex_state = 2049, .external_lex_state = 2}, - [621] = {.lex_state = 2049, .external_lex_state = 7}, - [622] = {.lex_state = 2049, .external_lex_state = 7}, - [623] = {.lex_state = 2049, .external_lex_state = 7}, - [624] = {.lex_state = 2049, .external_lex_state = 2}, - [625] = {.lex_state = 2049, .external_lex_state = 2}, - [626] = {.lex_state = 2049, .external_lex_state = 7}, - [627] = {.lex_state = 2049, .external_lex_state = 7}, - [628] = {.lex_state = 2049, .external_lex_state = 7}, - [629] = {.lex_state = 2049, .external_lex_state = 2}, - [630] = {.lex_state = 2049, .external_lex_state = 7}, - [631] = {.lex_state = 2049, .external_lex_state = 7}, - [632] = {.lex_state = 2049, .external_lex_state = 7}, - [633] = {.lex_state = 2049, .external_lex_state = 7}, - [634] = {.lex_state = 2049, .external_lex_state = 7}, - [635] = {.lex_state = 2049, .external_lex_state = 2}, - [636] = {.lex_state = 2049, .external_lex_state = 2}, - [637] = {.lex_state = 2049, .external_lex_state = 2}, - [638] = {.lex_state = 2049, .external_lex_state = 7}, - [639] = {.lex_state = 2049, .external_lex_state = 7}, - [640] = {.lex_state = 2049, .external_lex_state = 7}, - [641] = {.lex_state = 2049, .external_lex_state = 2}, - [642] = {.lex_state = 2049, .external_lex_state = 2}, - [643] = {.lex_state = 2049, .external_lex_state = 2}, - [644] = {.lex_state = 2049, .external_lex_state = 7}, - [645] = {.lex_state = 2049, .external_lex_state = 7}, - [646] = {.lex_state = 2049, .external_lex_state = 2}, - [647] = {.lex_state = 4, .external_lex_state = 28}, - [648] = {.lex_state = 4, .external_lex_state = 28}, - [649] = {.lex_state = 4, .external_lex_state = 28}, + [465] = {.lex_state = 2050, .external_lex_state = 2}, + [466] = {.lex_state = 2050, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [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}, + [526] = {.lex_state = 2050, .external_lex_state = 7}, + [527] = {.lex_state = 2050, .external_lex_state = 7}, + [528] = {.lex_state = 2050, .external_lex_state = 2}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [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}, + [625] = {.lex_state = 4, .external_lex_state = 22}, + [626] = {.lex_state = 4, .external_lex_state = 22}, + [627] = {.lex_state = 3, .external_lex_state = 9}, + [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}, + [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 = 1, .external_lex_state = 17}, + [652] = {.lex_state = 4, .external_lex_state = 28}, [653] = {.lex_state = 4, .external_lex_state = 29}, [654] = {.lex_state = 4, .external_lex_state = 28}, - [655] = {.lex_state = 1, .external_lex_state = 17}, + [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}, [660] = {.lex_state = 1, .external_lex_state = 17}, - [661] = {.lex_state = 1, .external_lex_state = 17}, - [662] = {.lex_state = 4, .external_lex_state = 29}, + [661] = {.lex_state = 4, .external_lex_state = 28}, + [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 = 4, .external_lex_state = 12}, - [666] = {.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 = 28}, - [669] = {.lex_state = 4, .external_lex_state = 29}, - [670] = {.lex_state = 4, .external_lex_state = 28}, + [668] = {.lex_state = 4, .external_lex_state = 29}, + [669] = {.lex_state = 1, .external_lex_state = 17}, + [670] = {.lex_state = 1, .external_lex_state = 17}, [671] = {.lex_state = 1, .external_lex_state = 17}, [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 = 4, .external_lex_state = 29}, + [675] = {.lex_state = 1, .external_lex_state = 17}, [676] = {.lex_state = 4, .external_lex_state = 28}, - [677] = {.lex_state = 1, .external_lex_state = 17}, + [677] = {.lex_state = 4, .external_lex_state = 29}, [678] = {.lex_state = 4, .external_lex_state = 28}, - [679] = {.lex_state = 1, .external_lex_state = 17}, - [680] = {.lex_state = 1, .external_lex_state = 17}, + [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 = 1, .external_lex_state = 17}, + [683] = {.lex_state = 4, .external_lex_state = 28}, [684] = {.lex_state = 1, .external_lex_state = 17}, [685] = {.lex_state = 1, .external_lex_state = 17}, [686] = {.lex_state = 1, .external_lex_state = 17}, - [687] = {.lex_state = 1, .external_lex_state = 17}, + [687] = {.lex_state = 4, .external_lex_state = 29}, [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 = 1, .external_lex_state = 17}, - [692] = {.lex_state = 1, .external_lex_state = 17}, - [693] = {.lex_state = 4, .external_lex_state = 29}, + [691] = {.lex_state = 4, .external_lex_state = 29}, + [692] = {.lex_state = 4, .external_lex_state = 11}, + [693] = {.lex_state = 1, .external_lex_state = 17}, [694] = {.lex_state = 4, .external_lex_state = 28}, [695] = {.lex_state = 4, .external_lex_state = 29}, - [696] = {.lex_state = 4, .external_lex_state = 28}, - [697] = {.lex_state = 4, .external_lex_state = 29}, + [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 = 4, .external_lex_state = 29}, + [699] = {.lex_state = 1, .external_lex_state = 17}, [700] = {.lex_state = 1, .external_lex_state = 17}, [701] = {.lex_state = 1, .external_lex_state = 17}, [702] = {.lex_state = 1, .external_lex_state = 17}, - [703] = {.lex_state = 4, .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 = 4, .external_lex_state = 17}, - [708] = {.lex_state = 1, .external_lex_state = 17}, - [709] = {.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}, [710] = {.lex_state = 1, .external_lex_state = 17}, - [711] = {.lex_state = 1, .external_lex_state = 17}, + [711] = {.lex_state = 4, .external_lex_state = 17}, [712] = {.lex_state = 1, .external_lex_state = 17}, - [713] = {.lex_state = 4, .external_lex_state = 29}, - [714] = {.lex_state = 4, .external_lex_state = 29}, - [715] = {.lex_state = 4, .external_lex_state = 28}, - [716] = {.lex_state = 4, .external_lex_state = 28}, - [717] = {.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}, [718] = {.lex_state = 4, .external_lex_state = 29}, [719] = {.lex_state = 4, .external_lex_state = 28}, - [720] = {.lex_state = 4, .external_lex_state = 29}, + [720] = {.lex_state = 1, .external_lex_state = 17}, [721] = {.lex_state = 1, .external_lex_state = 17}, - [722] = {.lex_state = 4, .external_lex_state = 28}, + [722] = {.lex_state = 4, .external_lex_state = 29}, [723] = {.lex_state = 1, .external_lex_state = 17}, [724] = {.lex_state = 1, .external_lex_state = 17}, - [725] = {.lex_state = 1, .external_lex_state = 17}, + [725] = {.lex_state = 4, .external_lex_state = 17}, [726] = {.lex_state = 1, .external_lex_state = 17}, [727] = {.lex_state = 1, .external_lex_state = 17}, - [728] = {.lex_state = 1, .external_lex_state = 17}, - [729] = {.lex_state = 1, .external_lex_state = 17}, + [728] = {.lex_state = 4, .external_lex_state = 28}, + [729] = {.lex_state = 4, .external_lex_state = 29}, [730] = {.lex_state = 1, .external_lex_state = 17}, - [731] = {.lex_state = 4, .external_lex_state = 29}, + [731] = {.lex_state = 4, .external_lex_state = 17}, [732] = {.lex_state = 1, .external_lex_state = 17}, [733] = {.lex_state = 1, .external_lex_state = 17}, [734] = {.lex_state = 1, .external_lex_state = 17}, - [735] = {.lex_state = 4, .external_lex_state = 17}, - [736] = {.lex_state = 1, .external_lex_state = 17}, - [737] = {.lex_state = 1, .external_lex_state = 17}, - [738] = {.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}, + [738] = {.lex_state = 4, .external_lex_state = 29}, [739] = {.lex_state = 1, .external_lex_state = 17}, - [740] = {.lex_state = 4, .external_lex_state = 29}, - [741] = {.lex_state = 4, .external_lex_state = 28}, - [742] = {.lex_state = 4, .external_lex_state = 12}, + [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}, [744] = {.lex_state = 1, .external_lex_state = 17}, [745] = {.lex_state = 1, .external_lex_state = 17}, - [746] = {.lex_state = 1, .external_lex_state = 17}, + [746] = {.lex_state = 4, .external_lex_state = 11}, [747] = {.lex_state = 1, .external_lex_state = 17}, [748] = {.lex_state = 4, .external_lex_state = 17}, [749] = {.lex_state = 4, .external_lex_state = 17}, @@ -16651,19 +16579,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 = 2049, .external_lex_state = 30}, + [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 = 30}, - [914] = {.lex_state = 4, .external_lex_state = 30}, - [915] = {.lex_state = 4, .external_lex_state = 8}, + [913] = {.lex_state = 4, .external_lex_state = 8}, + [914] = {.lex_state = 4, .external_lex_state = 8}, + [915] = {.lex_state = 4, .external_lex_state = 30}, [916] = {.lex_state = 4, .external_lex_state = 8}, [917] = {.lex_state = 4, .external_lex_state = 8}, [918] = {.lex_state = 4, .external_lex_state = 8}, - [919] = {.lex_state = 4, .external_lex_state = 8}, + [919] = {.lex_state = 2050, .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}, @@ -16677,3141 +16605,3077 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [930] = {.lex_state = 4, .external_lex_state = 8}, [931] = {.lex_state = 4, .external_lex_state = 8}, [932] = {.lex_state = 4, .external_lex_state = 8}, - [933] = {.lex_state = 2049, .external_lex_state = 8}, + [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 = 2, .external_lex_state = 9}, - [937] = {.lex_state = 4, .external_lex_state = 8}, - [938] = {.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 = 4, .external_lex_state = 8}, - [941] = {.lex_state = 4, .external_lex_state = 8}, - [942] = {.lex_state = 4, .external_lex_state = 8}, - [943] = {.lex_state = 4, .external_lex_state = 8}, - [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 = 8}, - [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 = 2, .external_lex_state = 31}, - [960] = {.lex_state = 4, .external_lex_state = 8}, - [961] = {.lex_state = 4, .external_lex_state = 8}, - [962] = {.lex_state = 4, .external_lex_state = 8}, + [940] = {.lex_state = 2, .external_lex_state = 9}, + [941] = {.lex_state = 2, .external_lex_state = 9}, + [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}, [963] = {.lex_state = 4, .external_lex_state = 8}, [964] = {.lex_state = 4, .external_lex_state = 8}, [965] = {.lex_state = 4, .external_lex_state = 8}, - [966] = {.lex_state = 2, .external_lex_state = 9}, - [967] = {.lex_state = 4, .external_lex_state = 18}, - [968] = {.lex_state = 4, .external_lex_state = 18}, - [969] = {.lex_state = 4, .external_lex_state = 18}, + [966] = {.lex_state = 4, .external_lex_state = 8}, + [967] = {.lex_state = 4, .external_lex_state = 8}, + [968] = {.lex_state = 4, .external_lex_state = 8}, + [969] = {.lex_state = 4, .external_lex_state = 8}, [970] = {.lex_state = 4, .external_lex_state = 8}, [971] = {.lex_state = 4, .external_lex_state = 8}, - [972] = {.lex_state = 4, .external_lex_state = 18}, - [973] = {.lex_state = 4, .external_lex_state = 18}, - [974] = {.lex_state = 4, .external_lex_state = 18}, - [975] = {.lex_state = 2, .external_lex_state = 9}, + [972] = {.lex_state = 4, .external_lex_state = 8}, + [973] = {.lex_state = 4, .external_lex_state = 8}, + [974] = {.lex_state = 4, .external_lex_state = 8}, + [975] = {.lex_state = 4, .external_lex_state = 8}, [976] = {.lex_state = 4, .external_lex_state = 8}, - [977] = {.lex_state = 4, .external_lex_state = 18}, + [977] = {.lex_state = 4, .external_lex_state = 8}, [978] = {.lex_state = 4, .external_lex_state = 8}, - [979] = {.lex_state = 4, .external_lex_state = 32}, - [980] = {.lex_state = 2, .external_lex_state = 9}, + [979] = {.lex_state = 4, .external_lex_state = 8}, + [980] = {.lex_state = 4, .external_lex_state = 8}, [981] = {.lex_state = 4, .external_lex_state = 8}, - [982] = {.lex_state = 4, .external_lex_state = 18}, + [982] = {.lex_state = 4, .external_lex_state = 8}, [983] = {.lex_state = 4, .external_lex_state = 8}, - [984] = {.lex_state = 4, .external_lex_state = 18}, - [985] = {.lex_state = 2, .external_lex_state = 9}, + [984] = {.lex_state = 4, .external_lex_state = 8}, + [985] = {.lex_state = 4, .external_lex_state = 8}, [986] = {.lex_state = 4, .external_lex_state = 8}, [987] = {.lex_state = 4, .external_lex_state = 8}, [988] = {.lex_state = 4, .external_lex_state = 8}, [989] = {.lex_state = 4, .external_lex_state = 8}, - [990] = {.lex_state = 4, .external_lex_state = 18}, - [991] = {.lex_state = 4, .external_lex_state = 8}, - [992] = {.lex_state = 4, .external_lex_state = 18}, + [990] = {.lex_state = 4, .external_lex_state = 8}, + [991] = {.lex_state = 4, .external_lex_state = 18}, + [992] = {.lex_state = 4, .external_lex_state = 8}, [993] = {.lex_state = 4, .external_lex_state = 8}, [994] = {.lex_state = 4, .external_lex_state = 8}, [995] = {.lex_state = 4, .external_lex_state = 8}, - [996] = {.lex_state = 2, .external_lex_state = 9}, - [997] = {.lex_state = 2, .external_lex_state = 9}, + [996] = {.lex_state = 4, .external_lex_state = 8}, + [997] = {.lex_state = 4, .external_lex_state = 8}, [998] = {.lex_state = 4, .external_lex_state = 8}, [999] = {.lex_state = 4, .external_lex_state = 8}, - [1000] = {.lex_state = 4, .external_lex_state = 18}, + [1000] = {.lex_state = 4, .external_lex_state = 8}, [1001] = {.lex_state = 4, .external_lex_state = 8}, - [1002] = {.lex_state = 4, .external_lex_state = 18}, + [1002] = {.lex_state = 4, .external_lex_state = 8}, [1003] = {.lex_state = 4, .external_lex_state = 8}, [1004] = {.lex_state = 4, .external_lex_state = 8}, [1005] = {.lex_state = 4, .external_lex_state = 8}, [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 = 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}, + [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 = 18}, + [1015] = {.lex_state = 4, .external_lex_state = 8}, [1016] = {.lex_state = 4, .external_lex_state = 8}, - [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}, + [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}, [1022] = {.lex_state = 4, .external_lex_state = 18}, - [1023] = {.lex_state = 4, .external_lex_state = 8}, + [1023] = {.lex_state = 4, .external_lex_state = 18}, [1024] = {.lex_state = 4, .external_lex_state = 18}, - [1025] = {.lex_state = 4, .external_lex_state = 8}, - [1026] = {.lex_state = 2, .external_lex_state = 9}, - [1027] = {.lex_state = 2, .external_lex_state = 9}, - [1028] = {.lex_state = 2, .external_lex_state = 9}, - [1029] = {.lex_state = 2, .external_lex_state = 9}, - [1030] = {.lex_state = 2, .external_lex_state = 9}, - [1031] = {.lex_state = 2, .external_lex_state = 9}, - [1032] = {.lex_state = 2, .external_lex_state = 9}, - [1033] = {.lex_state = 2, .external_lex_state = 9}, - [1034] = {.lex_state = 4, .external_lex_state = 8}, - [1035] = {.lex_state = 4, .external_lex_state = 8}, - [1036] = {.lex_state = 4, .external_lex_state = 8}, - [1037] = {.lex_state = 2, .external_lex_state = 9}, - [1038] = {.lex_state = 4, .external_lex_state = 8}, - [1039] = {.lex_state = 4, .external_lex_state = 8}, - [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 = 4, .external_lex_state = 8}, - [1044] = {.lex_state = 2, .external_lex_state = 9}, - [1045] = {.lex_state = 2, .external_lex_state = 9}, - [1046] = {.lex_state = 2, .external_lex_state = 9}, - [1047] = {.lex_state = 2, .external_lex_state = 9}, + [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}, + [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}, + [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}, [1048] = {.lex_state = 2, .external_lex_state = 9}, - [1049] = {.lex_state = 4, .external_lex_state = 8}, - [1050] = {.lex_state = 4, .external_lex_state = 8}, - [1051] = {.lex_state = 4, .external_lex_state = 8}, - [1052] = {.lex_state = 4, .external_lex_state = 18}, - [1053] = {.lex_state = 4, .external_lex_state = 18}, - [1054] = {.lex_state = 4, .external_lex_state = 10}, - [1055] = {.lex_state = 4, .external_lex_state = 22}, - [1056] = {.lex_state = 4, .external_lex_state = 22}, - [1057] = {.lex_state = 4, .external_lex_state = 22}, - [1058] = {.lex_state = 4, .external_lex_state = 22}, - [1059] = {.lex_state = 4, .external_lex_state = 22}, - [1060] = {.lex_state = 4, .external_lex_state = 22}, - [1061] = {.lex_state = 4, .external_lex_state = 18}, - [1062] = {.lex_state = 4, .external_lex_state = 22}, - [1063] = {.lex_state = 4, .external_lex_state = 22}, - [1064] = {.lex_state = 4, .external_lex_state = 22}, - [1065] = {.lex_state = 4, .external_lex_state = 22}, - [1066] = {.lex_state = 4, .external_lex_state = 22}, - [1067] = {.lex_state = 4, .external_lex_state = 22}, - [1068] = {.lex_state = 4, .external_lex_state = 22}, - [1069] = {.lex_state = 4, .external_lex_state = 22}, - [1070] = {.lex_state = 4, .external_lex_state = 22}, - [1071] = {.lex_state = 4, .external_lex_state = 22}, - [1072] = {.lex_state = 4, .external_lex_state = 22}, - [1073] = {.lex_state = 4, .external_lex_state = 22}, - [1074] = {.lex_state = 4, .external_lex_state = 22}, - [1075] = {.lex_state = 4, .external_lex_state = 18}, - [1076] = {.lex_state = 4, .external_lex_state = 22}, - [1077] = {.lex_state = 4, .external_lex_state = 22}, - [1078] = {.lex_state = 4, .external_lex_state = 22}, - [1079] = {.lex_state = 4, .external_lex_state = 22}, - [1080] = {.lex_state = 4, .external_lex_state = 22}, - [1081] = {.lex_state = 4, .external_lex_state = 22}, - [1082] = {.lex_state = 1, .external_lex_state = 31}, - [1083] = {.lex_state = 4, .external_lex_state = 18}, - [1084] = {.lex_state = 4, .external_lex_state = 23}, - [1085] = {.lex_state = 4, .external_lex_state = 23}, - [1086] = {.lex_state = 4, .external_lex_state = 23}, - [1087] = {.lex_state = 4, .external_lex_state = 23}, - [1088] = {.lex_state = 4, .external_lex_state = 23}, - [1089] = {.lex_state = 4, .external_lex_state = 23}, - [1090] = {.lex_state = 4, .external_lex_state = 10}, - [1091] = {.lex_state = 4, .external_lex_state = 23}, - [1092] = {.lex_state = 4, .external_lex_state = 23}, - [1093] = {.lex_state = 4, .external_lex_state = 23}, - [1094] = {.lex_state = 4, .external_lex_state = 23}, - [1095] = {.lex_state = 4, .external_lex_state = 23}, - [1096] = {.lex_state = 4, .external_lex_state = 23}, - [1097] = {.lex_state = 4, .external_lex_state = 23}, - [1098] = {.lex_state = 4, .external_lex_state = 23}, - [1099] = {.lex_state = 4, .external_lex_state = 23}, - [1100] = {.lex_state = 4, .external_lex_state = 23}, - [1101] = {.lex_state = 4, .external_lex_state = 23}, - [1102] = {.lex_state = 4, .external_lex_state = 23}, - [1103] = {.lex_state = 4, .external_lex_state = 23}, - [1104] = {.lex_state = 4, .external_lex_state = 23}, - [1105] = {.lex_state = 4, .external_lex_state = 23}, - [1106] = {.lex_state = 4, .external_lex_state = 23}, - [1107] = {.lex_state = 4, .external_lex_state = 23}, - [1108] = {.lex_state = 4, .external_lex_state = 23}, - [1109] = {.lex_state = 4, .external_lex_state = 23}, - [1110] = {.lex_state = 4, .external_lex_state = 33}, - [1111] = {.lex_state = 4, .external_lex_state = 18}, - [1112] = {.lex_state = 3, .external_lex_state = 9}, - [1113] = {.lex_state = 3, .external_lex_state = 9}, - [1114] = {.lex_state = 3, .external_lex_state = 9}, - [1115] = {.lex_state = 3, .external_lex_state = 9}, - [1116] = {.lex_state = 3, .external_lex_state = 9}, - [1117] = {.lex_state = 3, .external_lex_state = 9}, - [1118] = {.lex_state = 3, .external_lex_state = 9}, - [1119] = {.lex_state = 3, .external_lex_state = 9}, - [1120] = {.lex_state = 3, .external_lex_state = 9}, - [1121] = {.lex_state = 3, .external_lex_state = 9}, - [1122] = {.lex_state = 3, .external_lex_state = 9}, - [1123] = {.lex_state = 3, .external_lex_state = 9}, - [1124] = {.lex_state = 3, .external_lex_state = 9}, - [1125] = {.lex_state = 3, .external_lex_state = 9}, - [1126] = {.lex_state = 3, .external_lex_state = 9}, - [1127] = {.lex_state = 3, .external_lex_state = 9}, - [1128] = {.lex_state = 3, .external_lex_state = 9}, - [1129] = {.lex_state = 3, .external_lex_state = 9}, - [1130] = {.lex_state = 3, .external_lex_state = 9}, - [1131] = {.lex_state = 3, .external_lex_state = 9}, - [1132] = {.lex_state = 3, .external_lex_state = 9}, - [1133] = {.lex_state = 3, .external_lex_state = 9}, - [1134] = {.lex_state = 3, .external_lex_state = 9}, - [1135] = {.lex_state = 3, .external_lex_state = 9}, - [1136] = {.lex_state = 3, .external_lex_state = 9}, - [1137] = {.lex_state = 4, .external_lex_state = 34}, - [1138] = {.lex_state = 4, .external_lex_state = 24}, - [1139] = {.lex_state = 4, .external_lex_state = 24}, - [1140] = {.lex_state = 4, .external_lex_state = 24}, - [1141] = {.lex_state = 4, .external_lex_state = 24}, - [1142] = {.lex_state = 4, .external_lex_state = 24}, - [1143] = {.lex_state = 4, .external_lex_state = 24}, - [1144] = {.lex_state = 4, .external_lex_state = 13}, - [1145] = {.lex_state = 4, .external_lex_state = 24}, - [1146] = {.lex_state = 4, .external_lex_state = 24}, - [1147] = {.lex_state = 4, .external_lex_state = 24}, - [1148] = {.lex_state = 4, .external_lex_state = 24}, - [1149] = {.lex_state = 4, .external_lex_state = 24}, - [1150] = {.lex_state = 4, .external_lex_state = 24}, - [1151] = {.lex_state = 4, .external_lex_state = 24}, - [1152] = {.lex_state = 4, .external_lex_state = 24}, - [1153] = {.lex_state = 4, .external_lex_state = 24}, - [1154] = {.lex_state = 4, .external_lex_state = 24}, - [1155] = {.lex_state = 4, .external_lex_state = 24}, - [1156] = {.lex_state = 4, .external_lex_state = 24}, - [1157] = {.lex_state = 4, .external_lex_state = 24}, - [1158] = {.lex_state = 4, .external_lex_state = 24}, - [1159] = {.lex_state = 4, .external_lex_state = 24}, - [1160] = {.lex_state = 4, .external_lex_state = 24}, - [1161] = {.lex_state = 4, .external_lex_state = 24}, - [1162] = {.lex_state = 4, .external_lex_state = 24}, + [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}, + [1055] = {.lex_state = 2, .external_lex_state = 9}, + [1056] = {.lex_state = 4, .external_lex_state = 18}, + [1057] = {.lex_state = 4, .external_lex_state = 20}, + [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}, + [1064] = {.lex_state = 2, .external_lex_state = 9}, + [1065] = {.lex_state = 2, .external_lex_state = 9}, + [1066] = {.lex_state = 4, .external_lex_state = 20}, + [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}, + [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}, + [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}, + [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 = 35}, - [1165] = {.lex_state = 4, .external_lex_state = 25}, - [1166] = {.lex_state = 4, .external_lex_state = 25}, - [1167] = {.lex_state = 4, .external_lex_state = 25}, - [1168] = {.lex_state = 4, .external_lex_state = 25}, - [1169] = {.lex_state = 4, .external_lex_state = 25}, - [1170] = {.lex_state = 4, .external_lex_state = 25}, - [1171] = {.lex_state = 4, .external_lex_state = 13}, - [1172] = {.lex_state = 4, .external_lex_state = 25}, - [1173] = {.lex_state = 4, .external_lex_state = 25}, - [1174] = {.lex_state = 4, .external_lex_state = 25}, - [1175] = {.lex_state = 4, .external_lex_state = 25}, - [1176] = {.lex_state = 4, .external_lex_state = 25}, - [1177] = {.lex_state = 4, .external_lex_state = 25}, - [1178] = {.lex_state = 4, .external_lex_state = 25}, - [1179] = {.lex_state = 4, .external_lex_state = 25}, - [1180] = {.lex_state = 4, .external_lex_state = 25}, - [1181] = {.lex_state = 4, .external_lex_state = 25}, - [1182] = {.lex_state = 4, .external_lex_state = 25}, - [1183] = {.lex_state = 4, .external_lex_state = 25}, - [1184] = {.lex_state = 4, .external_lex_state = 25}, - [1185] = {.lex_state = 4, .external_lex_state = 25}, - [1186] = {.lex_state = 4, .external_lex_state = 25}, - [1187] = {.lex_state = 4, .external_lex_state = 25}, - [1188] = {.lex_state = 4, .external_lex_state = 25}, - [1189] = {.lex_state = 4, .external_lex_state = 25}, - [1190] = {.lex_state = 4, .external_lex_state = 25}, - [1191] = {.lex_state = 4, .external_lex_state = 36}, - [1192] = {.lex_state = 4, .external_lex_state = 26}, - [1193] = {.lex_state = 4, .external_lex_state = 26}, - [1194] = {.lex_state = 4, .external_lex_state = 26}, - [1195] = {.lex_state = 4, .external_lex_state = 26}, - [1196] = {.lex_state = 4, .external_lex_state = 26}, - [1197] = {.lex_state = 4, .external_lex_state = 26}, - [1198] = {.lex_state = 4, .external_lex_state = 13}, - [1199] = {.lex_state = 4, .external_lex_state = 26}, - [1200] = {.lex_state = 4, .external_lex_state = 26}, - [1201] = {.lex_state = 4, .external_lex_state = 26}, - [1202] = {.lex_state = 4, .external_lex_state = 26}, - [1203] = {.lex_state = 4, .external_lex_state = 26}, - [1204] = {.lex_state = 4, .external_lex_state = 26}, - [1205] = {.lex_state = 4, .external_lex_state = 26}, - [1206] = {.lex_state = 4, .external_lex_state = 26}, - [1207] = {.lex_state = 4, .external_lex_state = 26}, - [1208] = {.lex_state = 4, .external_lex_state = 26}, - [1209] = {.lex_state = 4, .external_lex_state = 26}, - [1210] = {.lex_state = 4, .external_lex_state = 26}, - [1211] = {.lex_state = 4, .external_lex_state = 26}, - [1212] = {.lex_state = 4, .external_lex_state = 26}, - [1213] = {.lex_state = 4, .external_lex_state = 26}, - [1214] = {.lex_state = 4, .external_lex_state = 26}, - [1215] = {.lex_state = 4, .external_lex_state = 26}, - [1216] = {.lex_state = 4, .external_lex_state = 26}, - [1217] = {.lex_state = 4, .external_lex_state = 26}, - [1218] = {.lex_state = 4, .external_lex_state = 37}, - [1219] = {.lex_state = 4, .external_lex_state = 27}, - [1220] = {.lex_state = 4, .external_lex_state = 27}, - [1221] = {.lex_state = 4, .external_lex_state = 27}, - [1222] = {.lex_state = 4, .external_lex_state = 27}, - [1223] = {.lex_state = 4, .external_lex_state = 27}, - [1224] = {.lex_state = 4, .external_lex_state = 27}, - [1225] = {.lex_state = 4, .external_lex_state = 13}, - [1226] = {.lex_state = 4, .external_lex_state = 27}, - [1227] = {.lex_state = 4, .external_lex_state = 27}, - [1228] = {.lex_state = 4, .external_lex_state = 27}, - [1229] = {.lex_state = 4, .external_lex_state = 27}, - [1230] = {.lex_state = 4, .external_lex_state = 27}, - [1231] = {.lex_state = 4, .external_lex_state = 27}, - [1232] = {.lex_state = 4, .external_lex_state = 27}, - [1233] = {.lex_state = 4, .external_lex_state = 27}, - [1234] = {.lex_state = 4, .external_lex_state = 27}, - [1235] = {.lex_state = 4, .external_lex_state = 27}, - [1236] = {.lex_state = 4, .external_lex_state = 27}, - [1237] = {.lex_state = 4, .external_lex_state = 27}, - [1238] = {.lex_state = 4, .external_lex_state = 27}, - [1239] = {.lex_state = 2, .external_lex_state = 9}, - [1240] = {.lex_state = 4, .external_lex_state = 27}, - [1241] = {.lex_state = 4, .external_lex_state = 27}, - [1242] = {.lex_state = 4, .external_lex_state = 27}, - [1243] = {.lex_state = 4, .external_lex_state = 27}, - [1244] = {.lex_state = 4, .external_lex_state = 27}, - [1245] = {.lex_state = 4, .external_lex_state = 27}, - [1246] = {.lex_state = 3, .external_lex_state = 31}, - [1247] = {.lex_state = 2, .external_lex_state = 9}, + [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}, + [1209] = {.lex_state = 4, .external_lex_state = 18}, + [1210] = {.lex_state = 4, .external_lex_state = 18}, + [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}, + [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}, + [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}, + [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 = 2, .external_lex_state = 9}, - [1250] = {.lex_state = 2, .external_lex_state = 9}, - [1251] = {.lex_state = 2, .external_lex_state = 9}, - [1252] = {.lex_state = 4, .external_lex_state = 13}, - [1253] = {.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 = 13}, - [1256] = {.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 = 2, .external_lex_state = 9}, - [1260] = {.lex_state = 2, .external_lex_state = 9}, - [1261] = {.lex_state = 4, .external_lex_state = 18}, - [1262] = {.lex_state = 2, .external_lex_state = 9}, - [1263] = {.lex_state = 2, .external_lex_state = 9}, - [1264] = {.lex_state = 2, .external_lex_state = 9}, - [1265] = {.lex_state = 2, .external_lex_state = 9}, - [1266] = {.lex_state = 2, .external_lex_state = 9}, - [1267] = {.lex_state = 2, .external_lex_state = 9}, - [1268] = {.lex_state = 2, .external_lex_state = 9}, - [1269] = {.lex_state = 2, .external_lex_state = 9}, - [1270] = {.lex_state = 2, .external_lex_state = 9}, - [1271] = {.lex_state = 2, .external_lex_state = 9}, - [1272] = {.lex_state = 2, .external_lex_state = 9}, - [1273] = {.lex_state = 2, .external_lex_state = 9}, - [1274] = {.lex_state = 2, .external_lex_state = 9}, - [1275] = {.lex_state = 2, .external_lex_state = 9}, - [1276] = {.lex_state = 2, .external_lex_state = 9}, - [1277] = {.lex_state = 2, .external_lex_state = 9}, - [1278] = {.lex_state = 2, .external_lex_state = 9}, - [1279] = {.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 = 2, .external_lex_state = 9}, - [1282] = {.lex_state = 2, .external_lex_state = 9}, - [1283] = {.lex_state = 2, .external_lex_state = 9}, - [1284] = {.lex_state = 2, .external_lex_state = 9}, - [1285] = {.lex_state = 2, .external_lex_state = 9}, - [1286] = {.lex_state = 4, .external_lex_state = 18}, - [1287] = {.lex_state = 2, .external_lex_state = 9}, - [1288] = {.lex_state = 2, .external_lex_state = 9}, - [1289] = {.lex_state = 2, .external_lex_state = 9}, - [1290] = {.lex_state = 2, .external_lex_state = 9}, - [1291] = {.lex_state = 4, .external_lex_state = 10}, - [1292] = {.lex_state = 2, .external_lex_state = 9}, - [1293] = {.lex_state = 2, .external_lex_state = 9}, - [1294] = {.lex_state = 2, .external_lex_state = 9}, - [1295] = {.lex_state = 2, .external_lex_state = 9}, - [1296] = {.lex_state = 4, .external_lex_state = 21}, - [1297] = {.lex_state = 2, .external_lex_state = 9}, - [1298] = {.lex_state = 2, .external_lex_state = 9}, - [1299] = {.lex_state = 2, .external_lex_state = 9}, - [1300] = {.lex_state = 2, .external_lex_state = 9}, - [1301] = {.lex_state = 2, .external_lex_state = 9}, - [1302] = {.lex_state = 2, .external_lex_state = 9}, - [1303] = {.lex_state = 2, .external_lex_state = 9}, - [1304] = {.lex_state = 2, .external_lex_state = 9}, - [1305] = {.lex_state = 2, .external_lex_state = 9}, - [1306] = {.lex_state = 2, .external_lex_state = 9}, - [1307] = {.lex_state = 2, .external_lex_state = 9}, - [1308] = {.lex_state = 2, .external_lex_state = 9}, - [1309] = {.lex_state = 2, .external_lex_state = 9}, - [1310] = {.lex_state = 4, .external_lex_state = 38}, - [1311] = {.lex_state = 2, .external_lex_state = 9}, - [1312] = {.lex_state = 2, .external_lex_state = 9}, - [1313] = {.lex_state = 2, .external_lex_state = 9}, - [1314] = {.lex_state = 2, .external_lex_state = 9}, - [1315] = {.lex_state = 2, .external_lex_state = 9}, - [1316] = {.lex_state = 2, .external_lex_state = 9}, - [1317] = {.lex_state = 4, .external_lex_state = 39}, - [1318] = {.lex_state = 4, .external_lex_state = 18}, - [1319] = {.lex_state = 4, .external_lex_state = 18}, + [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}, + [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 = 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 = 18}, - [1326] = {.lex_state = 4, .external_lex_state = 18}, - [1327] = {.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}, [1328] = {.lex_state = 4, .external_lex_state = 18}, - [1329] = {.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 = 4, .external_lex_state = 18}, - [1332] = {.lex_state = 4, .external_lex_state = 18}, - [1333] = {.lex_state = 4, .external_lex_state = 18}, - [1334] = {.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 = 4, .external_lex_state = 18}, - [1337] = {.lex_state = 4, .external_lex_state = 18}, - [1338] = {.lex_state = 4, .external_lex_state = 18}, - [1339] = {.lex_state = 4, .external_lex_state = 18}, - [1340] = {.lex_state = 4, .external_lex_state = 18}, - [1341] = {.lex_state = 4, .external_lex_state = 18}, - [1342] = {.lex_state = 4, .external_lex_state = 18}, - [1343] = {.lex_state = 4, .external_lex_state = 18}, - [1344] = {.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 = 4, .external_lex_state = 18}, - [1347] = {.lex_state = 4, .external_lex_state = 13}, - [1348] = {.lex_state = 4, .external_lex_state = 13}, - [1349] = {.lex_state = 4, .external_lex_state = 13}, - [1350] = {.lex_state = 4, .external_lex_state = 13}, - [1351] = {.lex_state = 4, .external_lex_state = 40}, - [1352] = {.lex_state = 1, .external_lex_state = 9}, - [1353] = {.lex_state = 1, .external_lex_state = 9}, - [1354] = {.lex_state = 1, .external_lex_state = 9}, - [1355] = {.lex_state = 1, .external_lex_state = 9}, - [1356] = {.lex_state = 4, .external_lex_state = 41}, - [1357] = {.lex_state = 2, .external_lex_state = 9}, - [1358] = {.lex_state = 1, .external_lex_state = 9}, - [1359] = {.lex_state = 1, .external_lex_state = 9}, - [1360] = {.lex_state = 4, .external_lex_state = 13}, - [1361] = {.lex_state = 4, .external_lex_state = 13}, - [1362] = {.lex_state = 4, .external_lex_state = 18}, - [1363] = {.lex_state = 4, .external_lex_state = 18}, - [1364] = {.lex_state = 4, .external_lex_state = 18}, - [1365] = {.lex_state = 4, .external_lex_state = 18}, - [1366] = {.lex_state = 4, .external_lex_state = 18}, - [1367] = {.lex_state = 4, .external_lex_state = 18}, - [1368] = {.lex_state = 4, .external_lex_state = 18}, - [1369] = {.lex_state = 4, .external_lex_state = 18}, - [1370] = {.lex_state = 4, .external_lex_state = 18}, - [1371] = {.lex_state = 1, .external_lex_state = 9}, - [1372] = {.lex_state = 1, .external_lex_state = 9}, - [1373] = {.lex_state = 1, .external_lex_state = 9}, - [1374] = {.lex_state = 1, .external_lex_state = 9}, - [1375] = {.lex_state = 1, .external_lex_state = 9}, - [1376] = {.lex_state = 1, .external_lex_state = 9}, - [1377] = {.lex_state = 1, .external_lex_state = 9}, - [1378] = {.lex_state = 1, .external_lex_state = 9}, - [1379] = {.lex_state = 1, .external_lex_state = 9}, - [1380] = {.lex_state = 1, .external_lex_state = 9}, - [1381] = {.lex_state = 1, .external_lex_state = 9}, - [1382] = {.lex_state = 1, .external_lex_state = 9}, - [1383] = {.lex_state = 1, .external_lex_state = 9}, - [1384] = {.lex_state = 4, .external_lex_state = 18}, - [1385] = {.lex_state = 4, .external_lex_state = 18}, - [1386] = {.lex_state = 4, .external_lex_state = 18}, - [1387] = {.lex_state = 4, .external_lex_state = 18}, - [1388] = {.lex_state = 4, .external_lex_state = 18}, - [1389] = {.lex_state = 4, .external_lex_state = 18}, - [1390] = {.lex_state = 4, .external_lex_state = 18}, - [1391] = {.lex_state = 4, .external_lex_state = 10}, - [1392] = {.lex_state = 4, .external_lex_state = 18}, - [1393] = {.lex_state = 4, .external_lex_state = 18}, - [1394] = {.lex_state = 4, .external_lex_state = 18}, - [1395] = {.lex_state = 4, .external_lex_state = 13}, - [1396] = {.lex_state = 1, .external_lex_state = 9}, - [1397] = {.lex_state = 1, .external_lex_state = 9}, - [1398] = {.lex_state = 1, .external_lex_state = 9}, - [1399] = {.lex_state = 1, .external_lex_state = 9}, - [1400] = {.lex_state = 1, .external_lex_state = 9}, - [1401] = {.lex_state = 1, .external_lex_state = 9}, - [1402] = {.lex_state = 4, .external_lex_state = 13}, - [1403] = {.lex_state = 4, .external_lex_state = 13}, - [1404] = {.lex_state = 4, .external_lex_state = 13}, - [1405] = {.lex_state = 4, .external_lex_state = 13}, - [1406] = {.lex_state = 4, .external_lex_state = 13}, - [1407] = {.lex_state = 4, .external_lex_state = 13}, - [1408] = {.lex_state = 4, .external_lex_state = 13}, - [1409] = {.lex_state = 4, .external_lex_state = 13}, - [1410] = {.lex_state = 4, .external_lex_state = 13}, - [1411] = {.lex_state = 4, .external_lex_state = 13}, - [1412] = {.lex_state = 4, .external_lex_state = 13}, - [1413] = {.lex_state = 4, .external_lex_state = 13}, - [1414] = {.lex_state = 4, .external_lex_state = 18}, - [1415] = {.lex_state = 4, .external_lex_state = 18}, - [1416] = {.lex_state = 4, .external_lex_state = 18}, - [1417] = {.lex_state = 4, .external_lex_state = 19}, - [1418] = {.lex_state = 4, .external_lex_state = 19}, - [1419] = {.lex_state = 4, .external_lex_state = 19}, - [1420] = {.lex_state = 4, .external_lex_state = 19}, - [1421] = {.lex_state = 4, .external_lex_state = 19}, - [1422] = {.lex_state = 4, .external_lex_state = 19}, - [1423] = {.lex_state = 4, .external_lex_state = 19}, - [1424] = {.lex_state = 4, .external_lex_state = 19}, - [1425] = {.lex_state = 4, .external_lex_state = 19}, - [1426] = {.lex_state = 4, .external_lex_state = 19}, - [1427] = {.lex_state = 4, .external_lex_state = 19}, - [1428] = {.lex_state = 4, .external_lex_state = 19}, - [1429] = {.lex_state = 4, .external_lex_state = 19}, - [1430] = {.lex_state = 4, .external_lex_state = 19}, - [1431] = {.lex_state = 4, .external_lex_state = 19}, - [1432] = {.lex_state = 4, .external_lex_state = 19}, - [1433] = {.lex_state = 4, .external_lex_state = 19}, - [1434] = {.lex_state = 4, .external_lex_state = 19}, - [1435] = {.lex_state = 4, .external_lex_state = 19}, - [1436] = {.lex_state = 4, .external_lex_state = 19}, - [1437] = {.lex_state = 4, .external_lex_state = 19}, - [1438] = {.lex_state = 4, .external_lex_state = 19}, - [1439] = {.lex_state = 4, .external_lex_state = 19}, - [1440] = {.lex_state = 4, .external_lex_state = 19}, - [1441] = {.lex_state = 4, .external_lex_state = 19}, - [1442] = {.lex_state = 4, .external_lex_state = 42}, - [1443] = {.lex_state = 4, .external_lex_state = 20}, - [1444] = {.lex_state = 4, .external_lex_state = 20}, - [1445] = {.lex_state = 4, .external_lex_state = 20}, - [1446] = {.lex_state = 4, .external_lex_state = 20}, - [1447] = {.lex_state = 4, .external_lex_state = 20}, - [1448] = {.lex_state = 4, .external_lex_state = 20}, - [1449] = {.lex_state = 4, .external_lex_state = 20}, - [1450] = {.lex_state = 4, .external_lex_state = 20}, - [1451] = {.lex_state = 4, .external_lex_state = 20}, - [1452] = {.lex_state = 4, .external_lex_state = 20}, - [1453] = {.lex_state = 4, .external_lex_state = 20}, - [1454] = {.lex_state = 4, .external_lex_state = 20}, - [1455] = {.lex_state = 4, .external_lex_state = 20}, - [1456] = {.lex_state = 4, .external_lex_state = 20}, - [1457] = {.lex_state = 4, .external_lex_state = 20}, - [1458] = {.lex_state = 4, .external_lex_state = 20}, - [1459] = {.lex_state = 4, .external_lex_state = 20}, - [1460] = {.lex_state = 4, .external_lex_state = 20}, - [1461] = {.lex_state = 4, .external_lex_state = 20}, - [1462] = {.lex_state = 4, .external_lex_state = 20}, - [1463] = {.lex_state = 4, .external_lex_state = 20}, - [1464] = {.lex_state = 4, .external_lex_state = 20}, - [1465] = {.lex_state = 4, .external_lex_state = 20}, - [1466] = {.lex_state = 4, .external_lex_state = 20}, - [1467] = {.lex_state = 4, .external_lex_state = 20}, - [1468] = {.lex_state = 4, .external_lex_state = 21}, - [1469] = {.lex_state = 4, .external_lex_state = 21}, - [1470] = {.lex_state = 4, .external_lex_state = 21}, - [1471] = {.lex_state = 4, .external_lex_state = 21}, - [1472] = {.lex_state = 4, .external_lex_state = 21}, - [1473] = {.lex_state = 4, .external_lex_state = 21}, - [1474] = {.lex_state = 4, .external_lex_state = 21}, - [1475] = {.lex_state = 4, .external_lex_state = 21}, - [1476] = {.lex_state = 4, .external_lex_state = 21}, - [1477] = {.lex_state = 4, .external_lex_state = 21}, + [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}, + [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}, + [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}, + [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}, + [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 = 21}, - [1480] = {.lex_state = 4, .external_lex_state = 21}, - [1481] = {.lex_state = 4, .external_lex_state = 21}, - [1482] = {.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 = 18}, - [1488] = {.lex_state = 4, .external_lex_state = 21}, - [1489] = {.lex_state = 4, .external_lex_state = 21}, - [1490] = {.lex_state = 4, .external_lex_state = 21}, - [1491] = {.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}, + [1491] = {.lex_state = 4, .external_lex_state = 25}, [1492] = {.lex_state = 4, .external_lex_state = 21}, - [1493] = {.lex_state = 2, .external_lex_state = 9}, - [1494] = {.lex_state = 4, .external_lex_state = 27}, - [1495] = {.lex_state = 4, .external_lex_state = 23}, + [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 = 22}, + [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 = 22}, + [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 = 23}, - [1505] = {.lex_state = 4, .external_lex_state = 25}, - [1506] = {.lex_state = 4, .external_lex_state = 25}, - [1507] = {.lex_state = 4, .external_lex_state = 25}, - [1508] = {.lex_state = 4, .external_lex_state = 25}, - [1509] = {.lex_state = 4, .external_lex_state = 23}, - [1510] = {.lex_state = 4, .external_lex_state = 25}, - [1511] = {.lex_state = 4, .external_lex_state = 25}, - [1512] = {.lex_state = 4, .external_lex_state = 23}, - [1513] = {.lex_state = 4, .external_lex_state = 25}, - [1514] = {.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 = 25}, - [1518] = {.lex_state = 4, .external_lex_state = 25}, - [1519] = {.lex_state = 4, .external_lex_state = 25}, - [1520] = {.lex_state = 4, .external_lex_state = 25}, - [1521] = {.lex_state = 4, .external_lex_state = 25}, - [1522] = {.lex_state = 4, .external_lex_state = 25}, - [1523] = {.lex_state = 4, .external_lex_state = 25}, - [1524] = {.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}, + [1524] = {.lex_state = 4, .external_lex_state = 23}, [1525] = {.lex_state = 4, .external_lex_state = 25}, - [1526] = {.lex_state = 4, .external_lex_state = 25}, - [1527] = {.lex_state = 4, .external_lex_state = 25}, - [1528] = {.lex_state = 4, .external_lex_state = 25}, - [1529] = {.lex_state = 4, .external_lex_state = 23}, - [1530] = {.lex_state = 4, .external_lex_state = 26}, - [1531] = {.lex_state = 4, .external_lex_state = 13}, - [1532] = {.lex_state = 4, .external_lex_state = 22}, - [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 = 23}, - [1537] = {.lex_state = 4, .external_lex_state = 26}, - [1538] = {.lex_state = 4, .external_lex_state = 26}, - [1539] = {.lex_state = 4, .external_lex_state = 26}, - [1540] = {.lex_state = 4, .external_lex_state = 26}, - [1541] = {.lex_state = 4, .external_lex_state = 23}, - [1542] = {.lex_state = 4, .external_lex_state = 23}, - [1543] = {.lex_state = 4, .external_lex_state = 25}, - [1544] = {.lex_state = 4, .external_lex_state = 26}, - [1545] = {.lex_state = 4, .external_lex_state = 23}, - [1546] = {.lex_state = 4, .external_lex_state = 25}, - [1547] = {.lex_state = 4, .external_lex_state = 22}, - [1548] = {.lex_state = 4, .external_lex_state = 26}, - [1549] = {.lex_state = 4, .external_lex_state = 22}, - [1550] = {.lex_state = 4, .external_lex_state = 23}, - [1551] = {.lex_state = 4, .external_lex_state = 26}, - [1552] = {.lex_state = 4, .external_lex_state = 22}, - [1553] = {.lex_state = 4, .external_lex_state = 22}, - [1554] = {.lex_state = 4, .external_lex_state = 26}, - [1555] = {.lex_state = 4, .external_lex_state = 23}, - [1556] = {.lex_state = 4, .external_lex_state = 23}, - [1557] = {.lex_state = 4, .external_lex_state = 26}, - [1558] = {.lex_state = 4, .external_lex_state = 22}, - [1559] = {.lex_state = 4, .external_lex_state = 22}, - [1560] = {.lex_state = 4, .external_lex_state = 26}, - [1561] = {.lex_state = 4, .external_lex_state = 26}, - [1562] = {.lex_state = 4, .external_lex_state = 26}, - [1563] = {.lex_state = 4, .external_lex_state = 26}, - [1564] = {.lex_state = 4, .external_lex_state = 26}, - [1565] = {.lex_state = 4, .external_lex_state = 26}, + [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}, + [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 = 26}, - [1568] = {.lex_state = 4, .external_lex_state = 21}, - [1569] = {.lex_state = 4, .external_lex_state = 26}, - [1570] = {.lex_state = 4, .external_lex_state = 26}, - [1571] = {.lex_state = 3, .external_lex_state = 9}, - [1572] = {.lex_state = 4, .external_lex_state = 26}, - [1573] = {.lex_state = 4, .external_lex_state = 22}, - [1574] = {.lex_state = 4, .external_lex_state = 22}, - [1575] = {.lex_state = 4, .external_lex_state = 26}, - [1576] = {.lex_state = 4, .external_lex_state = 26}, - [1577] = {.lex_state = 4, .external_lex_state = 25}, - [1578] = {.lex_state = 4, .external_lex_state = 25}, - [1579] = {.lex_state = 4, .external_lex_state = 27}, - [1580] = {.lex_state = 4, .external_lex_state = 13}, - [1581] = {.lex_state = 4, .external_lex_state = 25}, + [1567] = {.lex_state = 4, .external_lex_state = 22}, + [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 = 26}, - [1584] = {.lex_state = 4, .external_lex_state = 26}, - [1585] = {.lex_state = 4, .external_lex_state = 26}, - [1586] = {.lex_state = 4, .external_lex_state = 23}, - [1587] = {.lex_state = 4, .external_lex_state = 26}, - [1588] = {.lex_state = 4, .external_lex_state = 26}, - [1589] = {.lex_state = 4, .external_lex_state = 23}, - [1590] = {.lex_state = 4, .external_lex_state = 26}, - [1591] = {.lex_state = 4, .external_lex_state = 26}, - [1592] = {.lex_state = 4, .external_lex_state = 23}, - [1593] = {.lex_state = 4, .external_lex_state = 26}, - [1594] = {.lex_state = 4, .external_lex_state = 26}, - [1595] = {.lex_state = 4, .external_lex_state = 22}, - [1596] = {.lex_state = 4, .external_lex_state = 26}, - [1597] = {.lex_state = 4, .external_lex_state = 26}, - [1598] = {.lex_state = 4, .external_lex_state = 26}, - [1599] = {.lex_state = 4, .external_lex_state = 26}, + [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 = 26}, - [1602] = {.lex_state = 4, .external_lex_state = 26}, + [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 = 26}, - [1605] = {.lex_state = 4, .external_lex_state = 26}, - [1606] = {.lex_state = 4, .external_lex_state = 26}, - [1607] = {.lex_state = 4, .external_lex_state = 26}, - [1608] = {.lex_state = 4, .external_lex_state = 26}, - [1609] = {.lex_state = 4, .external_lex_state = 26}, - [1610] = {.lex_state = 4, .external_lex_state = 26}, - [1611] = {.lex_state = 4, .external_lex_state = 26}, - [1612] = {.lex_state = 4, .external_lex_state = 26}, - [1613] = {.lex_state = 4, .external_lex_state = 26}, - [1614] = {.lex_state = 4, .external_lex_state = 26}, - [1615] = {.lex_state = 4, .external_lex_state = 26}, - [1616] = {.lex_state = 4, .external_lex_state = 26}, - [1617] = {.lex_state = 4, .external_lex_state = 26}, - [1618] = {.lex_state = 4, .external_lex_state = 26}, - [1619] = {.lex_state = 4, .external_lex_state = 26}, - [1620] = {.lex_state = 4, .external_lex_state = 22}, - [1621] = {.lex_state = 4, .external_lex_state = 27}, - [1622] = {.lex_state = 4, .external_lex_state = 13}, - [1623] = {.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 = 22}, + [1626] = {.lex_state = 4, .external_lex_state = 25}, [1627] = {.lex_state = 4, .external_lex_state = 23}, - [1628] = {.lex_state = 4, .external_lex_state = 27}, - [1629] = {.lex_state = 4, .external_lex_state = 27}, - [1630] = {.lex_state = 4, .external_lex_state = 27}, - [1631] = {.lex_state = 4, .external_lex_state = 27}, + [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 = 21}, - [1634] = {.lex_state = 4, .external_lex_state = 26}, - [1635] = {.lex_state = 4, .external_lex_state = 27}, + [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 = 26}, + [1637] = {.lex_state = 4, .external_lex_state = 25}, [1638] = {.lex_state = 4, .external_lex_state = 23}, - [1639] = {.lex_state = 4, .external_lex_state = 27}, + [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 = 27}, - [1643] = {.lex_state = 4, .external_lex_state = 21}, + [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 = 27}, + [1645] = {.lex_state = 4, .external_lex_state = 23}, [1646] = {.lex_state = 4, .external_lex_state = 23}, - [1647] = {.lex_state = 4, .external_lex_state = 22}, - [1648] = {.lex_state = 4, .external_lex_state = 27}, + [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 = 27}, - [1652] = {.lex_state = 4, .external_lex_state = 27}, - [1653] = {.lex_state = 4, .external_lex_state = 27}, - [1654] = {.lex_state = 4, .external_lex_state = 27}, - [1655] = {.lex_state = 4, .external_lex_state = 27}, - [1656] = {.lex_state = 4, .external_lex_state = 27}, - [1657] = {.lex_state = 4, .external_lex_state = 27}, - [1658] = {.lex_state = 4, .external_lex_state = 27}, - [1659] = {.lex_state = 4, .external_lex_state = 27}, - [1660] = {.lex_state = 4, .external_lex_state = 27}, - [1661] = {.lex_state = 4, .external_lex_state = 27}, - [1662] = {.lex_state = 4, .external_lex_state = 23}, - [1663] = {.lex_state = 4, .external_lex_state = 23}, - [1664] = {.lex_state = 4, .external_lex_state = 27}, + [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 = 27}, - [1668] = {.lex_state = 4, .external_lex_state = 27}, - [1669] = {.lex_state = 4, .external_lex_state = 26}, - [1670] = {.lex_state = 4, .external_lex_state = 26}, - [1671] = {.lex_state = 4, .external_lex_state = 23}, - [1672] = {.lex_state = 4, .external_lex_state = 13}, - [1673] = {.lex_state = 4, .external_lex_state = 26}, + [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 = 27}, - [1676] = {.lex_state = 4, .external_lex_state = 27}, - [1677] = {.lex_state = 4, .external_lex_state = 27}, - [1678] = {.lex_state = 4, .external_lex_state = 23}, - [1679] = {.lex_state = 4, .external_lex_state = 27}, - [1680] = {.lex_state = 4, .external_lex_state = 27}, - [1681] = {.lex_state = 4, .external_lex_state = 23}, - [1682] = {.lex_state = 4, .external_lex_state = 27}, - [1683] = {.lex_state = 4, .external_lex_state = 27}, - [1684] = {.lex_state = 4, .external_lex_state = 23}, - [1685] = {.lex_state = 4, .external_lex_state = 27}, - [1686] = {.lex_state = 4, .external_lex_state = 27}, - [1687] = {.lex_state = 4, .external_lex_state = 23}, - [1688] = {.lex_state = 4, .external_lex_state = 27}, - [1689] = {.lex_state = 4, .external_lex_state = 27}, - [1690] = {.lex_state = 4, .external_lex_state = 27}, - [1691] = {.lex_state = 4, .external_lex_state = 27}, - [1692] = {.lex_state = 4, .external_lex_state = 23}, - [1693] = {.lex_state = 4, .external_lex_state = 27}, - [1694] = {.lex_state = 4, .external_lex_state = 27}, - [1695] = {.lex_state = 4, .external_lex_state = 23}, - [1696] = {.lex_state = 4, .external_lex_state = 27}, - [1697] = {.lex_state = 4, .external_lex_state = 27}, - [1698] = {.lex_state = 4, .external_lex_state = 27}, - [1699] = {.lex_state = 4, .external_lex_state = 27}, - [1700] = {.lex_state = 4, .external_lex_state = 27}, - [1701] = {.lex_state = 4, .external_lex_state = 27}, - [1702] = {.lex_state = 4, .external_lex_state = 27}, - [1703] = {.lex_state = 4, .external_lex_state = 27}, - [1704] = {.lex_state = 4, .external_lex_state = 27}, - [1705] = {.lex_state = 4, .external_lex_state = 27}, - [1706] = {.lex_state = 4, .external_lex_state = 27}, - [1707] = {.lex_state = 4, .external_lex_state = 27}, - [1708] = {.lex_state = 4, .external_lex_state = 27}, - [1709] = {.lex_state = 4, .external_lex_state = 27}, - [1710] = {.lex_state = 4, .external_lex_state = 27}, - [1711] = {.lex_state = 4, .external_lex_state = 27}, - [1712] = {.lex_state = 4, .external_lex_state = 23}, - [1713] = {.lex_state = 4, .external_lex_state = 23}, - [1714] = {.lex_state = 3, .external_lex_state = 9}, - [1715] = {.lex_state = 4, .external_lex_state = 13}, - [1716] = {.lex_state = 4, .external_lex_state = 13}, - [1717] = {.lex_state = 4, .external_lex_state = 13}, - [1718] = {.lex_state = 4, .external_lex_state = 23}, - [1719] = {.lex_state = 4, .external_lex_state = 22}, - [1720] = {.lex_state = 3, .external_lex_state = 9}, - [1721] = {.lex_state = 4, .external_lex_state = 13}, - [1722] = {.lex_state = 4, .external_lex_state = 27}, - [1723] = {.lex_state = 4, .external_lex_state = 19}, - [1724] = {.lex_state = 4, .external_lex_state = 27}, - [1725] = {.lex_state = 4, .external_lex_state = 13}, - [1726] = {.lex_state = 4, .external_lex_state = 22}, - [1727] = {.lex_state = 4, .external_lex_state = 22}, - [1728] = {.lex_state = 4, .external_lex_state = 22}, - [1729] = {.lex_state = 4, .external_lex_state = 21}, - [1730] = {.lex_state = 4, .external_lex_state = 21}, - [1731] = {.lex_state = 3, .external_lex_state = 9}, - [1732] = {.lex_state = 3, .external_lex_state = 9}, - [1733] = {.lex_state = 3, .external_lex_state = 9}, - [1734] = {.lex_state = 3, .external_lex_state = 9}, - [1735] = {.lex_state = 4, .external_lex_state = 23}, - [1736] = {.lex_state = 4, .external_lex_state = 22}, - [1737] = {.lex_state = 4, .external_lex_state = 23}, - [1738] = {.lex_state = 3, .external_lex_state = 9}, - [1739] = {.lex_state = 4, .external_lex_state = 13}, - [1740] = {.lex_state = 4, .external_lex_state = 23}, - [1741] = {.lex_state = 4, .external_lex_state = 21}, - [1742] = {.lex_state = 3, .external_lex_state = 9}, - [1743] = {.lex_state = 4, .external_lex_state = 21}, - [1744] = {.lex_state = 4, .external_lex_state = 22}, - [1745] = {.lex_state = 3, .external_lex_state = 9}, - [1746] = {.lex_state = 4, .external_lex_state = 22}, - [1747] = {.lex_state = 4, .external_lex_state = 22}, - [1748] = {.lex_state = 4, .external_lex_state = 27}, - [1749] = {.lex_state = 4, .external_lex_state = 27}, - [1750] = {.lex_state = 4, .external_lex_state = 27}, - [1751] = {.lex_state = 4, .external_lex_state = 27}, - [1752] = {.lex_state = 3, .external_lex_state = 9}, - [1753] = {.lex_state = 4, .external_lex_state = 22}, - [1754] = {.lex_state = 4, .external_lex_state = 22}, - [1755] = {.lex_state = 3, .external_lex_state = 9}, - [1756] = {.lex_state = 4, .external_lex_state = 22}, - [1757] = {.lex_state = 4, .external_lex_state = 21}, - [1758] = {.lex_state = 3, .external_lex_state = 9}, - [1759] = {.lex_state = 3, .external_lex_state = 9}, - [1760] = {.lex_state = 3, .external_lex_state = 9}, - [1761] = {.lex_state = 3, .external_lex_state = 9}, - [1762] = {.lex_state = 3, .external_lex_state = 9}, - [1763] = {.lex_state = 3, .external_lex_state = 9}, - [1764] = {.lex_state = 3, .external_lex_state = 9}, - [1765] = {.lex_state = 3, .external_lex_state = 9}, - [1766] = {.lex_state = 3, .external_lex_state = 9}, - [1767] = {.lex_state = 3, .external_lex_state = 9}, - [1768] = {.lex_state = 3, .external_lex_state = 9}, - [1769] = {.lex_state = 4, .external_lex_state = 22}, - [1770] = {.lex_state = 4, .external_lex_state = 22}, - [1771] = {.lex_state = 3, .external_lex_state = 9}, - [1772] = {.lex_state = 4, .external_lex_state = 21}, - [1773] = {.lex_state = 4, .external_lex_state = 22}, - [1774] = {.lex_state = 3, .external_lex_state = 9}, - [1775] = {.lex_state = 3, .external_lex_state = 9}, - [1776] = {.lex_state = 4, .external_lex_state = 23}, - [1777] = {.lex_state = 4, .external_lex_state = 23}, - [1778] = {.lex_state = 4, .external_lex_state = 24}, - [1779] = {.lex_state = 4, .external_lex_state = 13}, - [1780] = {.lex_state = 4, .external_lex_state = 23}, - [1781] = {.lex_state = 4, .external_lex_state = 23}, - [1782] = {.lex_state = 3, .external_lex_state = 9}, - [1783] = {.lex_state = 3, .external_lex_state = 9}, - [1784] = {.lex_state = 3, .external_lex_state = 9}, - [1785] = {.lex_state = 4, .external_lex_state = 22}, - [1786] = {.lex_state = 3, .external_lex_state = 9}, - [1787] = {.lex_state = 4, .external_lex_state = 24}, - [1788] = {.lex_state = 4, .external_lex_state = 12}, - [1789] = {.lex_state = 4, .external_lex_state = 12}, - [1790] = {.lex_state = 4, .external_lex_state = 12}, - [1791] = {.lex_state = 4, .external_lex_state = 12}, - [1792] = {.lex_state = 4, .external_lex_state = 12}, - [1793] = {.lex_state = 4, .external_lex_state = 12}, - [1794] = {.lex_state = 3, .external_lex_state = 9}, - [1795] = {.lex_state = 4, .external_lex_state = 21}, - [1796] = {.lex_state = 4, .external_lex_state = 12}, - [1797] = {.lex_state = 4, .external_lex_state = 12}, - [1798] = {.lex_state = 4, .external_lex_state = 12}, - [1799] = {.lex_state = 4, .external_lex_state = 12}, - [1800] = {.lex_state = 4, .external_lex_state = 12}, - [1801] = {.lex_state = 4, .external_lex_state = 12}, - [1802] = {.lex_state = 4, .external_lex_state = 12}, - [1803] = {.lex_state = 4, .external_lex_state = 12}, - [1804] = {.lex_state = 4, .external_lex_state = 12}, - [1805] = {.lex_state = 4, .external_lex_state = 12}, - [1806] = {.lex_state = 4, .external_lex_state = 12}, - [1807] = {.lex_state = 4, .external_lex_state = 12}, - [1808] = {.lex_state = 4, .external_lex_state = 12}, - [1809] = {.lex_state = 3, .external_lex_state = 9}, - [1810] = {.lex_state = 3, .external_lex_state = 9}, - [1811] = {.lex_state = 4, .external_lex_state = 22}, - [1812] = {.lex_state = 3, .external_lex_state = 9}, - [1813] = {.lex_state = 4, .external_lex_state = 12}, - [1814] = {.lex_state = 4, .external_lex_state = 12}, - [1815] = {.lex_state = 4, .external_lex_state = 12}, - [1816] = {.lex_state = 4, .external_lex_state = 12}, - [1817] = {.lex_state = 4, .external_lex_state = 12}, - [1818] = {.lex_state = 4, .external_lex_state = 12}, - [1819] = {.lex_state = 3, .external_lex_state = 9}, - [1820] = {.lex_state = 4, .external_lex_state = 22}, - [1821] = {.lex_state = 4, .external_lex_state = 25}, - [1822] = {.lex_state = 4, .external_lex_state = 13}, - [1823] = {.lex_state = 4, .external_lex_state = 13}, - [1824] = {.lex_state = 4, .external_lex_state = 13}, - [1825] = {.lex_state = 4, .external_lex_state = 13}, - [1826] = {.lex_state = 4, .external_lex_state = 13}, - [1827] = {.lex_state = 4, .external_lex_state = 13}, - [1828] = {.lex_state = 4, .external_lex_state = 13}, - [1829] = {.lex_state = 4, .external_lex_state = 13}, - [1830] = {.lex_state = 4, .external_lex_state = 13}, - [1831] = {.lex_state = 4, .external_lex_state = 13}, - [1832] = {.lex_state = 3, .external_lex_state = 9}, - [1833] = {.lex_state = 3, .external_lex_state = 9}, - [1834] = {.lex_state = 3, .external_lex_state = 9}, - [1835] = {.lex_state = 3, .external_lex_state = 9}, - [1836] = {.lex_state = 4, .external_lex_state = 13}, - [1837] = {.lex_state = 4, .external_lex_state = 13}, - [1838] = {.lex_state = 4, .external_lex_state = 13}, - [1839] = {.lex_state = 4, .external_lex_state = 22}, - [1840] = {.lex_state = 3, .external_lex_state = 9}, - [1841] = {.lex_state = 3, .external_lex_state = 9}, - [1842] = {.lex_state = 4, .external_lex_state = 13}, - [1843] = {.lex_state = 4, .external_lex_state = 13}, - [1844] = {.lex_state = 4, .external_lex_state = 13}, - [1845] = {.lex_state = 4, .external_lex_state = 22}, - [1846] = {.lex_state = 4, .external_lex_state = 13}, - [1847] = {.lex_state = 3, .external_lex_state = 9}, - [1848] = {.lex_state = 3, .external_lex_state = 9}, - [1849] = {.lex_state = 3, .external_lex_state = 9}, - [1850] = {.lex_state = 3, .external_lex_state = 9}, - [1851] = {.lex_state = 3, .external_lex_state = 9}, - [1852] = {.lex_state = 3, .external_lex_state = 9}, - [1853] = {.lex_state = 3, .external_lex_state = 9}, - [1854] = {.lex_state = 3, .external_lex_state = 9}, - [1855] = {.lex_state = 3, .external_lex_state = 9}, - [1856] = {.lex_state = 3, .external_lex_state = 9}, - [1857] = {.lex_state = 1, .external_lex_state = 9}, - [1858] = {.lex_state = 3, .external_lex_state = 9}, - [1859] = {.lex_state = 3, .external_lex_state = 9}, - [1860] = {.lex_state = 3, .external_lex_state = 9}, - [1861] = {.lex_state = 3, .external_lex_state = 9}, - [1862] = {.lex_state = 3, .external_lex_state = 9}, - [1863] = {.lex_state = 3, .external_lex_state = 9}, - [1864] = {.lex_state = 4, .external_lex_state = 22}, - [1865] = {.lex_state = 4, .external_lex_state = 24}, - [1866] = {.lex_state = 4, .external_lex_state = 13}, - [1867] = {.lex_state = 4, .external_lex_state = 20}, - [1868] = {.lex_state = 4, .external_lex_state = 22}, - [1869] = {.lex_state = 4, .external_lex_state = 22}, - [1870] = {.lex_state = 4, .external_lex_state = 21}, - [1871] = {.lex_state = 4, .external_lex_state = 13}, - [1872] = {.lex_state = 4, .external_lex_state = 13}, - [1873] = {.lex_state = 4, .external_lex_state = 13}, - [1874] = {.lex_state = 4, .external_lex_state = 22}, - [1875] = {.lex_state = 4, .external_lex_state = 26}, - [1876] = {.lex_state = 4, .external_lex_state = 24}, - [1877] = {.lex_state = 4, .external_lex_state = 24}, - [1878] = {.lex_state = 4, .external_lex_state = 24}, - [1879] = {.lex_state = 4, .external_lex_state = 24}, - [1880] = {.lex_state = 1, .external_lex_state = 9}, - [1881] = {.lex_state = 1, .external_lex_state = 9}, - [1882] = {.lex_state = 4, .external_lex_state = 22}, - [1883] = {.lex_state = 4, .external_lex_state = 21}, - [1884] = {.lex_state = 1, .external_lex_state = 9}, - [1885] = {.lex_state = 4, .external_lex_state = 22}, - [1886] = {.lex_state = 1, .external_lex_state = 9}, + [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}, + [1687] = {.lex_state = 4, .external_lex_state = 26}, + [1688] = {.lex_state = 4, .external_lex_state = 22}, + [1689] = {.lex_state = 4, .external_lex_state = 22}, + [1690] = {.lex_state = 4, .external_lex_state = 26}, + [1691] = {.lex_state = 4, .external_lex_state = 22}, + [1692] = {.lex_state = 4, .external_lex_state = 22}, + [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}, + [1702] = {.lex_state = 4, .external_lex_state = 26}, + [1703] = {.lex_state = 4, .external_lex_state = 26}, + [1704] = {.lex_state = 4, .external_lex_state = 26}, + [1705] = {.lex_state = 4, .external_lex_state = 26}, + [1706] = {.lex_state = 4, .external_lex_state = 26}, + [1707] = {.lex_state = 4, .external_lex_state = 26}, + [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}, + [1713] = {.lex_state = 4, .external_lex_state = 26}, + [1714] = {.lex_state = 4, .external_lex_state = 22}, + [1715] = {.lex_state = 4, .external_lex_state = 22}, + [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}, + [1726] = {.lex_state = 4, .external_lex_state = 26}, + [1727] = {.lex_state = 4, .external_lex_state = 15}, + [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}, + [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}, + [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}, + [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}, + [1759] = {.lex_state = 4, .external_lex_state = 26}, + [1760] = {.lex_state = 4, .external_lex_state = 26}, + [1761] = {.lex_state = 4, .external_lex_state = 22}, + [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}, + [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}, + [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}, + [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}, + [1798] = {.lex_state = 4, .external_lex_state = 26}, + [1799] = {.lex_state = 4, .external_lex_state = 24}, + [1800] = {.lex_state = 4, .external_lex_state = 27}, + [1801] = {.lex_state = 4, .external_lex_state = 15}, + [1802] = {.lex_state = 4, .external_lex_state = 27}, + [1803] = {.lex_state = 4, .external_lex_state = 22}, + [1804] = {.lex_state = 4, .external_lex_state = 15}, + [1805] = {.lex_state = 4, .external_lex_state = 27}, + [1806] = {.lex_state = 4, .external_lex_state = 22}, + [1807] = {.lex_state = 4, .external_lex_state = 22}, + [1808] = {.lex_state = 4, .external_lex_state = 27}, + [1809] = {.lex_state = 4, .external_lex_state = 24}, + [1810] = {.lex_state = 4, .external_lex_state = 15}, + [1811] = {.lex_state = 4, .external_lex_state = 27}, + [1812] = {.lex_state = 4, .external_lex_state = 27}, + [1813] = {.lex_state = 4, .external_lex_state = 27}, + [1814] = {.lex_state = 4, .external_lex_state = 27}, + [1815] = {.lex_state = 4, .external_lex_state = 27}, + [1816] = {.lex_state = 4, .external_lex_state = 27}, + [1817] = {.lex_state = 4, .external_lex_state = 27}, + [1818] = {.lex_state = 4, .external_lex_state = 27}, + [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}, + [1824] = {.lex_state = 4, .external_lex_state = 27}, + [1825] = {.lex_state = 4, .external_lex_state = 22}, + [1826] = {.lex_state = 1, .external_lex_state = 9}, + [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}, + [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}, + [1863] = {.lex_state = 4, .external_lex_state = 15}, + [1864] = {.lex_state = 4, .external_lex_state = 15}, + [1865] = {.lex_state = 4, .external_lex_state = 27}, + [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}, + [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 = 43}, - [1890] = {.lex_state = 1, .external_lex_state = 9}, - [1891] = {.lex_state = 4, .external_lex_state = 13}, - [1892] = {.lex_state = 4, .external_lex_state = 22}, - [1893] = {.lex_state = 3, .external_lex_state = 9}, - [1894] = {.lex_state = 4, .external_lex_state = 13}, - [1895] = {.lex_state = 4, .external_lex_state = 13}, - [1896] = {.lex_state = 4, .external_lex_state = 22}, - [1897] = {.lex_state = 4, .external_lex_state = 24}, - [1898] = {.lex_state = 4, .external_lex_state = 22}, - [1899] = {.lex_state = 4, .external_lex_state = 22}, - [1900] = {.lex_state = 4, .external_lex_state = 24}, - [1901] = {.lex_state = 4, .external_lex_state = 22}, - [1902] = {.lex_state = 4, .external_lex_state = 22}, - [1903] = {.lex_state = 4, .external_lex_state = 24}, - [1904] = {.lex_state = 4, .external_lex_state = 22}, - [1905] = {.lex_state = 4, .external_lex_state = 13}, - [1906] = {.lex_state = 4, .external_lex_state = 22}, - [1907] = {.lex_state = 1, .external_lex_state = 9}, - [1908] = {.lex_state = 4, .external_lex_state = 24}, - [1909] = {.lex_state = 4, .external_lex_state = 22}, - [1910] = {.lex_state = 1, .external_lex_state = 9}, - [1911] = {.lex_state = 4, .external_lex_state = 22}, - [1912] = {.lex_state = 4, .external_lex_state = 24}, - [1913] = {.lex_state = 1, .external_lex_state = 9}, - [1914] = {.lex_state = 4, .external_lex_state = 24}, - [1915] = {.lex_state = 4, .external_lex_state = 24}, - [1916] = {.lex_state = 1, .external_lex_state = 9}, - [1917] = {.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 = 1, .external_lex_state = 9}, - [1920] = {.lex_state = 1, .external_lex_state = 9}, - [1921] = {.lex_state = 1, .external_lex_state = 9}, - [1922] = {.lex_state = 1, .external_lex_state = 9}, - [1923] = {.lex_state = 1, .external_lex_state = 9}, - [1924] = {.lex_state = 1, .external_lex_state = 9}, - [1925] = {.lex_state = 1, .external_lex_state = 9}, - [1926] = {.lex_state = 1, .external_lex_state = 9}, - [1927] = {.lex_state = 1, .external_lex_state = 9}, - [1928] = {.lex_state = 1, .external_lex_state = 9}, - [1929] = {.lex_state = 1, .external_lex_state = 9}, - [1930] = {.lex_state = 4, .external_lex_state = 24}, - [1931] = {.lex_state = 4, .external_lex_state = 24}, - [1932] = {.lex_state = 1, .external_lex_state = 9}, - [1933] = {.lex_state = 4, .external_lex_state = 24}, - [1934] = {.lex_state = 4, .external_lex_state = 24}, - [1935] = {.lex_state = 1, .external_lex_state = 9}, - [1936] = {.lex_state = 1, .external_lex_state = 9}, - [1937] = {.lex_state = 4, .external_lex_state = 13}, - [1938] = {.lex_state = 4, .external_lex_state = 24}, - [1939] = {.lex_state = 4, .external_lex_state = 24}, - [1940] = {.lex_state = 4, .external_lex_state = 22}, - [1941] = {.lex_state = 4, .external_lex_state = 22}, - [1942] = {.lex_state = 4, .external_lex_state = 19}, - [1943] = {.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}, - [1945] = {.lex_state = 4, .external_lex_state = 21}, - [1946] = {.lex_state = 4, .external_lex_state = 24}, - [1947] = {.lex_state = 4, .external_lex_state = 24}, - [1948] = {.lex_state = 3, .external_lex_state = 9}, - [1949] = {.lex_state = 4, .external_lex_state = 13}, - [1950] = {.lex_state = 4, .external_lex_state = 13}, - [1951] = {.lex_state = 3, .external_lex_state = 9}, - [1952] = {.lex_state = 4, .external_lex_state = 25}, - [1953] = {.lex_state = 1, .external_lex_state = 9}, - [1954] = {.lex_state = 1, .external_lex_state = 9}, + [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}, + [1954] = {.lex_state = 4, .external_lex_state = 15}, [1955] = {.lex_state = 1, .external_lex_state = 9}, - [1956] = {.lex_state = 4, .external_lex_state = 13}, - [1957] = {.lex_state = 1, .external_lex_state = 9}, - [1958] = {.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 = 1, .external_lex_state = 9}, - [1961] = {.lex_state = 1, .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 = 1, .external_lex_state = 9}, - [1964] = {.lex_state = 1, .external_lex_state = 9}, - [1965] = {.lex_state = 4, .external_lex_state = 24}, - [1966] = {.lex_state = 1, .external_lex_state = 9}, - [1967] = {.lex_state = 4, .external_lex_state = 13}, - [1968] = {.lex_state = 1, .external_lex_state = 9}, - [1969] = {.lex_state = 1, .external_lex_state = 9}, - [1970] = {.lex_state = 1, .external_lex_state = 9}, - [1971] = {.lex_state = 4, .external_lex_state = 24}, - [1972] = {.lex_state = 1, .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 = 4, .external_lex_state = 24}, - [1975] = {.lex_state = 4, .external_lex_state = 23}, - [1976] = {.lex_state = 4, .external_lex_state = 24}, - [1977] = {.lex_state = 4, .external_lex_state = 13}, - [1978] = {.lex_state = 4, .external_lex_state = 24}, - [1979] = {.lex_state = 4, .external_lex_state = 21}, - [1980] = {.lex_state = 4, .external_lex_state = 13}, - [1981] = {.lex_state = 4, .external_lex_state = 24}, + [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 = 4, .external_lex_state = 13}, - [1984] = {.lex_state = 1, .external_lex_state = 9}, - [1985] = {.lex_state = 4, .external_lex_state = 24}, - [1986] = {.lex_state = 4, .external_lex_state = 13}, - [1987] = {.lex_state = 4, .external_lex_state = 13}, - [1988] = {.lex_state = 4, .external_lex_state = 13}, - [1989] = {.lex_state = 4, .external_lex_state = 13}, - [1990] = {.lex_state = 4, .external_lex_state = 13}, - [1991] = {.lex_state = 4, .external_lex_state = 13}, - [1992] = {.lex_state = 1, .external_lex_state = 9}, - [1993] = {.lex_state = 1, .external_lex_state = 9}, - [1994] = {.lex_state = 1, .external_lex_state = 9}, - [1995] = {.lex_state = 1, .external_lex_state = 9}, - [1996] = {.lex_state = 1, .external_lex_state = 9}, - [1997] = {.lex_state = 1, .external_lex_state = 9}, - [1998] = {.lex_state = 1, .external_lex_state = 9}, - [1999] = {.lex_state = 1, .external_lex_state = 9}, - [2000] = {.lex_state = 1, .external_lex_state = 9}, - [2001] = {.lex_state = 1, .external_lex_state = 9}, - [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 = 24}, - [2008] = {.lex_state = 4, .external_lex_state = 22}, - [2009] = {.lex_state = 4, .external_lex_state = 13}, - [2010] = {.lex_state = 4, .external_lex_state = 24}, - [2011] = {.lex_state = 4, .external_lex_state = 24}, - [2012] = {.lex_state = 1, .external_lex_state = 9}, - [2013] = {.lex_state = 1, .external_lex_state = 9}, + [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 = 13}, - [2016] = {.lex_state = 4, .external_lex_state = 13}, - [2017] = {.lex_state = 4, .external_lex_state = 13}, - [2018] = {.lex_state = 1, .external_lex_state = 9}, - [2019] = {.lex_state = 1, .external_lex_state = 9}, + [2015] = {.lex_state = 4, .external_lex_state = 19}, + [2016] = {.lex_state = 4, .external_lex_state = 19}, + [2017] = {.lex_state = 1, .external_lex_state = 9}, + [2018] = {.lex_state = 4, .external_lex_state = 24}, + [2019] = {.lex_state = 4, .external_lex_state = 24}, [2020] = {.lex_state = 1, .external_lex_state = 9}, - [2021] = {.lex_state = 4, .external_lex_state = 13}, - [2022] = {.lex_state = 4, .external_lex_state = 24}, + [2021] = {.lex_state = 3, .external_lex_state = 9}, + [2022] = {.lex_state = 1, .external_lex_state = 9}, [2023] = {.lex_state = 1, .external_lex_state = 9}, - [2024] = {.lex_state = 2, .external_lex_state = 44}, - [2025] = {.lex_state = 4, .external_lex_state = 19}, - [2026] = {.lex_state = 4, .external_lex_state = 24}, - [2027] = {.lex_state = 4, .external_lex_state = 21}, - [2028] = {.lex_state = 4, .external_lex_state = 24}, - [2029] = {.lex_state = 4, .external_lex_state = 24}, - [2030] = {.lex_state = 4, .external_lex_state = 21}, - [2031] = {.lex_state = 4, .external_lex_state = 24}, - [2032] = {.lex_state = 4, .external_lex_state = 19}, - [2033] = {.lex_state = 4, .external_lex_state = 19}, - [2034] = {.lex_state = 4, .external_lex_state = 19}, + [2024] = {.lex_state = 3, .external_lex_state = 9}, + [2025] = {.lex_state = 4, .external_lex_state = 22}, + [2026] = {.lex_state = 1, .external_lex_state = 9}, + [2027] = {.lex_state = 1, .external_lex_state = 9}, + [2028] = {.lex_state = 1, .external_lex_state = 9}, + [2029] = {.lex_state = 1, .external_lex_state = 9}, + [2030] = {.lex_state = 1, .external_lex_state = 9}, + [2031] = {.lex_state = 1, .external_lex_state = 9}, + [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 = 4, .external_lex_state = 24}, - [2038] = {.lex_state = 1, .external_lex_state = 9}, + [2037] = {.lex_state = 1, .external_lex_state = 9}, + [2038] = {.lex_state = 4, .external_lex_state = 24}, [2039] = {.lex_state = 4, .external_lex_state = 19}, [2040] = {.lex_state = 1, .external_lex_state = 9}, - [2041] = {.lex_state = 4, .external_lex_state = 24}, - [2042] = {.lex_state = 4, .external_lex_state = 19}, + [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 = 24}, - [2045] = {.lex_state = 4, .external_lex_state = 19}, + [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 = 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 = 24}, + [2050] = {.lex_state = 4, .external_lex_state = 22}, [2051] = {.lex_state = 4, .external_lex_state = 19}, - [2052] = {.lex_state = 4, .external_lex_state = 24}, - [2053] = {.lex_state = 4, .external_lex_state = 24}, - [2054] = {.lex_state = 4, .external_lex_state = 19}, - [2055] = {.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}, - [2057] = {.lex_state = 4, .external_lex_state = 19}, - [2058] = {.lex_state = 4, .external_lex_state = 19}, - [2059] = {.lex_state = 4, .external_lex_state = 19}, + [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}, - [2061] = {.lex_state = 4, .external_lex_state = 19}, - [2062] = {.lex_state = 4, .external_lex_state = 19}, + [2061] = {.lex_state = 1, .external_lex_state = 9}, + [2062] = {.lex_state = 1, .external_lex_state = 9}, [2063] = {.lex_state = 4, .external_lex_state = 19}, - [2064] = {.lex_state = 4, .external_lex_state = 19}, - [2065] = {.lex_state = 4, .external_lex_state = 24}, - [2066] = {.lex_state = 4, .external_lex_state = 24}, - [2067] = {.lex_state = 4, .external_lex_state = 19}, - [2068] = {.lex_state = 4, .external_lex_state = 24}, - [2069] = {.lex_state = 4, .external_lex_state = 24}, - [2070] = {.lex_state = 4, .external_lex_state = 19}, + [2064] = {.lex_state = 1, .external_lex_state = 9}, + [2065] = {.lex_state = 1, .external_lex_state = 9}, + [2066] = {.lex_state = 4, .external_lex_state = 19}, + [2067] = {.lex_state = 1, .external_lex_state = 9}, + [2068] = {.lex_state = 1, .external_lex_state = 9}, + [2069] = {.lex_state = 4, .external_lex_state = 19}, + [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 = 4, .external_lex_state = 20}, - [2075] = {.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}, - [2077] = {.lex_state = 4, .external_lex_state = 19}, + [2077] = {.lex_state = 1, .external_lex_state = 9}, [2078] = {.lex_state = 4, .external_lex_state = 19}, - [2079] = {.lex_state = 4, .external_lex_state = 19}, - [2080] = {.lex_state = 4, .external_lex_state = 22}, + [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 = 19}, - [2083] = {.lex_state = 4, .external_lex_state = 25}, + [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 = 4, .external_lex_state = 13}, - [2087] = {.lex_state = 4, .external_lex_state = 19}, - [2088] = {.lex_state = 4, .external_lex_state = 19}, - [2089] = {.lex_state = 4, .external_lex_state = 21}, - [2090] = {.lex_state = 4, .external_lex_state = 19}, + [2086] = {.lex_state = 3, .external_lex_state = 9}, + [2087] = {.lex_state = 3, .external_lex_state = 9}, + [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 = 23}, + [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 = 23}, + [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 = 19}, + [2100] = {.lex_state = 4, .external_lex_state = 24}, [2101] = {.lex_state = 4, .external_lex_state = 19}, - [2102] = {.lex_state = 4, .external_lex_state = 19}, - [2103] = {.lex_state = 4, .external_lex_state = 19}, - [2104] = {.lex_state = 4, .external_lex_state = 19}, - [2105] = {.lex_state = 4, .external_lex_state = 19}, + [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 = 4, .external_lex_state = 19}, - [2108] = {.lex_state = 4, .external_lex_state = 19}, - [2109] = {.lex_state = 4, .external_lex_state = 19}, - [2110] = {.lex_state = 4, .external_lex_state = 19}, - [2111] = {.lex_state = 4, .external_lex_state = 19}, - [2112] = {.lex_state = 4, .external_lex_state = 19}, - [2113] = {.lex_state = 4, .external_lex_state = 19}, - [2114] = {.lex_state = 4, .external_lex_state = 23}, - [2115] = {.lex_state = 4, .external_lex_state = 20}, - [2116] = {.lex_state = 4, .external_lex_state = 13}, - [2117] = {.lex_state = 4, .external_lex_state = 23}, - [2118] = {.lex_state = 4, .external_lex_state = 25}, - [2119] = {.lex_state = 4, .external_lex_state = 25}, - [2120] = {.lex_state = 4, .external_lex_state = 25}, - [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 = 25}, - [2126] = {.lex_state = 4, .external_lex_state = 21}, + [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 = 20}, + [2128] = {.lex_state = 4, .external_lex_state = 19}, [2129] = {.lex_state = 4, .external_lex_state = 19}, - [2130] = {.lex_state = 4, .external_lex_state = 22}, - [2131] = {.lex_state = 4, .external_lex_state = 20}, - [2132] = {.lex_state = 4, .external_lex_state = 24}, - [2133] = {.lex_state = 4, .external_lex_state = 25}, - [2134] = {.lex_state = 4, .external_lex_state = 20}, - [2135] = {.lex_state = 4, .external_lex_state = 22}, - [2136] = {.lex_state = 4, .external_lex_state = 24}, - [2137] = {.lex_state = 4, .external_lex_state = 20}, - [2138] = {.lex_state = 4, .external_lex_state = 23}, - [2139] = {.lex_state = 4, .external_lex_state = 25}, - [2140] = {.lex_state = 4, .external_lex_state = 20}, - [2141] = {.lex_state = 4, .external_lex_state = 22}, - [2142] = {.lex_state = 4, .external_lex_state = 22}, - [2143] = {.lex_state = 4, .external_lex_state = 20}, - [2144] = {.lex_state = 4, .external_lex_state = 20}, + [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}, [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 = 20}, - [2150] = {.lex_state = 4, .external_lex_state = 20}, - [2151] = {.lex_state = 4, .external_lex_state = 20}, - [2152] = {.lex_state = 4, .external_lex_state = 20}, - [2153] = {.lex_state = 4, .external_lex_state = 20}, - [2154] = {.lex_state = 4, .external_lex_state = 25}, - [2155] = {.lex_state = 4, .external_lex_state = 20}, - [2156] = {.lex_state = 4, .external_lex_state = 23}, - [2157] = {.lex_state = 4, .external_lex_state = 25}, - [2158] = {.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 = 4, .external_lex_state = 19}, - [2161] = {.lex_state = 4, .external_lex_state = 19}, - [2162] = {.lex_state = 4, .external_lex_state = 21}, - [2163] = {.lex_state = 4, .external_lex_state = 19}, - [2164] = {.lex_state = 4, .external_lex_state = 19}, + [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}, [2165] = {.lex_state = 4, .external_lex_state = 20}, - [2166] = {.lex_state = 4, .external_lex_state = 20}, - [2167] = {.lex_state = 4, .external_lex_state = 20}, - [2168] = {.lex_state = 4, .external_lex_state = 21}, + [2166] = {.lex_state = 4, .external_lex_state = 25}, + [2167] = {.lex_state = 1, .external_lex_state = 9}, + [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 = 22}, + [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 = 25}, + [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 = 23}, + [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 = 20}, - [2181] = {.lex_state = 4, .external_lex_state = 20}, - [2182] = {.lex_state = 4, .external_lex_state = 21}, - [2183] = {.lex_state = 4, .external_lex_state = 20}, - [2184] = {.lex_state = 4, .external_lex_state = 20}, - [2185] = {.lex_state = 4, .external_lex_state = 25}, + [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 = 20}, - [2188] = {.lex_state = 4, .external_lex_state = 20}, - [2189] = {.lex_state = 4, .external_lex_state = 20}, - [2190] = {.lex_state = 4, .external_lex_state = 20}, - [2191] = {.lex_state = 4, .external_lex_state = 20}, - [2192] = {.lex_state = 4, .external_lex_state = 20}, + [2187] = {.lex_state = 4, .external_lex_state = 19}, + [2188] = {.lex_state = 4, .external_lex_state = 19}, + [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 = 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 = 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 = 4, .external_lex_state = 21}, - [2203] = {.lex_state = 4, .external_lex_state = 25}, - [2204] = {.lex_state = 4, .external_lex_state = 25}, - [2205] = {.lex_state = 4, .external_lex_state = 25}, + [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 = 21}, - [2208] = {.lex_state = 4, .external_lex_state = 21}, - [2209] = {.lex_state = 4, .external_lex_state = 21}, - [2210] = {.lex_state = 4, .external_lex_state = 21}, - [2211] = {.lex_state = 4, .external_lex_state = 25}, - [2212] = {.lex_state = 4, .external_lex_state = 25}, - [2213] = {.lex_state = 4, .external_lex_state = 20}, - [2214] = {.lex_state = 4, .external_lex_state = 21}, - [2215] = {.lex_state = 4, .external_lex_state = 20}, - [2216] = {.lex_state = 4, .external_lex_state = 25}, - [2217] = {.lex_state = 4, .external_lex_state = 21}, - [2218] = {.lex_state = 4, .external_lex_state = 25}, - [2219] = {.lex_state = 4, .external_lex_state = 25}, - [2220] = {.lex_state = 4, .external_lex_state = 21}, - [2221] = {.lex_state = 4, .external_lex_state = 25}, - [2222] = {.lex_state = 4, .external_lex_state = 21}, - [2223] = {.lex_state = 4, .external_lex_state = 21}, - [2224] = {.lex_state = 4, .external_lex_state = 23}, - [2225] = {.lex_state = 4, .external_lex_state = 25}, - [2226] = {.lex_state = 4, .external_lex_state = 21}, - [2227] = {.lex_state = 4, .external_lex_state = 22}, - [2228] = {.lex_state = 4, .external_lex_state = 22}, - [2229] = {.lex_state = 4, .external_lex_state = 21}, - [2230] = {.lex_state = 4, .external_lex_state = 21}, - [2231] = {.lex_state = 4, .external_lex_state = 21}, - [2232] = {.lex_state = 4, .external_lex_state = 21}, - [2233] = {.lex_state = 4, .external_lex_state = 21}, - [2234] = {.lex_state = 4, .external_lex_state = 21}, - [2235] = {.lex_state = 4, .external_lex_state = 21}, - [2236] = {.lex_state = 4, .external_lex_state = 21}, - [2237] = {.lex_state = 4, .external_lex_state = 21}, - [2238] = {.lex_state = 4, .external_lex_state = 21}, - [2239] = {.lex_state = 4, .external_lex_state = 21}, - [2240] = {.lex_state = 4, .external_lex_state = 25}, - [2241] = {.lex_state = 4, .external_lex_state = 25}, - [2242] = {.lex_state = 4, .external_lex_state = 21}, - [2243] = {.lex_state = 4, .external_lex_state = 24}, - [2244] = {.lex_state = 4, .external_lex_state = 24}, - [2245] = {.lex_state = 4, .external_lex_state = 21}, - [2246] = {.lex_state = 4, .external_lex_state = 21}, - [2247] = {.lex_state = 4, .external_lex_state = 20}, - [2248] = {.lex_state = 4, .external_lex_state = 20}, - [2249] = {.lex_state = 4, .external_lex_state = 22}, - [2250] = {.lex_state = 4, .external_lex_state = 26}, - [2251] = {.lex_state = 4, .external_lex_state = 20}, - [2252] = {.lex_state = 4, .external_lex_state = 20}, - [2253] = {.lex_state = 4, .external_lex_state = 21}, - [2254] = {.lex_state = 4, .external_lex_state = 21}, - [2255] = {.lex_state = 4, .external_lex_state = 21}, - [2256] = {.lex_state = 4, .external_lex_state = 13}, - [2257] = {.lex_state = 4, .external_lex_state = 21}, - [2258] = {.lex_state = 4, .external_lex_state = 21}, - [2259] = {.lex_state = 4, .external_lex_state = 24}, - [2260] = {.lex_state = 4, .external_lex_state = 21}, - [2261] = {.lex_state = 4, .external_lex_state = 21}, - [2262] = {.lex_state = 4, .external_lex_state = 24}, - [2263] = {.lex_state = 4, .external_lex_state = 21}, - [2264] = {.lex_state = 4, .external_lex_state = 21}, - [2265] = {.lex_state = 4, .external_lex_state = 25}, - [2266] = {.lex_state = 4, .external_lex_state = 21}, - [2267] = {.lex_state = 4, .external_lex_state = 21}, - [2268] = {.lex_state = 4, .external_lex_state = 21}, - [2269] = {.lex_state = 4, .external_lex_state = 21}, - [2270] = {.lex_state = 4, .external_lex_state = 25}, - [2271] = {.lex_state = 4, .external_lex_state = 21}, - [2272] = {.lex_state = 4, .external_lex_state = 21}, - [2273] = {.lex_state = 4, .external_lex_state = 25}, - [2274] = {.lex_state = 4, .external_lex_state = 21}, - [2275] = {.lex_state = 4, .external_lex_state = 21}, - [2276] = {.lex_state = 4, .external_lex_state = 26}, - [2277] = {.lex_state = 4, .external_lex_state = 12}, - [2278] = {.lex_state = 4, .external_lex_state = 12}, - [2279] = {.lex_state = 4, .external_lex_state = 12}, - [2280] = {.lex_state = 4, .external_lex_state = 14}, - [2281] = {.lex_state = 4, .external_lex_state = 12}, - [2282] = {.lex_state = 4, .external_lex_state = 12}, - [2283] = {.lex_state = 4, .external_lex_state = 12}, - [2284] = {.lex_state = 4, .external_lex_state = 12}, - [2285] = {.lex_state = 4, .external_lex_state = 12}, - [2286] = {.lex_state = 4, .external_lex_state = 12}, - [2287] = {.lex_state = 4, .external_lex_state = 12}, - [2288] = {.lex_state = 4, .external_lex_state = 12}, - [2289] = {.lex_state = 4, .external_lex_state = 12}, - [2290] = {.lex_state = 4, .external_lex_state = 12}, - [2291] = {.lex_state = 4, .external_lex_state = 12}, - [2292] = {.lex_state = 4, .external_lex_state = 12}, - [2293] = {.lex_state = 4, .external_lex_state = 14}, - [2294] = {.lex_state = 4, .external_lex_state = 12}, - [2295] = {.lex_state = 4, .external_lex_state = 12}, - [2296] = {.lex_state = 4, .external_lex_state = 12}, - [2297] = {.lex_state = 4, .external_lex_state = 12}, - [2298] = {.lex_state = 4, .external_lex_state = 12}, - [2299] = {.lex_state = 1, .external_lex_state = 44}, - [2300] = {.lex_state = 4, .external_lex_state = 12}, - [2301] = {.lex_state = 4, .external_lex_state = 12}, - [2302] = {.lex_state = 4, .external_lex_state = 12}, - [2303] = {.lex_state = 4, .external_lex_state = 12}, - [2304] = {.lex_state = 4, .external_lex_state = 12}, - [2305] = {.lex_state = 4, .external_lex_state = 12}, - [2306] = {.lex_state = 4, .external_lex_state = 12}, - [2307] = {.lex_state = 4, .external_lex_state = 12}, - [2308] = {.lex_state = 4, .external_lex_state = 12}, - [2309] = {.lex_state = 4, .external_lex_state = 12}, - [2310] = {.lex_state = 4, .external_lex_state = 12}, - [2311] = {.lex_state = 4, .external_lex_state = 12}, - [2312] = {.lex_state = 4, .external_lex_state = 12}, - [2313] = {.lex_state = 4, .external_lex_state = 12}, - [2314] = {.lex_state = 4, .external_lex_state = 12}, - [2315] = {.lex_state = 4, .external_lex_state = 12}, - [2316] = {.lex_state = 4, .external_lex_state = 12}, - [2317] = {.lex_state = 4, .external_lex_state = 12}, - [2318] = {.lex_state = 4, .external_lex_state = 12}, - [2319] = {.lex_state = 4, .external_lex_state = 12}, - [2320] = {.lex_state = 4, .external_lex_state = 12}, - [2321] = {.lex_state = 4, .external_lex_state = 12}, - [2322] = {.lex_state = 4, .external_lex_state = 12}, - [2323] = {.lex_state = 4, .external_lex_state = 12}, - [2324] = {.lex_state = 4, .external_lex_state = 12}, - [2325] = {.lex_state = 4, .external_lex_state = 12}, - [2326] = {.lex_state = 4, .external_lex_state = 12}, - [2327] = {.lex_state = 4, .external_lex_state = 12}, - [2328] = {.lex_state = 4, .external_lex_state = 12}, - [2329] = {.lex_state = 4, .external_lex_state = 12}, - [2330] = {.lex_state = 4, .external_lex_state = 12}, - [2331] = {.lex_state = 4, .external_lex_state = 12}, - [2332] = {.lex_state = 4, .external_lex_state = 12}, - [2333] = {.lex_state = 4, .external_lex_state = 12}, - [2334] = {.lex_state = 4, .external_lex_state = 12}, - [2335] = {.lex_state = 4, .external_lex_state = 12}, - [2336] = {.lex_state = 4, .external_lex_state = 12}, - [2337] = {.lex_state = 4, .external_lex_state = 12}, - [2338] = {.lex_state = 4, .external_lex_state = 12}, - [2339] = {.lex_state = 4, .external_lex_state = 12}, - [2340] = {.lex_state = 4, .external_lex_state = 14}, - [2341] = {.lex_state = 4, .external_lex_state = 12}, - [2342] = {.lex_state = 4, .external_lex_state = 14}, - [2343] = {.lex_state = 2, .external_lex_state = 17}, - [2344] = {.lex_state = 4, .external_lex_state = 12}, - [2345] = {.lex_state = 4, .external_lex_state = 12}, - [2346] = {.lex_state = 1, .external_lex_state = 17}, - [2347] = {.lex_state = 0, .external_lex_state = 45}, - [2348] = {.lex_state = 0, .external_lex_state = 45}, - [2349] = {.lex_state = 0, .external_lex_state = 45}, - [2350] = {.lex_state = 0, .external_lex_state = 45}, - [2351] = {.lex_state = 0, .external_lex_state = 45}, - [2352] = {.lex_state = 6, .external_lex_state = 46}, - [2353] = {.lex_state = 6, .external_lex_state = 46}, - [2354] = {.lex_state = 6, .external_lex_state = 47}, - [2355] = {.lex_state = 6, .external_lex_state = 48}, - [2356] = {.lex_state = 6, .external_lex_state = 48}, - [2357] = {.lex_state = 6, .external_lex_state = 47}, - [2358] = {.lex_state = 6, .external_lex_state = 48}, - [2359] = {.lex_state = 6, .external_lex_state = 47}, - [2360] = {.lex_state = 6, .external_lex_state = 47}, - [2361] = {.lex_state = 6, .external_lex_state = 48}, - [2362] = {.lex_state = 6, .external_lex_state = 47}, - [2363] = {.lex_state = 6, .external_lex_state = 47}, - [2364] = {.lex_state = 6, .external_lex_state = 47}, - [2365] = {.lex_state = 6, .external_lex_state = 48}, - [2366] = {.lex_state = 6, .external_lex_state = 47}, - [2367] = {.lex_state = 6, .external_lex_state = 48}, - [2368] = {.lex_state = 6, .external_lex_state = 47}, - [2369] = {.lex_state = 6, .external_lex_state = 47}, - [2370] = {.lex_state = 6, .external_lex_state = 47}, - [2371] = {.lex_state = 6, .external_lex_state = 47}, - [2372] = {.lex_state = 6, .external_lex_state = 47}, - [2373] = {.lex_state = 6, .external_lex_state = 47}, - [2374] = {.lex_state = 6, .external_lex_state = 47}, - [2375] = {.lex_state = 6, .external_lex_state = 47}, - [2376] = {.lex_state = 6, .external_lex_state = 47}, - [2377] = {.lex_state = 6, .external_lex_state = 48}, - [2378] = {.lex_state = 6, .external_lex_state = 47}, - [2379] = {.lex_state = 6, .external_lex_state = 48}, - [2380] = {.lex_state = 6, .external_lex_state = 48}, - [2381] = {.lex_state = 6, .external_lex_state = 47}, - [2382] = {.lex_state = 6, .external_lex_state = 48}, - [2383] = {.lex_state = 6, .external_lex_state = 47}, - [2384] = {.lex_state = 6, .external_lex_state = 47}, - [2385] = {.lex_state = 6, .external_lex_state = 48}, - [2386] = {.lex_state = 6, .external_lex_state = 47}, - [2387] = {.lex_state = 6, .external_lex_state = 48}, - [2388] = {.lex_state = 6, .external_lex_state = 47}, - [2389] = {.lex_state = 6, .external_lex_state = 48}, - [2390] = {.lex_state = 6, .external_lex_state = 47}, - [2391] = {.lex_state = 6, .external_lex_state = 47}, - [2392] = {.lex_state = 6, .external_lex_state = 48}, - [2393] = {.lex_state = 6, .external_lex_state = 47}, - [2394] = {.lex_state = 6, .external_lex_state = 47}, - [2395] = {.lex_state = 6, .external_lex_state = 48}, - [2396] = {.lex_state = 6, .external_lex_state = 47}, - [2397] = {.lex_state = 6, .external_lex_state = 48}, - [2398] = {.lex_state = 6, .external_lex_state = 47}, - [2399] = {.lex_state = 6, .external_lex_state = 48}, - [2400] = {.lex_state = 6, .external_lex_state = 47}, - [2401] = {.lex_state = 6, .external_lex_state = 48}, - [2402] = {.lex_state = 6, .external_lex_state = 47}, - [2403] = {.lex_state = 6, .external_lex_state = 48}, - [2404] = {.lex_state = 6, .external_lex_state = 47}, - [2405] = {.lex_state = 6, .external_lex_state = 48}, - [2406] = {.lex_state = 6, .external_lex_state = 47}, - [2407] = {.lex_state = 6, .external_lex_state = 48}, - [2408] = {.lex_state = 6, .external_lex_state = 47}, - [2409] = {.lex_state = 6, .external_lex_state = 48}, - [2410] = {.lex_state = 6, .external_lex_state = 48}, - [2411] = {.lex_state = 6, .external_lex_state = 47}, - [2412] = {.lex_state = 6, .external_lex_state = 48}, - [2413] = {.lex_state = 6, .external_lex_state = 47}, - [2414] = {.lex_state = 6, .external_lex_state = 48}, - [2415] = {.lex_state = 6, .external_lex_state = 48}, - [2416] = {.lex_state = 6, .external_lex_state = 47}, - [2417] = {.lex_state = 6, .external_lex_state = 48}, - [2418] = {.lex_state = 6, .external_lex_state = 47}, - [2419] = {.lex_state = 6, .external_lex_state = 48}, - [2420] = {.lex_state = 6, .external_lex_state = 47}, - [2421] = {.lex_state = 6, .external_lex_state = 48}, - [2422] = {.lex_state = 6, .external_lex_state = 48}, - [2423] = {.lex_state = 6, .external_lex_state = 47}, - [2424] = {.lex_state = 6, .external_lex_state = 48}, - [2425] = {.lex_state = 6, .external_lex_state = 48}, - [2426] = {.lex_state = 8, .external_lex_state = 49}, - [2427] = {.lex_state = 8, .external_lex_state = 49}, - [2428] = {.lex_state = 8, .external_lex_state = 49}, - [2429] = {.lex_state = 8, .external_lex_state = 49}, - [2430] = {.lex_state = 8, .external_lex_state = 49}, - [2431] = {.lex_state = 8, .external_lex_state = 49}, - [2432] = {.lex_state = 8, .external_lex_state = 49}, - [2433] = {.lex_state = 8, .external_lex_state = 49}, - [2434] = {.lex_state = 8, .external_lex_state = 49}, - [2435] = {.lex_state = 8, .external_lex_state = 49}, - [2436] = {.lex_state = 8, .external_lex_state = 49}, - [2437] = {.lex_state = 8, .external_lex_state = 49}, - [2438] = {.lex_state = 8, .external_lex_state = 49}, - [2439] = {.lex_state = 8, .external_lex_state = 49}, - [2440] = {.lex_state = 8, .external_lex_state = 49}, - [2441] = {.lex_state = 8, .external_lex_state = 49}, - [2442] = {.lex_state = 8, .external_lex_state = 49}, - [2443] = {.lex_state = 8, .external_lex_state = 50}, - [2444] = {.lex_state = 8, .external_lex_state = 50}, - [2445] = {.lex_state = 8, .external_lex_state = 50}, - [2446] = {.lex_state = 8, .external_lex_state = 50}, - [2447] = {.lex_state = 8, .external_lex_state = 50}, - [2448] = {.lex_state = 8, .external_lex_state = 50}, - [2449] = {.lex_state = 6, .external_lex_state = 51}, - [2450] = {.lex_state = 6, .external_lex_state = 51}, - [2451] = {.lex_state = 8, .external_lex_state = 50}, - [2452] = {.lex_state = 8, .external_lex_state = 50}, - [2453] = {.lex_state = 8, .external_lex_state = 50}, - [2454] = {.lex_state = 8, .external_lex_state = 50}, - [2455] = {.lex_state = 6, .external_lex_state = 51}, - [2456] = {.lex_state = 8, .external_lex_state = 50}, - [2457] = {.lex_state = 8, .external_lex_state = 50}, - [2458] = {.lex_state = 8, .external_lex_state = 50}, - [2459] = {.lex_state = 8, .external_lex_state = 50}, - [2460] = {.lex_state = 8, .external_lex_state = 50}, - [2461] = {.lex_state = 8, .external_lex_state = 50}, - [2462] = {.lex_state = 8, .external_lex_state = 50}, - [2463] = {.lex_state = 2049, .external_lex_state = 52}, - [2464] = {.lex_state = 2049, .external_lex_state = 52}, - [2465] = {.lex_state = 2049, .external_lex_state = 52}, - [2466] = {.lex_state = 2049, .external_lex_state = 52}, - [2467] = {.lex_state = 11, .external_lex_state = 53}, - [2468] = {.lex_state = 11, .external_lex_state = 53}, - [2469] = {.lex_state = 11, .external_lex_state = 53}, - [2470] = {.lex_state = 11, .external_lex_state = 53}, - [2471] = {.lex_state = 8, .external_lex_state = 54}, - [2472] = {.lex_state = 11, .external_lex_state = 53}, - [2473] = {.lex_state = 11, .external_lex_state = 53}, - [2474] = {.lex_state = 11, .external_lex_state = 53}, - [2475] = {.lex_state = 11, .external_lex_state = 53}, - [2476] = {.lex_state = 11, .external_lex_state = 53}, - [2477] = {.lex_state = 11, .external_lex_state = 53}, - [2478] = {.lex_state = 11, .external_lex_state = 53}, - [2479] = {.lex_state = 11, .external_lex_state = 53}, - [2480] = {.lex_state = 11, .external_lex_state = 53}, - [2481] = {.lex_state = 11, .external_lex_state = 53}, - [2482] = {.lex_state = 11, .external_lex_state = 53}, - [2483] = {.lex_state = 11, .external_lex_state = 53}, - [2484] = {.lex_state = 11, .external_lex_state = 53}, - [2485] = {.lex_state = 11, .external_lex_state = 53}, - [2486] = {.lex_state = 11, .external_lex_state = 53}, - [2487] = {.lex_state = 11, .external_lex_state = 53}, - [2488] = {.lex_state = 11, .external_lex_state = 53}, - [2489] = {.lex_state = 6, .external_lex_state = 55}, - [2490] = {.lex_state = 11, .external_lex_state = 53}, - [2491] = {.lex_state = 11, .external_lex_state = 53}, - [2492] = {.lex_state = 11, .external_lex_state = 53}, - [2493] = {.lex_state = 11, .external_lex_state = 53}, - [2494] = {.lex_state = 11, .external_lex_state = 53}, - [2495] = {.lex_state = 11, .external_lex_state = 53}, - [2496] = {.lex_state = 11, .external_lex_state = 53}, - [2497] = {.lex_state = 8, .external_lex_state = 54}, - [2498] = {.lex_state = 8, .external_lex_state = 54}, - [2499] = {.lex_state = 11, .external_lex_state = 53}, - [2500] = {.lex_state = 8, .external_lex_state = 54}, - [2501] = {.lex_state = 11, .external_lex_state = 53}, - [2502] = {.lex_state = 11, .external_lex_state = 53}, - [2503] = {.lex_state = 11, .external_lex_state = 53}, - [2504] = {.lex_state = 11, .external_lex_state = 53}, - [2505] = {.lex_state = 8, .external_lex_state = 56}, - [2506] = {.lex_state = 11, .external_lex_state = 53}, - [2507] = {.lex_state = 8, .external_lex_state = 56}, - [2508] = {.lex_state = 11, .external_lex_state = 53}, - [2509] = {.lex_state = 2049, .external_lex_state = 50}, - [2510] = {.lex_state = 11, .external_lex_state = 53}, - [2511] = {.lex_state = 8, .external_lex_state = 57}, - [2512] = {.lex_state = 11, .external_lex_state = 53}, - [2513] = {.lex_state = 11, .external_lex_state = 53}, - [2514] = {.lex_state = 8, .external_lex_state = 57}, - [2515] = {.lex_state = 8, .external_lex_state = 57}, - [2516] = {.lex_state = 11, .external_lex_state = 53}, - [2517] = {.lex_state = 6, .external_lex_state = 51}, - [2518] = {.lex_state = 11, .external_lex_state = 53}, - [2519] = {.lex_state = 2049, .external_lex_state = 50}, - [2520] = {.lex_state = 2049, .external_lex_state = 50}, - [2521] = {.lex_state = 11, .external_lex_state = 53}, - [2522] = {.lex_state = 11, .external_lex_state = 53}, - [2523] = {.lex_state = 8, .external_lex_state = 56}, - [2524] = {.lex_state = 2049, .external_lex_state = 50}, - [2525] = {.lex_state = 11, .external_lex_state = 53}, - [2526] = {.lex_state = 11, .external_lex_state = 53}, - [2527] = {.lex_state = 11, .external_lex_state = 53}, - [2528] = {.lex_state = 11, .external_lex_state = 53}, - [2529] = {.lex_state = 2049, .external_lex_state = 50}, - [2530] = {.lex_state = 11, .external_lex_state = 53}, - [2531] = {.lex_state = 11, .external_lex_state = 53}, - [2532] = {.lex_state = 2047, .external_lex_state = 58}, - [2533] = {.lex_state = 8, .external_lex_state = 54}, - [2534] = {.lex_state = 2047, .external_lex_state = 58}, - [2535] = {.lex_state = 2049, .external_lex_state = 59}, - [2536] = {.lex_state = 0, .external_lex_state = 45}, - [2537] = {.lex_state = 2049, .external_lex_state = 59}, - [2538] = {.lex_state = 5, .external_lex_state = 60}, - [2539] = {.lex_state = 2047, .external_lex_state = 58}, - [2540] = {.lex_state = 2047, .external_lex_state = 58}, - [2541] = {.lex_state = 2049, .external_lex_state = 59}, - [2542] = {.lex_state = 2047, .external_lex_state = 58}, - [2543] = {.lex_state = 2047, .external_lex_state = 58}, - [2544] = {.lex_state = 8, .external_lex_state = 54}, - [2545] = {.lex_state = 2047, .external_lex_state = 58}, - [2546] = {.lex_state = 8, .external_lex_state = 54}, - [2547] = {.lex_state = 2049, .external_lex_state = 59}, - [2548] = {.lex_state = 11, .external_lex_state = 53}, - [2549] = {.lex_state = 2047, .external_lex_state = 58}, - [2550] = {.lex_state = 2047, .external_lex_state = 58}, - [2551] = {.lex_state = 8}, - [2552] = {.lex_state = 2049, .external_lex_state = 61}, - [2553] = {.lex_state = 2049, .external_lex_state = 61}, - [2554] = {.lex_state = 7, .external_lex_state = 62}, - [2555] = {.lex_state = 2049, .external_lex_state = 61}, - [2556] = {.lex_state = 8, .external_lex_state = 63}, - [2557] = {.lex_state = 2049, .external_lex_state = 61}, - [2558] = {.lex_state = 0, .external_lex_state = 54}, - [2559] = {.lex_state = 5}, - [2560] = {.lex_state = 8}, - [2561] = {.lex_state = 8, .external_lex_state = 63}, - [2562] = {.lex_state = 2016, .external_lex_state = 64}, - [2563] = {.lex_state = 0, .external_lex_state = 54}, - [2564] = {.lex_state = 8, .external_lex_state = 54}, - [2565] = {.lex_state = 2047, .external_lex_state = 58}, - [2566] = {.lex_state = 2049, .external_lex_state = 61}, - [2567] = {.lex_state = 2049, .external_lex_state = 65}, - [2568] = {.lex_state = 0, .external_lex_state = 54}, - [2569] = {.lex_state = 7, .external_lex_state = 62}, - [2570] = {.lex_state = 10, .external_lex_state = 62}, - [2571] = {.lex_state = 7, .external_lex_state = 62}, - [2572] = {.lex_state = 10, .external_lex_state = 62}, - [2573] = {.lex_state = 2047, .external_lex_state = 58}, - [2574] = {.lex_state = 8, .external_lex_state = 54}, - [2575] = {.lex_state = 0, .external_lex_state = 54}, - [2576] = {.lex_state = 10, .external_lex_state = 62}, - [2577] = {.lex_state = 10, .external_lex_state = 62}, - [2578] = {.lex_state = 7, .external_lex_state = 62}, - [2579] = {.lex_state = 7, .external_lex_state = 62}, - [2580] = {.lex_state = 10, .external_lex_state = 62}, - [2581] = {.lex_state = 0, .external_lex_state = 54}, - [2582] = {.lex_state = 2016, .external_lex_state = 64}, - [2583] = {.lex_state = 2016, .external_lex_state = 64}, - [2584] = {.lex_state = 0, .external_lex_state = 54}, - [2585] = {.lex_state = 8, .external_lex_state = 54}, - [2586] = {.lex_state = 2049, .external_lex_state = 61}, - [2587] = {.lex_state = 2049, .external_lex_state = 61}, - [2588] = {.lex_state = 3, .external_lex_state = 61}, - [2589] = {.lex_state = 0, .external_lex_state = 66}, - [2590] = {.lex_state = 2049, .external_lex_state = 56}, - [2591] = {.lex_state = 3, .external_lex_state = 61}, - [2592] = {.lex_state = 2049, .external_lex_state = 56}, - [2593] = {.lex_state = 3, .external_lex_state = 61}, - [2594] = {.lex_state = 3, .external_lex_state = 61}, - [2595] = {.lex_state = 2049, .external_lex_state = 56}, - [2596] = {.lex_state = 3, .external_lex_state = 61}, - [2597] = {.lex_state = 0, .external_lex_state = 54}, - [2598] = {.lex_state = 2049, .external_lex_state = 56}, - [2599] = {.lex_state = 2049, .external_lex_state = 50}, - [2600] = {.lex_state = 2049, .external_lex_state = 67}, - [2601] = {.lex_state = 3, .external_lex_state = 61}, - [2602] = {.lex_state = 3, .external_lex_state = 61}, - [2603] = {.lex_state = 2049, .external_lex_state = 56}, - [2604] = {.lex_state = 3, .external_lex_state = 61}, - [2605] = {.lex_state = 2049, .external_lex_state = 56}, - [2606] = {.lex_state = 3, .external_lex_state = 61}, - [2607] = {.lex_state = 2049, .external_lex_state = 56}, - [2608] = {.lex_state = 2049, .external_lex_state = 56}, - [2609] = {.lex_state = 2049, .external_lex_state = 56}, - [2610] = {.lex_state = 3, .external_lex_state = 61}, - [2611] = {.lex_state = 3, .external_lex_state = 61}, - [2612] = {.lex_state = 2049, .external_lex_state = 56}, - [2613] = {.lex_state = 3, .external_lex_state = 61}, - [2614] = {.lex_state = 2049, .external_lex_state = 56}, - [2615] = {.lex_state = 3, .external_lex_state = 61}, - [2616] = {.lex_state = 3, .external_lex_state = 61}, - [2617] = {.lex_state = 3, .external_lex_state = 61}, - [2618] = {.lex_state = 2049, .external_lex_state = 56}, - [2619] = {.lex_state = 11, .external_lex_state = 53}, - [2620] = {.lex_state = 3, .external_lex_state = 61}, - [2621] = {.lex_state = 11, .external_lex_state = 53}, - [2622] = {.lex_state = 3, .external_lex_state = 61}, - [2623] = {.lex_state = 2047, .external_lex_state = 68}, - [2624] = {.lex_state = 11, .external_lex_state = 53}, - [2625] = {.lex_state = 8, .external_lex_state = 57}, - [2626] = {.lex_state = 8, .external_lex_state = 57}, - [2627] = {.lex_state = 5, .external_lex_state = 64}, - [2628] = {.lex_state = 3, .external_lex_state = 61}, - [2629] = {.lex_state = 3, .external_lex_state = 61}, - [2630] = {.lex_state = 2049, .external_lex_state = 50}, - [2631] = {.lex_state = 6, .external_lex_state = 61}, - [2632] = {.lex_state = 2049, .external_lex_state = 61}, - [2633] = {.lex_state = 0, .external_lex_state = 66}, - [2634] = {.lex_state = 3, .external_lex_state = 61}, - [2635] = {.lex_state = 3, .external_lex_state = 61}, - [2636] = {.lex_state = 2049, .external_lex_state = 56}, - [2637] = {.lex_state = 3, .external_lex_state = 61}, - [2638] = {.lex_state = 3, .external_lex_state = 61}, - [2639] = {.lex_state = 2049, .external_lex_state = 56}, - [2640] = {.lex_state = 2049, .external_lex_state = 61}, - [2641] = {.lex_state = 3, .external_lex_state = 61}, - [2642] = {.lex_state = 3, .external_lex_state = 61}, - [2643] = {.lex_state = 2, .external_lex_state = 61}, - [2644] = {.lex_state = 3, .external_lex_state = 61}, - [2645] = {.lex_state = 3, .external_lex_state = 61}, - [2646] = {.lex_state = 0, .external_lex_state = 66}, - [2647] = {.lex_state = 3, .external_lex_state = 61}, - [2648] = {.lex_state = 2, .external_lex_state = 61}, - [2649] = {.lex_state = 3, .external_lex_state = 61}, - [2650] = {.lex_state = 8, .external_lex_state = 69}, - [2651] = {.lex_state = 3, .external_lex_state = 61}, - [2652] = {.lex_state = 3, .external_lex_state = 61}, - [2653] = {.lex_state = 5, .external_lex_state = 64}, - [2654] = {.lex_state = 6, .external_lex_state = 61}, - [2655] = {.lex_state = 11, .external_lex_state = 53}, - [2656] = {.lex_state = 5, .external_lex_state = 64}, - [2657] = {.lex_state = 3, .external_lex_state = 61}, - [2658] = {.lex_state = 8, .external_lex_state = 57}, - [2659] = {.lex_state = 2049, .external_lex_state = 56}, - [2660] = {.lex_state = 2049, .external_lex_state = 56}, - [2661] = {.lex_state = 2, .external_lex_state = 61}, - [2662] = {.lex_state = 2049, .external_lex_state = 56}, - [2663] = {.lex_state = 8, .external_lex_state = 57}, - [2664] = {.lex_state = 2049, .external_lex_state = 59}, - [2665] = {.lex_state = 3, .external_lex_state = 61}, - [2666] = {.lex_state = 3, .external_lex_state = 61}, - [2667] = {.lex_state = 6, .external_lex_state = 61}, - [2668] = {.lex_state = 3, .external_lex_state = 61}, - [2669] = {.lex_state = 5, .external_lex_state = 70}, - [2670] = {.lex_state = 387, .external_lex_state = 71}, - [2671] = {.lex_state = 2049, .external_lex_state = 61}, - [2672] = {.lex_state = 0, .external_lex_state = 72}, - [2673] = {.lex_state = 2049, .external_lex_state = 50}, - [2674] = {.lex_state = 2049, .external_lex_state = 50}, - [2675] = {.lex_state = 8, .external_lex_state = 73}, - [2676] = {.lex_state = 0, .external_lex_state = 74}, - [2677] = {.lex_state = 2049, .external_lex_state = 50}, - [2678] = {.lex_state = 0, .external_lex_state = 75}, - [2679] = {.lex_state = 2047, .external_lex_state = 58}, - [2680] = {.lex_state = 387, .external_lex_state = 71}, - [2681] = {.lex_state = 1, .external_lex_state = 61}, - [2682] = {.lex_state = 0, .external_lex_state = 56}, - [2683] = {.lex_state = 387, .external_lex_state = 71}, - [2684] = {.lex_state = 0, .external_lex_state = 56}, - [2685] = {.lex_state = 387, .external_lex_state = 71}, - [2686] = {.lex_state = 387, .external_lex_state = 71}, - [2687] = {.lex_state = 387, .external_lex_state = 71}, - [2688] = {.lex_state = 0, .external_lex_state = 72}, - [2689] = {.lex_state = 387, .external_lex_state = 71}, - [2690] = {.lex_state = 0, .external_lex_state = 56}, - [2691] = {.lex_state = 0, .external_lex_state = 76}, - [2692] = {.lex_state = 0, .external_lex_state = 77}, - [2693] = {.lex_state = 0, .external_lex_state = 75}, - [2694] = {.lex_state = 0, .external_lex_state = 78}, - [2695] = {.lex_state = 0, .external_lex_state = 74}, - [2696] = {.lex_state = 5, .external_lex_state = 70}, - [2697] = {.lex_state = 2049, .external_lex_state = 50}, - [2698] = {.lex_state = 0, .external_lex_state = 76}, - [2699] = {.lex_state = 387, .external_lex_state = 71}, - [2700] = {.lex_state = 0, .external_lex_state = 77}, - [2701] = {.lex_state = 0, .external_lex_state = 56}, - [2702] = {.lex_state = 0, .external_lex_state = 79}, - [2703] = {.lex_state = 5, .external_lex_state = 63}, - [2704] = {.lex_state = 2049, .external_lex_state = 50}, - [2705] = {.lex_state = 387, .external_lex_state = 71}, - [2706] = {.lex_state = 0, .external_lex_state = 56}, - [2707] = {.lex_state = 10, .external_lex_state = 62}, - [2708] = {.lex_state = 10, .external_lex_state = 62}, - [2709] = {.lex_state = 10, .external_lex_state = 62}, - [2710] = {.lex_state = 387, .external_lex_state = 71}, - [2711] = {.lex_state = 7, .external_lex_state = 62}, - [2712] = {.lex_state = 7, .external_lex_state = 62}, - [2713] = {.lex_state = 7, .external_lex_state = 62}, - [2714] = {.lex_state = 0, .external_lex_state = 56}, - [2715] = {.lex_state = 387, .external_lex_state = 71}, - [2716] = {.lex_state = 387, .external_lex_state = 71}, - [2717] = {.lex_state = 1, .external_lex_state = 61}, - [2718] = {.lex_state = 0, .external_lex_state = 78}, - [2719] = {.lex_state = 387, .external_lex_state = 71}, - [2720] = {.lex_state = 0, .external_lex_state = 79}, - [2721] = {.lex_state = 2049, .external_lex_state = 50}, - [2722] = {.lex_state = 2049, .external_lex_state = 50}, - [2723] = {.lex_state = 0, .external_lex_state = 56}, - [2724] = {.lex_state = 0, .external_lex_state = 80}, - [2725] = {.lex_state = 0, .external_lex_state = 81}, - [2726] = {.lex_state = 0, .external_lex_state = 76}, - [2727] = {.lex_state = 387, .external_lex_state = 71}, - [2728] = {.lex_state = 2049, .external_lex_state = 61}, - [2729] = {.lex_state = 2049, .external_lex_state = 50}, - [2730] = {.lex_state = 0, .external_lex_state = 56}, - [2731] = {.lex_state = 0, .external_lex_state = 79}, - [2732] = {.lex_state = 11, .external_lex_state = 62}, - [2733] = {.lex_state = 2049, .external_lex_state = 61}, - [2734] = {.lex_state = 8}, - [2735] = {.lex_state = 0, .external_lex_state = 78}, - [2736] = {.lex_state = 387, .external_lex_state = 71}, - [2737] = {.lex_state = 0, .external_lex_state = 56}, - [2738] = {.lex_state = 0, .external_lex_state = 80}, - [2739] = {.lex_state = 0, .external_lex_state = 77}, - [2740] = {.lex_state = 11, .external_lex_state = 62}, - [2741] = {.lex_state = 5, .external_lex_state = 63}, - [2742] = {.lex_state = 11, .external_lex_state = 62}, - [2743] = {.lex_state = 2049, .external_lex_state = 61}, - [2744] = {.lex_state = 387, .external_lex_state = 71}, - [2745] = {.lex_state = 11, .external_lex_state = 62}, - [2746] = {.lex_state = 0, .external_lex_state = 56}, - [2747] = {.lex_state = 0, .external_lex_state = 56}, - [2748] = {.lex_state = 11, .external_lex_state = 62}, - [2749] = {.lex_state = 5, .external_lex_state = 63}, - [2750] = {.lex_state = 1, .external_lex_state = 61}, - [2751] = {.lex_state = 11, .external_lex_state = 62}, - [2752] = {.lex_state = 0, .external_lex_state = 74}, - [2753] = {.lex_state = 0, .external_lex_state = 56}, - [2754] = {.lex_state = 11, .external_lex_state = 62}, - [2755] = {.lex_state = 0, .external_lex_state = 72}, - [2756] = {.lex_state = 11, .external_lex_state = 62}, - [2757] = {.lex_state = 2016}, - [2758] = {.lex_state = 11, .external_lex_state = 62}, - [2759] = {.lex_state = 0, .external_lex_state = 81}, - [2760] = {.lex_state = 0, .external_lex_state = 56}, - [2761] = {.lex_state = 5, .external_lex_state = 63}, - [2762] = {.lex_state = 387, .external_lex_state = 71}, - [2763] = {.lex_state = 11, .external_lex_state = 62}, - [2764] = {.lex_state = 0, .external_lex_state = 80}, - [2765] = {.lex_state = 11, .external_lex_state = 62}, - [2766] = {.lex_state = 0, .external_lex_state = 56}, - [2767] = {.lex_state = 11, .external_lex_state = 62}, - [2768] = {.lex_state = 11, .external_lex_state = 62}, - [2769] = {.lex_state = 11, .external_lex_state = 62}, - [2770] = {.lex_state = 0, .external_lex_state = 81}, - [2771] = {.lex_state = 2049, .external_lex_state = 50}, - [2772] = {.lex_state = 11, .external_lex_state = 62}, - [2773] = {.lex_state = 11, .external_lex_state = 62}, - [2774] = {.lex_state = 2016}, - [2775] = {.lex_state = 5, .external_lex_state = 70}, - [2776] = {.lex_state = 0, .external_lex_state = 75}, - [2777] = {.lex_state = 2016}, - [2778] = {.lex_state = 8, .external_lex_state = 57}, - [2779] = {.lex_state = 0, .external_lex_state = 82}, - [2780] = {.lex_state = 2}, - [2781] = {.lex_state = 2}, + [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}, + [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}, + [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 = 82}, - [2784] = {.lex_state = 0, .external_lex_state = 83}, - [2785] = {.lex_state = 2}, - [2786] = {.lex_state = 0, .external_lex_state = 84}, - [2787] = {.lex_state = 0, .external_lex_state = 83}, - [2788] = {.lex_state = 0, .external_lex_state = 84}, - [2789] = {.lex_state = 0, .external_lex_state = 82}, - [2790] = {.lex_state = 0, .external_lex_state = 82}, - [2791] = {.lex_state = 0, .external_lex_state = 84}, - [2792] = {.lex_state = 2}, - [2793] = {.lex_state = 2}, - [2794] = {.lex_state = 2}, - [2795] = {.lex_state = 0, .external_lex_state = 82}, - [2796] = {.lex_state = 0, .external_lex_state = 83}, - [2797] = {.lex_state = 0, .external_lex_state = 83}, - [2798] = {.lex_state = 2049, .external_lex_state = 85}, - [2799] = {.lex_state = 0, .external_lex_state = 84}, + [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 = 0, .external_lex_state = 83}, - [2802] = {.lex_state = 2}, - [2803] = {.lex_state = 3, .external_lex_state = 61}, - [2804] = {.lex_state = 2}, - [2805] = {.lex_state = 0, .external_lex_state = 84}, - [2806] = {.lex_state = 0, .external_lex_state = 83}, - [2807] = {.lex_state = 0, .external_lex_state = 82}, - [2808] = {.lex_state = 2}, - [2809] = {.lex_state = 2}, - [2810] = {.lex_state = 0, .external_lex_state = 82}, - [2811] = {.lex_state = 0, .external_lex_state = 83}, - [2812] = {.lex_state = 2049, .external_lex_state = 85}, - [2813] = {.lex_state = 0, .external_lex_state = 84}, - [2814] = {.lex_state = 0, .external_lex_state = 83}, - [2815] = {.lex_state = 0, .external_lex_state = 84}, - [2816] = {.lex_state = 0, .external_lex_state = 66}, - [2817] = {.lex_state = 0, .external_lex_state = 82}, - [2818] = {.lex_state = 0, .external_lex_state = 84}, - [2819] = {.lex_state = 0, .external_lex_state = 84}, - [2820] = {.lex_state = 0, .external_lex_state = 82}, - [2821] = {.lex_state = 0, .external_lex_state = 82}, - [2822] = {.lex_state = 0, .external_lex_state = 82}, - [2823] = {.lex_state = 0, .external_lex_state = 82}, - [2824] = {.lex_state = 0, .external_lex_state = 83}, - [2825] = {.lex_state = 0, .external_lex_state = 82}, - [2826] = {.lex_state = 0, .external_lex_state = 82}, - [2827] = {.lex_state = 0, .external_lex_state = 84}, - [2828] = {.lex_state = 2}, - [2829] = {.lex_state = 0, .external_lex_state = 82}, + [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 = 8, .external_lex_state = 63}, - [2832] = {.lex_state = 0, .external_lex_state = 82}, - [2833] = {.lex_state = 2}, - [2834] = {.lex_state = 2}, - [2835] = {.lex_state = 0, .external_lex_state = 82}, - [2836] = {.lex_state = 2049}, - [2837] = {.lex_state = 0, .external_lex_state = 82}, - [2838] = {.lex_state = 0, .external_lex_state = 83}, - [2839] = {.lex_state = 0, .external_lex_state = 84}, - [2840] = {.lex_state = 0, .external_lex_state = 83}, - [2841] = {.lex_state = 0, .external_lex_state = 84}, - [2842] = {.lex_state = 2049}, - [2843] = {.lex_state = 0, .external_lex_state = 82}, - [2844] = {.lex_state = 0, .external_lex_state = 82}, - [2845] = {.lex_state = 0, .external_lex_state = 82}, - [2846] = {.lex_state = 0, .external_lex_state = 82}, - [2847] = {.lex_state = 0, .external_lex_state = 82}, - [2848] = {.lex_state = 2}, - [2849] = {.lex_state = 0, .external_lex_state = 82}, - [2850] = {.lex_state = 0, .external_lex_state = 82}, - [2851] = {.lex_state = 2}, - [2852] = {.lex_state = 2}, - [2853] = {.lex_state = 2}, - [2854] = {.lex_state = 0, .external_lex_state = 82}, - [2855] = {.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 = 82}, - [2858] = {.lex_state = 2049, .external_lex_state = 85}, - [2859] = {.lex_state = 0, .external_lex_state = 82}, - [2860] = {.lex_state = 2049, .external_lex_state = 85}, - [2861] = {.lex_state = 0, .external_lex_state = 83}, - [2862] = {.lex_state = 0, .external_lex_state = 84}, - [2863] = {.lex_state = 0, .external_lex_state = 83}, - [2864] = {.lex_state = 0, .external_lex_state = 84}, - [2865] = {.lex_state = 2}, - [2866] = {.lex_state = 2}, - [2867] = {.lex_state = 2049, .external_lex_state = 85}, - [2868] = {.lex_state = 0, .external_lex_state = 83}, - [2869] = {.lex_state = 0, .external_lex_state = 82}, - [2870] = {.lex_state = 384, .external_lex_state = 62}, - [2871] = {.lex_state = 385, .external_lex_state = 62}, - [2872] = {.lex_state = 0, .external_lex_state = 84}, - [2873] = {.lex_state = 0, .external_lex_state = 83}, - [2874] = {.lex_state = 2}, - [2875] = {.lex_state = 2049, .external_lex_state = 61}, - [2876] = {.lex_state = 2}, - [2877] = {.lex_state = 0, .external_lex_state = 84}, - [2878] = {.lex_state = 2}, - [2879] = {.lex_state = 2}, - [2880] = {.lex_state = 387, .external_lex_state = 71}, - [2881] = {.lex_state = 0, .external_lex_state = 82}, - [2882] = {.lex_state = 2049, .external_lex_state = 63}, - [2883] = {.lex_state = 0, .external_lex_state = 83}, - [2884] = {.lex_state = 0, .external_lex_state = 84}, - [2885] = {.lex_state = 0, .external_lex_state = 83}, - [2886] = {.lex_state = 0, .external_lex_state = 84}, - [2887] = {.lex_state = 387}, - [2888] = {.lex_state = 0, .external_lex_state = 83}, + [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 = 0, .external_lex_state = 82}, - [2891] = {.lex_state = 0, .external_lex_state = 82}, - [2892] = {.lex_state = 2}, - [2893] = {.lex_state = 0, .external_lex_state = 82}, - [2894] = {.lex_state = 2049, .external_lex_state = 61}, - [2895] = {.lex_state = 0, .external_lex_state = 84}, - [2896] = {.lex_state = 2}, - [2897] = {.lex_state = 2}, - [2898] = {.lex_state = 2049}, - [2899] = {.lex_state = 2}, - [2900] = {.lex_state = 2049}, - [2901] = {.lex_state = 2}, - [2902] = {.lex_state = 2}, - [2903] = {.lex_state = 0, .external_lex_state = 82}, - [2904] = {.lex_state = 0, .external_lex_state = 83}, - [2905] = {.lex_state = 0, .external_lex_state = 84}, - [2906] = {.lex_state = 0, .external_lex_state = 83}, - [2907] = {.lex_state = 0, .external_lex_state = 84}, - [2908] = {.lex_state = 2049, .external_lex_state = 63}, - [2909] = {.lex_state = 0, .external_lex_state = 82}, - [2910] = {.lex_state = 2}, - [2911] = {.lex_state = 0, .external_lex_state = 86}, - [2912] = {.lex_state = 0, .external_lex_state = 82}, - [2913] = {.lex_state = 0, .external_lex_state = 82}, - [2914] = {.lex_state = 0, .external_lex_state = 83}, - [2915] = {.lex_state = 2}, - [2916] = {.lex_state = 0, .external_lex_state = 82}, - [2917] = {.lex_state = 2}, - [2918] = {.lex_state = 2}, - [2919] = {.lex_state = 2}, - [2920] = {.lex_state = 2}, - [2921] = {.lex_state = 2}, - [2922] = {.lex_state = 11, .external_lex_state = 87}, - [2923] = {.lex_state = 2}, - [2924] = {.lex_state = 2}, - [2925] = {.lex_state = 0, .external_lex_state = 82}, - [2926] = {.lex_state = 0, .external_lex_state = 82}, - [2927] = {.lex_state = 0, .external_lex_state = 83}, - [2928] = {.lex_state = 0, .external_lex_state = 83}, - [2929] = {.lex_state = 0, .external_lex_state = 82}, - [2930] = {.lex_state = 0, .external_lex_state = 84}, - [2931] = {.lex_state = 0, .external_lex_state = 83}, - [2932] = {.lex_state = 0, .external_lex_state = 84}, - [2933] = {.lex_state = 0, .external_lex_state = 84}, - [2934] = {.lex_state = 0, .external_lex_state = 83}, - [2935] = {.lex_state = 0, .external_lex_state = 84}, - [2936] = {.lex_state = 0, .external_lex_state = 84}, - [2937] = {.lex_state = 0, .external_lex_state = 84}, - [2938] = {.lex_state = 0, .external_lex_state = 84}, - [2939] = {.lex_state = 0, .external_lex_state = 84}, - [2940] = {.lex_state = 0, .external_lex_state = 84}, - [2941] = {.lex_state = 0, .external_lex_state = 84}, - [2942] = {.lex_state = 0, .external_lex_state = 84}, - [2943] = {.lex_state = 387}, - [2944] = {.lex_state = 0, .external_lex_state = 84}, - [2945] = {.lex_state = 0, .external_lex_state = 82}, - [2946] = {.lex_state = 2049, .external_lex_state = 85}, - [2947] = {.lex_state = 2}, - [2948] = {.lex_state = 2}, - [2949] = {.lex_state = 0, .external_lex_state = 82}, - [2950] = {.lex_state = 2049, .external_lex_state = 85}, - [2951] = {.lex_state = 2049}, - [2952] = {.lex_state = 2049}, - [2953] = {.lex_state = 2}, - [2954] = {.lex_state = 0, .external_lex_state = 82}, - [2955] = {.lex_state = 0, .external_lex_state = 82}, - [2956] = {.lex_state = 2049}, - [2957] = {.lex_state = 2049}, - [2958] = {.lex_state = 384, .external_lex_state = 62}, - [2959] = {.lex_state = 385, .external_lex_state = 62}, - [2960] = {.lex_state = 0, .external_lex_state = 82}, - [2961] = {.lex_state = 0, .external_lex_state = 82}, - [2962] = {.lex_state = 0, .external_lex_state = 82}, - [2963] = {.lex_state = 0, .external_lex_state = 82}, - [2964] = {.lex_state = 0, .external_lex_state = 82}, - [2965] = {.lex_state = 0, .external_lex_state = 82}, - [2966] = {.lex_state = 0, .external_lex_state = 82}, - [2967] = {.lex_state = 0, .external_lex_state = 82}, - [2968] = {.lex_state = 387}, - [2969] = {.lex_state = 0, .external_lex_state = 82}, - [2970] = {.lex_state = 5, .external_lex_state = 73}, - [2971] = {.lex_state = 0, .external_lex_state = 83}, - [2972] = {.lex_state = 0, .external_lex_state = 82}, - [2973] = {.lex_state = 0, .external_lex_state = 84}, - [2974] = {.lex_state = 0, .external_lex_state = 83}, - [2975] = {.lex_state = 2049, .external_lex_state = 88}, - [2976] = {.lex_state = 2}, - [2977] = {.lex_state = 2}, - [2978] = {.lex_state = 2049}, - [2979] = {.lex_state = 2049}, - [2980] = {.lex_state = 0, .external_lex_state = 82}, - [2981] = {.lex_state = 0, .external_lex_state = 82}, - [2982] = {.lex_state = 2049}, - [2983] = {.lex_state = 2049}, - [2984] = {.lex_state = 0, .external_lex_state = 82}, - [2985] = {.lex_state = 0, .external_lex_state = 82}, - [2986] = {.lex_state = 0, .external_lex_state = 82}, - [2987] = {.lex_state = 0, .external_lex_state = 82}, - [2988] = {.lex_state = 0, .external_lex_state = 82}, - [2989] = {.lex_state = 0, .external_lex_state = 82}, - [2990] = {.lex_state = 0, .external_lex_state = 82}, - [2991] = {.lex_state = 0, .external_lex_state = 82}, - [2992] = {.lex_state = 387}, - [2993] = {.lex_state = 0, .external_lex_state = 84}, - [2994] = {.lex_state = 2049, .external_lex_state = 85}, - [2995] = {.lex_state = 2049}, - [2996] = {.lex_state = 2049}, - [2997] = {.lex_state = 2049}, - [2998] = {.lex_state = 2049}, - [2999] = {.lex_state = 387}, - [3000] = {.lex_state = 0, .external_lex_state = 82}, - [3001] = {.lex_state = 2}, - [3002] = {.lex_state = 2}, - [3003] = {.lex_state = 2049}, - [3004] = {.lex_state = 2049}, - [3005] = {.lex_state = 2049, .external_lex_state = 85}, - [3006] = {.lex_state = 2049}, - [3007] = {.lex_state = 2049}, - [3008] = {.lex_state = 387}, - [3009] = {.lex_state = 0, .external_lex_state = 82}, - [3010] = {.lex_state = 2}, - [3011] = {.lex_state = 2, .external_lex_state = 61}, - [3012] = {.lex_state = 0, .external_lex_state = 54}, - [3013] = {.lex_state = 0, .external_lex_state = 82}, - [3014] = {.lex_state = 0, .external_lex_state = 83}, - [3015] = {.lex_state = 0, .external_lex_state = 84}, - [3016] = {.lex_state = 2049}, - [3017] = {.lex_state = 2049}, - [3018] = {.lex_state = 2}, - [3019] = {.lex_state = 2049}, - [3020] = {.lex_state = 2049}, - [3021] = {.lex_state = 387}, - [3022] = {.lex_state = 2}, - [3023] = {.lex_state = 0, .external_lex_state = 83}, - [3024] = {.lex_state = 0, .external_lex_state = 84}, - [3025] = {.lex_state = 2049}, - [3026] = {.lex_state = 2049}, - [3027] = {.lex_state = 0, .external_lex_state = 83}, - [3028] = {.lex_state = 2049}, - [3029] = {.lex_state = 2049}, - [3030] = {.lex_state = 387}, - [3031] = {.lex_state = 0, .external_lex_state = 82}, - [3032] = {.lex_state = 2049}, - [3033] = {.lex_state = 2049}, - [3034] = {.lex_state = 0, .external_lex_state = 84}, - [3035] = {.lex_state = 2049}, - [3036] = {.lex_state = 2049}, - [3037] = {.lex_state = 387}, - [3038] = {.lex_state = 0, .external_lex_state = 82}, - [3039] = {.lex_state = 0, .external_lex_state = 82}, - [3040] = {.lex_state = 2}, - [3041] = {.lex_state = 0, .external_lex_state = 83}, - [3042] = {.lex_state = 2049}, - [3043] = {.lex_state = 2049}, - [3044] = {.lex_state = 0, .external_lex_state = 84}, - [3045] = {.lex_state = 2049}, - [3046] = {.lex_state = 2049}, - [3047] = {.lex_state = 387}, - [3048] = {.lex_state = 0, .external_lex_state = 84}, - [3049] = {.lex_state = 0, .external_lex_state = 82}, - [3050] = {.lex_state = 0, .external_lex_state = 82}, - [3051] = {.lex_state = 2}, - [3052] = {.lex_state = 0, .external_lex_state = 82}, - [3053] = {.lex_state = 2049}, - [3054] = {.lex_state = 2049}, - [3055] = {.lex_state = 2049}, - [3056] = {.lex_state = 2049}, - [3057] = {.lex_state = 387}, - [3058] = {.lex_state = 2049}, - [3059] = {.lex_state = 2049}, - [3060] = {.lex_state = 2049}, - [3061] = {.lex_state = 2049}, - [3062] = {.lex_state = 387}, - [3063] = {.lex_state = 0, .external_lex_state = 82}, - [3064] = {.lex_state = 2049}, - [3065] = {.lex_state = 2049}, - [3066] = {.lex_state = 0, .external_lex_state = 82}, - [3067] = {.lex_state = 2049}, - [3068] = {.lex_state = 2049}, - [3069] = {.lex_state = 387}, - [3070] = {.lex_state = 2}, - [3071] = {.lex_state = 2}, - [3072] = {.lex_state = 2049}, - [3073] = {.lex_state = 2049}, - [3074] = {.lex_state = 0, .external_lex_state = 82}, - [3075] = {.lex_state = 2049}, - [3076] = {.lex_state = 2049}, - [3077] = {.lex_state = 387}, - [3078] = {.lex_state = 0, .external_lex_state = 82}, - [3079] = {.lex_state = 2049}, - [3080] = {.lex_state = 2049}, - [3081] = {.lex_state = 2049}, - [3082] = {.lex_state = 2049}, - [3083] = {.lex_state = 387}, - [3084] = {.lex_state = 2049, .external_lex_state = 61}, - [3085] = {.lex_state = 2}, - [3086] = {.lex_state = 2049}, - [3087] = {.lex_state = 2049}, - [3088] = {.lex_state = 2049}, - [3089] = {.lex_state = 2049}, - [3090] = {.lex_state = 387}, - [3091] = {.lex_state = 2}, - [3092] = {.lex_state = 0, .external_lex_state = 83}, - [3093] = {.lex_state = 2049}, - [3094] = {.lex_state = 2049}, - [3095] = {.lex_state = 2049}, - [3096] = {.lex_state = 2049}, - [3097] = {.lex_state = 2049}, - [3098] = {.lex_state = 2049}, - [3099] = {.lex_state = 2049}, - [3100] = {.lex_state = 2049}, - [3101] = {.lex_state = 2049}, - [3102] = {.lex_state = 2049}, - [3103] = {.lex_state = 2049}, - [3104] = {.lex_state = 2049}, - [3105] = {.lex_state = 2}, - [3106] = {.lex_state = 2}, - [3107] = {.lex_state = 2}, - [3108] = {.lex_state = 2}, - [3109] = {.lex_state = 0, .external_lex_state = 82}, - [3110] = {.lex_state = 0, .external_lex_state = 75}, - [3111] = {.lex_state = 2049}, - [3112] = {.lex_state = 2049}, - [3113] = {.lex_state = 0, .external_lex_state = 74}, - [3114] = {.lex_state = 0, .external_lex_state = 85}, - [3115] = {.lex_state = 8}, - [3116] = {.lex_state = 0, .external_lex_state = 89}, - [3117] = {.lex_state = 2049}, - [3118] = {.lex_state = 2049, .external_lex_state = 57}, - [3119] = {.lex_state = 0, .external_lex_state = 64}, - [3120] = {.lex_state = 0, .external_lex_state = 89}, - [3121] = {.lex_state = 0, .external_lex_state = 64}, - [3122] = {.lex_state = 2049}, - [3123] = {.lex_state = 0, .external_lex_state = 64}, - [3124] = {.lex_state = 2049}, - [3125] = {.lex_state = 2049}, - [3126] = {.lex_state = 2049}, - [3127] = {.lex_state = 2049}, - [3128] = {.lex_state = 2049}, - [3129] = {.lex_state = 0, .external_lex_state = 64}, - [3130] = {.lex_state = 2049, .external_lex_state = 57}, - [3131] = {.lex_state = 0, .external_lex_state = 79}, - [3132] = {.lex_state = 2049, .external_lex_state = 57}, - [3133] = {.lex_state = 0, .external_lex_state = 85}, - [3134] = {.lex_state = 0, .external_lex_state = 82}, - [3135] = {.lex_state = 5, .external_lex_state = 63}, - [3136] = {.lex_state = 0, .external_lex_state = 64}, - [3137] = {.lex_state = 2049}, - [3138] = {.lex_state = 0, .external_lex_state = 64}, - [3139] = {.lex_state = 2049}, - [3140] = {.lex_state = 2049}, - [3141] = {.lex_state = 2049}, - [3142] = {.lex_state = 2049}, - [3143] = {.lex_state = 2049}, - [3144] = {.lex_state = 0, .external_lex_state = 64}, - [3145] = {.lex_state = 0, .external_lex_state = 85}, - [3146] = {.lex_state = 0, .external_lex_state = 85}, - [3147] = {.lex_state = 0, .external_lex_state = 89}, - [3148] = {.lex_state = 0, .external_lex_state = 85}, - [3149] = {.lex_state = 2049, .external_lex_state = 57}, - [3150] = {.lex_state = 2049}, - [3151] = {.lex_state = 0, .external_lex_state = 64}, - [3152] = {.lex_state = 2049}, - [3153] = {.lex_state = 2049}, - [3154] = {.lex_state = 2049}, - [3155] = {.lex_state = 2049}, - [3156] = {.lex_state = 2049}, - [3157] = {.lex_state = 2049}, - [3158] = {.lex_state = 2049}, - [3159] = {.lex_state = 2049}, - [3160] = {.lex_state = 0, .external_lex_state = 77}, - [3161] = {.lex_state = 0, .external_lex_state = 64}, - [3162] = {.lex_state = 2049}, - [3163] = {.lex_state = 2049}, - [3164] = {.lex_state = 0, .external_lex_state = 82}, - [3165] = {.lex_state = 2049}, - [3166] = {.lex_state = 0, .external_lex_state = 64}, - [3167] = {.lex_state = 2049}, - [3168] = {.lex_state = 0, .external_lex_state = 85}, - [3169] = {.lex_state = 0, .external_lex_state = 64}, - [3170] = {.lex_state = 2049, .external_lex_state = 57}, - [3171] = {.lex_state = 2049}, - [3172] = {.lex_state = 0, .external_lex_state = 90}, - [3173] = {.lex_state = 2049}, - [3174] = {.lex_state = 2049}, - [3175] = {.lex_state = 2049}, - [3176] = {.lex_state = 2049}, - [3177] = {.lex_state = 2049}, - [3178] = {.lex_state = 0, .external_lex_state = 89}, - [3179] = {.lex_state = 0, .external_lex_state = 80}, - [3180] = {.lex_state = 1, .external_lex_state = 61}, - [3181] = {.lex_state = 0, .external_lex_state = 63}, - [3182] = {.lex_state = 0, .external_lex_state = 89}, + [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}, + [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}, + [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}, + [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 = 0, .external_lex_state = 64}, - [3185] = {.lex_state = 2049}, - [3186] = {.lex_state = 0, .external_lex_state = 64}, - [3187] = {.lex_state = 2049}, - [3188] = {.lex_state = 2049}, - [3189] = {.lex_state = 2049}, - [3190] = {.lex_state = 2049}, - [3191] = {.lex_state = 2049}, - [3192] = {.lex_state = 0, .external_lex_state = 89}, - [3193] = {.lex_state = 0, .external_lex_state = 85}, - [3194] = {.lex_state = 0, .external_lex_state = 64}, - [3195] = {.lex_state = 2049}, - [3196] = {.lex_state = 0, .external_lex_state = 82}, - [3197] = {.lex_state = 0, .external_lex_state = 78}, - [3198] = {.lex_state = 2049}, - [3199] = {.lex_state = 2049}, - [3200] = {.lex_state = 2049}, - [3201] = {.lex_state = 2049}, - [3202] = {.lex_state = 2049}, - [3203] = {.lex_state = 2049}, - [3204] = {.lex_state = 2049}, - [3205] = {.lex_state = 2049}, - [3206] = {.lex_state = 2049}, - [3207] = {.lex_state = 2049}, - [3208] = {.lex_state = 2049}, - [3209] = {.lex_state = 2049}, - [3210] = {.lex_state = 2049}, - [3211] = {.lex_state = 0, .external_lex_state = 91}, - [3212] = {.lex_state = 2049}, + [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 = 2049}, - [3215] = {.lex_state = 2049}, - [3216] = {.lex_state = 2049}, - [3217] = {.lex_state = 2049}, - [3218] = {.lex_state = 2049}, - [3219] = {.lex_state = 2049, .external_lex_state = 57}, - [3220] = {.lex_state = 0, .external_lex_state = 72}, - [3221] = {.lex_state = 0, .external_lex_state = 89}, - [3222] = {.lex_state = 2049, .external_lex_state = 57}, - [3223] = {.lex_state = 2049}, - [3224] = {.lex_state = 2049}, - [3225] = {.lex_state = 2049}, - [3226] = {.lex_state = 2049}, - [3227] = {.lex_state = 2049}, - [3228] = {.lex_state = 2049}, - [3229] = {.lex_state = 2049}, - [3230] = {.lex_state = 2049}, - [3231] = {.lex_state = 2049}, - [3232] = {.lex_state = 2049}, - [3233] = {.lex_state = 2049}, - [3234] = {.lex_state = 0, .external_lex_state = 64}, - [3235] = {.lex_state = 0, .external_lex_state = 85}, - [3236] = {.lex_state = 2049}, - [3237] = {.lex_state = 2049}, - [3238] = {.lex_state = 2049, .external_lex_state = 57}, - [3239] = {.lex_state = 2049}, - [3240] = {.lex_state = 0, .external_lex_state = 64}, - [3241] = {.lex_state = 2049}, - [3242] = {.lex_state = 2049}, - [3243] = {.lex_state = 2049}, - [3244] = {.lex_state = 2049}, - [3245] = {.lex_state = 2049}, - [3246] = {.lex_state = 2049}, - [3247] = {.lex_state = 2049}, - [3248] = {.lex_state = 2049}, - [3249] = {.lex_state = 2049}, - [3250] = {.lex_state = 2049}, - [3251] = {.lex_state = 0, .external_lex_state = 89}, - [3252] = {.lex_state = 2049}, - [3253] = {.lex_state = 2049, .external_lex_state = 57}, - [3254] = {.lex_state = 0, .external_lex_state = 64}, - [3255] = {.lex_state = 0, .external_lex_state = 89}, - [3256] = {.lex_state = 8}, - [3257] = {.lex_state = 2049}, - [3258] = {.lex_state = 2049}, - [3259] = {.lex_state = 2049}, - [3260] = {.lex_state = 2049}, - [3261] = {.lex_state = 2049}, - [3262] = {.lex_state = 2049}, - [3263] = {.lex_state = 2049}, - [3264] = {.lex_state = 2049}, - [3265] = {.lex_state = 2049}, - [3266] = {.lex_state = 0, .external_lex_state = 64}, - [3267] = {.lex_state = 2049}, - [3268] = {.lex_state = 2049}, - [3269] = {.lex_state = 0, .external_lex_state = 63}, - [3270] = {.lex_state = 0, .external_lex_state = 92}, - [3271] = {.lex_state = 2049}, - [3272] = {.lex_state = 2049}, - [3273] = {.lex_state = 0, .external_lex_state = 76}, - [3274] = {.lex_state = 0, .external_lex_state = 90}, - [3275] = {.lex_state = 2049}, - [3276] = {.lex_state = 2049}, - [3277] = {.lex_state = 11, .external_lex_state = 62}, - [3278] = {.lex_state = 0, .external_lex_state = 63}, - [3279] = {.lex_state = 2049}, - [3280] = {.lex_state = 2049}, - [3281] = {.lex_state = 2049}, - [3282] = {.lex_state = 2049}, - [3283] = {.lex_state = 0, .external_lex_state = 93}, - [3284] = {.lex_state = 2049}, - [3285] = {.lex_state = 2049}, - [3286] = {.lex_state = 0, .external_lex_state = 81}, - [3287] = {.lex_state = 2049}, - [3288] = {.lex_state = 2049}, - [3289] = {.lex_state = 8}, - [3290] = {.lex_state = 8}, - [3291] = {.lex_state = 0, .external_lex_state = 94}, + [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}, + [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}, + [3289] = {.lex_state = 2050}, + [3290] = {.lex_state = 5}, + [3291] = {.lex_state = 1}, [3292] = {.lex_state = 8}, [3293] = {.lex_state = 8}, - [3294] = {.lex_state = 0, .external_lex_state = 95}, - [3295] = {.lex_state = 0, .external_lex_state = 96}, - [3296] = {.lex_state = 0, .external_lex_state = 97}, - [3297] = {.lex_state = 1}, - [3298] = {.lex_state = 0, .external_lex_state = 98}, + [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 = 1}, + [3300] = {.lex_state = 0, .external_lex_state = 82}, [3301] = {.lex_state = 1}, - [3302] = {.lex_state = 2049}, + [3302] = {.lex_state = 0, .external_lex_state = 89}, [3303] = {.lex_state = 1}, - [3304] = {.lex_state = 0, .external_lex_state = 99}, - [3305] = {.lex_state = 0, .external_lex_state = 100}, - [3306] = {.lex_state = 0, .external_lex_state = 101}, - [3307] = {.lex_state = 2049}, - [3308] = {.lex_state = 2049}, - [3309] = {.lex_state = 0, .external_lex_state = 94}, - [3310] = {.lex_state = 0, .external_lex_state = 95}, - [3311] = {.lex_state = 0, .external_lex_state = 97}, - [3312] = {.lex_state = 0, .external_lex_state = 102}, - [3313] = {.lex_state = 0, .external_lex_state = 99}, - [3314] = {.lex_state = 0, .external_lex_state = 102}, - [3315] = {.lex_state = 0, .external_lex_state = 103}, - [3316] = {.lex_state = 0, .external_lex_state = 104}, - [3317] = {.lex_state = 1}, - [3318] = {.lex_state = 2049}, - [3319] = {.lex_state = 1}, - [3320] = {.lex_state = 2049}, - [3321] = {.lex_state = 8}, - [3322] = {.lex_state = 2049}, - [3323] = {.lex_state = 2049}, - [3324] = {.lex_state = 2049}, - [3325] = {.lex_state = 2049}, - [3326] = {.lex_state = 2049}, - [3327] = {.lex_state = 1}, - [3328] = {.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}, + [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}, + [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 = 3}, - [3332] = {.lex_state = 0, .external_lex_state = 103}, - [3333] = {.lex_state = 1}, - [3334] = {.lex_state = 2049}, - [3335] = {.lex_state = 1}, - [3336] = {.lex_state = 0, .external_lex_state = 104}, - [3337] = {.lex_state = 0, .external_lex_state = 100}, - [3338] = {.lex_state = 3}, - [3339] = {.lex_state = 0, .external_lex_state = 101}, - [3340] = {.lex_state = 2049}, - [3341] = {.lex_state = 2049}, - [3342] = {.lex_state = 1}, - [3343] = {.lex_state = 0, .external_lex_state = 94}, - [3344] = {.lex_state = 8}, - [3345] = {.lex_state = 0, .external_lex_state = 95}, - [3346] = {.lex_state = 0, .external_lex_state = 97}, - [3347] = {.lex_state = 8}, - [3348] = {.lex_state = 2049}, - [3349] = {.lex_state = 2049}, - [3350] = {.lex_state = 2049}, - [3351] = {.lex_state = 0, .external_lex_state = 100}, - [3352] = {.lex_state = 0, .external_lex_state = 99}, - [3353] = {.lex_state = 0, .external_lex_state = 102}, - [3354] = {.lex_state = 8}, - [3355] = {.lex_state = 8}, - [3356] = {.lex_state = 0, .external_lex_state = 103}, - [3357] = {.lex_state = 0, .external_lex_state = 104}, + [3331] = {.lex_state = 1}, + [3332] = {.lex_state = 1}, + [3333] = {.lex_state = 3}, + [3334] = {.lex_state = 8}, + [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 = 101}, - [3360] = {.lex_state = 2049}, - [3361] = {.lex_state = 0, .external_lex_state = 98}, - [3362] = {.lex_state = 1}, - [3363] = {.lex_state = 8}, - [3364] = {.lex_state = 1}, - [3365] = {.lex_state = 8}, + [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 = 2049}, - [3368] = {.lex_state = 1}, - [3369] = {.lex_state = 2049}, - [3370] = {.lex_state = 0, .external_lex_state = 100}, - [3371] = {.lex_state = 0, .external_lex_state = 101}, - [3372] = {.lex_state = 2049}, - [3373] = {.lex_state = 2049}, - [3374] = {.lex_state = 0, .external_lex_state = 94}, - [3375] = {.lex_state = 0, .external_lex_state = 95}, - [3376] = {.lex_state = 0, .external_lex_state = 97}, - [3377] = {.lex_state = 2049}, - [3378] = {.lex_state = 0, .external_lex_state = 99}, - [3379] = {.lex_state = 0, .external_lex_state = 102}, - [3380] = {.lex_state = 0, .external_lex_state = 103}, - [3381] = {.lex_state = 0, .external_lex_state = 104}, - [3382] = {.lex_state = 2049}, - [3383] = {.lex_state = 0, .external_lex_state = 93}, - [3384] = {.lex_state = 2049}, - [3385] = {.lex_state = 1}, - [3386] = {.lex_state = 8}, - [3387] = {.lex_state = 2049}, - [3388] = {.lex_state = 2049}, - [3389] = {.lex_state = 2049}, - [3390] = {.lex_state = 2049}, - [3391] = {.lex_state = 2049}, - [3392] = {.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}, + [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}, + [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 = 3}, - [3397] = {.lex_state = 1}, - [3398] = {.lex_state = 1}, - [3399] = {.lex_state = 1}, - [3400] = {.lex_state = 3}, - [3401] = {.lex_state = 2049}, - [3402] = {.lex_state = 2049}, - [3403] = {.lex_state = 3}, - [3404] = {.lex_state = 0, .external_lex_state = 96}, - [3405] = {.lex_state = 2049}, - [3406] = {.lex_state = 2049}, - [3407] = {.lex_state = 0, .external_lex_state = 98}, - [3408] = {.lex_state = 0, .external_lex_state = 98}, - [3409] = {.lex_state = 8}, - [3410] = {.lex_state = 0, .external_lex_state = 98}, - [3411] = {.lex_state = 3}, + [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 = 2049}, - [3414] = {.lex_state = 2049}, - [3415] = {.lex_state = 1}, - [3416] = {.lex_state = 1}, - [3417] = {.lex_state = 1}, - [3418] = {.lex_state = 1}, - [3419] = {.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}, - [3421] = {.lex_state = 0}, - [3422] = {.lex_state = 8}, - [3423] = {.lex_state = 3}, - [3424] = {.lex_state = 1}, - [3425] = {.lex_state = 3}, - [3426] = {.lex_state = 8}, + [3421] = {.lex_state = 2050}, + [3422] = {.lex_state = 3}, + [3423] = {.lex_state = 1}, + [3424] = {.lex_state = 2050}, + [3425] = {.lex_state = 2050}, + [3426] = {.lex_state = 2050}, [3427] = {.lex_state = 1}, - [3428] = {.lex_state = 2049}, + [3428] = {.lex_state = 8}, [3429] = {.lex_state = 1}, - [3430] = {.lex_state = 0, .external_lex_state = 94}, + [3430] = {.lex_state = 3}, [3431] = {.lex_state = 1}, - [3432] = {.lex_state = 2049}, + [3432] = {.lex_state = 2050}, [3433] = {.lex_state = 1}, - [3434] = {.lex_state = 8}, - [3435] = {.lex_state = 0, .external_lex_state = 100}, - [3436] = {.lex_state = 0, .external_lex_state = 101}, - [3437] = {.lex_state = 2049}, - [3438] = {.lex_state = 2049}, - [3439] = {.lex_state = 0, .external_lex_state = 94}, - [3440] = {.lex_state = 0, .external_lex_state = 95}, - [3441] = {.lex_state = 0, .external_lex_state = 97}, - [3442] = {.lex_state = 0, .external_lex_state = 95}, - [3443] = {.lex_state = 0, .external_lex_state = 99}, - [3444] = {.lex_state = 0, .external_lex_state = 102}, - [3445] = {.lex_state = 0, .external_lex_state = 103}, - [3446] = {.lex_state = 0, .external_lex_state = 104}, - [3447] = {.lex_state = 0, .external_lex_state = 97}, + [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 = 98}, - [3450] = {.lex_state = 0, .external_lex_state = 99}, - [3451] = {.lex_state = 8}, - [3452] = {.lex_state = 2049}, - [3453] = {.lex_state = 2049}, - [3454] = {.lex_state = 2049}, - [3455] = {.lex_state = 2049}, - [3456] = {.lex_state = 2049}, - [3457] = {.lex_state = 1}, + [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 = 1}, - [3460] = {.lex_state = 1}, - [3461] = {.lex_state = 3}, - [3462] = {.lex_state = 3}, - [3463] = {.lex_state = 0, .external_lex_state = 98}, - [3464] = {.lex_state = 8}, - [3465] = {.lex_state = 8}, - [3466] = {.lex_state = 0, .external_lex_state = 102}, - [3467] = {.lex_state = 0, .external_lex_state = 103}, - [3468] = {.lex_state = 3}, - [3469] = {.lex_state = 0, .external_lex_state = 57}, - [3470] = {.lex_state = 0, .external_lex_state = 98}, - [3471] = {.lex_state = 0, .external_lex_state = 104}, - [3472] = {.lex_state = 8}, - [3473] = {.lex_state = 0, .external_lex_state = 98}, - [3474] = {.lex_state = 8}, - [3475] = {.lex_state = 1}, - [3476] = {.lex_state = 2049}, - [3477] = {.lex_state = 8}, - [3478] = {.lex_state = 1}, - [3479] = {.lex_state = 0, .external_lex_state = 57}, - [3480] = {.lex_state = 2049}, - [3481] = {.lex_state = 2049}, - [3482] = {.lex_state = 2049}, - [3483] = {.lex_state = 2049}, - [3484] = {.lex_state = 1}, - [3485] = {.lex_state = 0, .external_lex_state = 98}, + [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}, + [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}, + [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 = 8}, - [3488] = {.lex_state = 1}, - [3489] = {.lex_state = 0, .external_lex_state = 96}, - [3490] = {.lex_state = 0, .external_lex_state = 100}, - [3491] = {.lex_state = 0, .external_lex_state = 101}, - [3492] = {.lex_state = 1}, - [3493] = {.lex_state = 2049}, - [3494] = {.lex_state = 2049}, - [3495] = {.lex_state = 0, .external_lex_state = 94}, - [3496] = {.lex_state = 1}, - [3497] = {.lex_state = 0, .external_lex_state = 98}, - [3498] = {.lex_state = 0, .external_lex_state = 95}, - [3499] = {.lex_state = 0, .external_lex_state = 97}, - [3500] = {.lex_state = 1}, - [3501] = {.lex_state = 2049}, - [3502] = {.lex_state = 0, .external_lex_state = 98}, + [3487] = {.lex_state = 1}, + [3488] = {.lex_state = 3}, + [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 = 2044}, - [3505] = {.lex_state = 0, .external_lex_state = 99}, - [3506] = {.lex_state = 0, .external_lex_state = 100}, - [3507] = {.lex_state = 0, .external_lex_state = 101}, - [3508] = {.lex_state = 2049}, - [3509] = {.lex_state = 2049}, - [3510] = {.lex_state = 0, .external_lex_state = 94}, - [3511] = {.lex_state = 0, .external_lex_state = 95}, - [3512] = {.lex_state = 0, .external_lex_state = 97}, - [3513] = {.lex_state = 0, .external_lex_state = 102}, - [3514] = {.lex_state = 2045}, - [3515] = {.lex_state = 9}, - [3516] = {.lex_state = 0, .external_lex_state = 103}, - [3517] = {.lex_state = 0, .external_lex_state = 99}, - [3518] = {.lex_state = 0, .external_lex_state = 102}, - [3519] = {.lex_state = 0, .external_lex_state = 103}, - [3520] = {.lex_state = 0, .external_lex_state = 104}, - [3521] = {.lex_state = 0, .external_lex_state = 104}, - [3522] = {.lex_state = 0, .external_lex_state = 98}, - [3523] = {.lex_state = 0, .external_lex_state = 64}, - [3524] = {.lex_state = 6}, - [3525] = {.lex_state = 0, .external_lex_state = 98}, - [3526] = {.lex_state = 8}, - [3527] = {.lex_state = 2049}, - [3528] = {.lex_state = 2049}, - [3529] = {.lex_state = 2049}, - [3530] = {.lex_state = 2049}, - [3531] = {.lex_state = 8}, - [3532] = {.lex_state = 2049}, - [3533] = {.lex_state = 2049}, - [3534] = {.lex_state = 2049}, - [3535] = {.lex_state = 2049}, - [3536] = {.lex_state = 1}, + [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}, + [3519] = {.lex_state = 2050}, + [3520] = {.lex_state = 0, .external_lex_state = 84}, + [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}, + [3533] = {.lex_state = 1}, + [3534] = {.lex_state = 0, .external_lex_state = 87}, + [3535] = {.lex_state = 1}, + [3536] = {.lex_state = 0, .external_lex_state = 88}, [3537] = {.lex_state = 1}, - [3538] = {.lex_state = 1}, + [3538] = {.lex_state = 8}, [3539] = {.lex_state = 1}, - [3540] = {.lex_state = 3}, - [3541] = {.lex_state = 8}, - [3542] = {.lex_state = 6}, - [3543] = {.lex_state = 2049}, - [3544] = {.lex_state = 2049}, - [3545] = {.lex_state = 2049}, - [3546] = {.lex_state = 2049}, - [3547] = {.lex_state = 8}, - [3548] = {.lex_state = 3}, - [3549] = {.lex_state = 2049}, - [3550] = {.lex_state = 2049}, - [3551] = {.lex_state = 8}, - [3552] = {.lex_state = 0, .external_lex_state = 57}, - [3553] = {.lex_state = 0, .external_lex_state = 98}, - [3554] = {.lex_state = 8}, - [3555] = {.lex_state = 2049}, - [3556] = {.lex_state = 2049}, - [3557] = {.lex_state = 8}, - [3558] = {.lex_state = 2049}, - [3559] = {.lex_state = 1}, - [3560] = {.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}, + [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}, [3561] = {.lex_state = 1}, - [3562] = {.lex_state = 2044}, - [3563] = {.lex_state = 0, .external_lex_state = 98}, - [3564] = {.lex_state = 2049}, - [3565] = {.lex_state = 1}, - [3566] = {.lex_state = 2044}, - [3567] = {.lex_state = 2044}, - [3568] = {.lex_state = 0, .external_lex_state = 98}, - [3569] = {.lex_state = 0, .external_lex_state = 98}, - [3570] = {.lex_state = 0, .external_lex_state = 98}, - [3571] = {.lex_state = 0, .external_lex_state = 98}, - [3572] = {.lex_state = 0, .external_lex_state = 98}, - [3573] = {.lex_state = 0, .external_lex_state = 98}, - [3574] = {.lex_state = 2049}, - [3575] = {.lex_state = 2049}, - [3576] = {.lex_state = 1}, - [3577] = {.lex_state = 2045}, - [3578] = {.lex_state = 9}, - [3579] = {.lex_state = 8}, - [3580] = {.lex_state = 8}, - [3581] = {.lex_state = 2049}, - [3582] = {.lex_state = 1}, - [3583] = {.lex_state = 1}, - [3584] = {.lex_state = 1}, - [3585] = {.lex_state = 1}, - [3586] = {.lex_state = 1}, - [3587] = {.lex_state = 3}, - [3588] = {.lex_state = 0, .external_lex_state = 100}, - [3589] = {.lex_state = 1}, - [3590] = {.lex_state = 1}, - [3591] = {.lex_state = 3}, - [3592] = {.lex_state = 1}, - [3593] = {.lex_state = 0, .external_lex_state = 101}, - [3594] = {.lex_state = 1}, - [3595] = {.lex_state = 2049}, - [3596] = {.lex_state = 1}, - [3597] = {.lex_state = 2049}, - [3598] = {.lex_state = 1}, - [3599] = {.lex_state = 0, .external_lex_state = 94}, - [3600] = {.lex_state = 0, .external_lex_state = 100}, - [3601] = {.lex_state = 0, .external_lex_state = 101}, - [3602] = {.lex_state = 2049}, - [3603] = {.lex_state = 2049}, - [3604] = {.lex_state = 0, .external_lex_state = 94}, - [3605] = {.lex_state = 0, .external_lex_state = 95}, - [3606] = {.lex_state = 0, .external_lex_state = 97}, - [3607] = {.lex_state = 0, .external_lex_state = 95}, - [3608] = {.lex_state = 0, .external_lex_state = 99}, - [3609] = {.lex_state = 0, .external_lex_state = 102}, - [3610] = {.lex_state = 0, .external_lex_state = 103}, - [3611] = {.lex_state = 0, .external_lex_state = 104}, - [3612] = {.lex_state = 0, .external_lex_state = 97}, - [3613] = {.lex_state = 0, .external_lex_state = 98}, - [3614] = {.lex_state = 0, .external_lex_state = 98}, - [3615] = {.lex_state = 0, .external_lex_state = 99}, - [3616] = {.lex_state = 8}, - [3617] = {.lex_state = 2049}, - [3618] = {.lex_state = 2049}, - [3619] = {.lex_state = 2049}, - [3620] = {.lex_state = 2049}, - [3621] = {.lex_state = 2044}, - [3622] = {.lex_state = 2044}, - [3623] = {.lex_state = 2049}, - [3624] = {.lex_state = 1}, - [3625] = {.lex_state = 0, .external_lex_state = 98}, - [3626] = {.lex_state = 0, .external_lex_state = 98}, - [3627] = {.lex_state = 0, .external_lex_state = 98}, - [3628] = {.lex_state = 0, .external_lex_state = 98}, - [3629] = {.lex_state = 0, .external_lex_state = 98}, - [3630] = {.lex_state = 0, .external_lex_state = 98}, + [3562] = {.lex_state = 2050}, + [3563] = {.lex_state = 8}, + [3564] = {.lex_state = 2050}, + [3565] = {.lex_state = 2050}, + [3566] = {.lex_state = 2050}, + [3567] = {.lex_state = 0, .external_lex_state = 85}, + [3568] = {.lex_state = 2045}, + [3569] = {.lex_state = 9}, + [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}, + [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}, + [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}, + [3608] = {.lex_state = 2050}, + [3609] = {.lex_state = 0, .external_lex_state = 88}, + [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}, + [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 = 2045}, - [3633] = {.lex_state = 9}, + [3632] = {.lex_state = 1}, + [3633] = {.lex_state = 1}, [3634] = {.lex_state = 1}, - [3635] = {.lex_state = 1}, - [3636] = {.lex_state = 3}, - [3637] = {.lex_state = 0, .external_lex_state = 102}, - [3638] = {.lex_state = 0, .external_lex_state = 98}, - [3639] = {.lex_state = 0, .external_lex_state = 103}, - [3640] = {.lex_state = 0, .external_lex_state = 104}, - [3641] = {.lex_state = 0, .external_lex_state = 98}, - [3642] = {.lex_state = 8}, - [3643] = {.lex_state = 3}, - [3644] = {.lex_state = 2049}, - [3645] = {.lex_state = 8}, - [3646] = {.lex_state = 0, .external_lex_state = 96}, - [3647] = {.lex_state = 8}, - [3648] = {.lex_state = 2044}, - [3649] = {.lex_state = 2044}, - [3650] = {.lex_state = 2049}, - [3651] = {.lex_state = 8}, + [3635] = {.lex_state = 2050}, + [3636] = {.lex_state = 2044}, + [3637] = {.lex_state = 2044}, + [3638] = {.lex_state = 2050}, + [3639] = {.lex_state = 2050}, + [3640] = {.lex_state = 8}, + [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}, + [3651] = {.lex_state = 1}, [3652] = {.lex_state = 1}, - [3653] = {.lex_state = 2049}, - [3654] = {.lex_state = 2049}, - [3655] = {.lex_state = 0, .external_lex_state = 98}, - [3656] = {.lex_state = 3}, - [3657] = {.lex_state = 0, .external_lex_state = 64}, - [3658] = {.lex_state = 2045}, - [3659] = {.lex_state = 9}, - [3660] = {.lex_state = 0, .external_lex_state = 64}, - [3661] = {.lex_state = 8}, - [3662] = {.lex_state = 0, .external_lex_state = 96}, - [3663] = {.lex_state = 2049}, - [3664] = {.lex_state = 2049}, - [3665] = {.lex_state = 1}, - [3666] = {.lex_state = 2049}, - [3667] = {.lex_state = 1}, - [3668] = {.lex_state = 1}, - [3669] = {.lex_state = 1}, - [3670] = {.lex_state = 8}, - [3671] = {.lex_state = 8}, - [3672] = {.lex_state = 3}, - [3673] = {.lex_state = 2049}, + [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 = 2044}, - [3676] = {.lex_state = 0, .external_lex_state = 98}, - [3677] = {.lex_state = 3}, - [3678] = {.lex_state = 0, .external_lex_state = 98}, - [3679] = {.lex_state = 0, .external_lex_state = 96}, - [3680] = {.lex_state = 2049}, + [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 = 0, .external_lex_state = 96}, + [3682] = {.lex_state = 8}, [3683] = {.lex_state = 1}, - [3684] = {.lex_state = 2045}, - [3685] = {.lex_state = 9}, - [3686] = {.lex_state = 0, .external_lex_state = 57}, - [3687] = {.lex_state = 0, .external_lex_state = 98}, - [3688] = {.lex_state = 1}, - [3689] = {.lex_state = 3}, - [3690] = {.lex_state = 1}, - [3691] = {.lex_state = 0, .external_lex_state = 99}, - [3692] = {.lex_state = 0, .external_lex_state = 100}, - [3693] = {.lex_state = 0, .external_lex_state = 101}, - [3694] = {.lex_state = 2049}, - [3695] = {.lex_state = 2049}, - [3696] = {.lex_state = 0, .external_lex_state = 94}, - [3697] = {.lex_state = 0, .external_lex_state = 95}, - [3698] = {.lex_state = 0, .external_lex_state = 97}, - [3699] = {.lex_state = 0, .external_lex_state = 96}, - [3700] = {.lex_state = 2044}, - [3701] = {.lex_state = 2044}, + [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}, + [3700] = {.lex_state = 2050}, + [3701] = {.lex_state = 0, .external_lex_state = 78}, [3702] = {.lex_state = 8}, - [3703] = {.lex_state = 0, .external_lex_state = 98}, - [3704] = {.lex_state = 0, .external_lex_state = 99}, - [3705] = {.lex_state = 0, .external_lex_state = 102}, - [3706] = {.lex_state = 0, .external_lex_state = 98}, - [3707] = {.lex_state = 0, .external_lex_state = 103}, - [3708] = {.lex_state = 0, .external_lex_state = 98}, - [3709] = {.lex_state = 0, .external_lex_state = 104}, - [3710] = {.lex_state = 2045}, - [3711] = {.lex_state = 9}, - [3712] = {.lex_state = 8}, - [3713] = {.lex_state = 8}, - [3714] = {.lex_state = 0, .external_lex_state = 98}, - [3715] = {.lex_state = 8}, - [3716] = {.lex_state = 8}, - [3717] = {.lex_state = 8}, - [3718] = {.lex_state = 2049}, - [3719] = {.lex_state = 2049}, - [3720] = {.lex_state = 2049}, - [3721] = {.lex_state = 2049}, - [3722] = {.lex_state = 2049}, - [3723] = {.lex_state = 1}, - [3724] = {.lex_state = 1}, - [3725] = {.lex_state = 1}, - [3726] = {.lex_state = 2044}, - [3727] = {.lex_state = 2044}, - [3728] = {.lex_state = 2049}, - [3729] = {.lex_state = 1}, - [3730] = {.lex_state = 0, .external_lex_state = 98}, - [3731] = {.lex_state = 0, .external_lex_state = 98}, - [3732] = {.lex_state = 0, .external_lex_state = 98}, - [3733] = {.lex_state = 0, .external_lex_state = 98}, - [3734] = {.lex_state = 0, .external_lex_state = 98}, - [3735] = {.lex_state = 0, .external_lex_state = 98}, - [3736] = {.lex_state = 2045}, - [3737] = {.lex_state = 9}, - [3738] = {.lex_state = 3}, - [3739] = {.lex_state = 2049}, - [3740] = {.lex_state = 8}, - [3741] = {.lex_state = 8}, - [3742] = {.lex_state = 0, .external_lex_state = 102}, - [3743] = {.lex_state = 6}, - [3744] = {.lex_state = 0, .external_lex_state = 98}, - [3745] = {.lex_state = 3}, - [3746] = {.lex_state = 8}, - [3747] = {.lex_state = 8}, - [3748] = {.lex_state = 0, .external_lex_state = 103}, - [3749] = {.lex_state = 6}, - [3750] = {.lex_state = 0, .external_lex_state = 104}, - [3751] = {.lex_state = 8}, - [3752] = {.lex_state = 2044}, - [3753] = {.lex_state = 2044}, - [3754] = {.lex_state = 8}, - [3755] = {.lex_state = 0, .external_lex_state = 57}, - [3756] = {.lex_state = 0, .external_lex_state = 94}, - [3757] = {.lex_state = 8}, - [3758] = {.lex_state = 0, .external_lex_state = 96}, - [3759] = {.lex_state = 0, .external_lex_state = 98}, - [3760] = {.lex_state = 0, .external_lex_state = 96}, - [3761] = {.lex_state = 2049}, - [3762] = {.lex_state = 2045}, - [3763] = {.lex_state = 9}, - [3764] = {.lex_state = 8}, - [3765] = {.lex_state = 8}, - [3766] = {.lex_state = 8}, - [3767] = {.lex_state = 8}, - [3768] = {.lex_state = 0, .external_lex_state = 95}, - [3769] = {.lex_state = 2049}, - [3770] = {.lex_state = 0, .external_lex_state = 101}, - [3771] = {.lex_state = 0, .external_lex_state = 98}, - [3772] = {.lex_state = 2049}, - [3773] = {.lex_state = 8}, - [3774] = {.lex_state = 8}, - [3775] = {.lex_state = 0, .external_lex_state = 93}, - [3776] = {.lex_state = 0, .external_lex_state = 97}, - [3777] = {.lex_state = 1}, - [3778] = {.lex_state = 2044}, - [3779] = {.lex_state = 2044}, - [3780] = {.lex_state = 0, .external_lex_state = 98}, - [3781] = {.lex_state = 0, .external_lex_state = 98}, - [3782] = {.lex_state = 6}, - [3783] = {.lex_state = 1}, - [3784] = {.lex_state = 8}, - [3785] = {.lex_state = 1}, - [3786] = {.lex_state = 1}, - [3787] = {.lex_state = 0, .external_lex_state = 98}, - [3788] = {.lex_state = 2045}, - [3789] = {.lex_state = 9}, - [3790] = {.lex_state = 2049}, - [3791] = {.lex_state = 1}, - [3792] = {.lex_state = 8}, - [3793] = {.lex_state = 1}, - [3794] = {.lex_state = 1}, - [3795] = {.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}, + [3716] = {.lex_state = 2050}, + [3717] = {.lex_state = 2050}, + [3718] = {.lex_state = 8}, + [3719] = {.lex_state = 8}, + [3720] = {.lex_state = 8}, + [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}, + [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}, + [3758] = {.lex_state = 1}, + [3759] = {.lex_state = 2050}, + [3760] = {.lex_state = 2050}, + [3761] = {.lex_state = 1}, + [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}, + [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}, + [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 = 0, .external_lex_state = 100}, - [3798] = {.lex_state = 0, .external_lex_state = 101}, - [3799] = {.lex_state = 2049}, - [3800] = {.lex_state = 2049}, - [3801] = {.lex_state = 0, .external_lex_state = 94}, - [3802] = {.lex_state = 0, .external_lex_state = 95}, - [3803] = {.lex_state = 0, .external_lex_state = 97}, - [3804] = {.lex_state = 2044}, - [3805] = {.lex_state = 2044}, + [3797] = {.lex_state = 2050}, + [3798] = {.lex_state = 6}, + [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}, + [3805] = {.lex_state = 2050}, [3806] = {.lex_state = 1}, - [3807] = {.lex_state = 0, .external_lex_state = 100}, + [3807] = {.lex_state = 1}, [3808] = {.lex_state = 1}, - [3809] = {.lex_state = 0, .external_lex_state = 99}, - [3810] = {.lex_state = 1}, - [3811] = {.lex_state = 0, .external_lex_state = 100}, - [3812] = {.lex_state = 1}, - [3813] = {.lex_state = 2049}, - [3814] = {.lex_state = 2045}, - [3815] = {.lex_state = 9}, - [3816] = {.lex_state = 0, .external_lex_state = 100}, - [3817] = {.lex_state = 0, .external_lex_state = 101}, - [3818] = {.lex_state = 0, .external_lex_state = 102}, - [3819] = {.lex_state = 0, .external_lex_state = 103}, - [3820] = {.lex_state = 0, .external_lex_state = 104}, - [3821] = {.lex_state = 0, .external_lex_state = 101}, - [3822] = {.lex_state = 2049}, - [3823] = {.lex_state = 2049}, - [3824] = {.lex_state = 2049}, - [3825] = {.lex_state = 8}, - [3826] = {.lex_state = 2049}, - [3827] = {.lex_state = 2049}, - [3828] = {.lex_state = 2049}, - [3829] = {.lex_state = 2049}, - [3830] = {.lex_state = 2044}, - [3831] = {.lex_state = 2044}, - [3832] = {.lex_state = 2049}, - [3833] = {.lex_state = 2049}, - [3834] = {.lex_state = 0, .external_lex_state = 94}, - [3835] = {.lex_state = 0, .external_lex_state = 95}, - [3836] = {.lex_state = 0, .external_lex_state = 97}, - [3837] = {.lex_state = 2049}, - [3838] = {.lex_state = 0, .external_lex_state = 99}, - [3839] = {.lex_state = 0, .external_lex_state = 102}, - [3840] = {.lex_state = 2045}, - [3841] = {.lex_state = 9}, - [3842] = {.lex_state = 0, .external_lex_state = 103}, - [3843] = {.lex_state = 0, .external_lex_state = 104}, - [3844] = {.lex_state = 1}, - [3845] = {.lex_state = 1}, - [3846] = {.lex_state = 1}, - [3847] = {.lex_state = 1}, - [3848] = {.lex_state = 3}, - [3849] = {.lex_state = 0, .external_lex_state = 94}, - [3850] = {.lex_state = 0, .external_lex_state = 95}, - [3851] = {.lex_state = 0, .external_lex_state = 97}, - [3852] = {.lex_state = 3}, - [3853] = {.lex_state = 2049}, - [3854] = {.lex_state = 0, .external_lex_state = 99}, - [3855] = {.lex_state = 3}, - [3856] = {.lex_state = 2044}, - [3857] = {.lex_state = 2044}, - [3858] = {.lex_state = 2049}, - [3859] = {.lex_state = 0, .external_lex_state = 102}, - [3860] = {.lex_state = 2049}, - [3861] = {.lex_state = 0, .external_lex_state = 103}, - [3862] = {.lex_state = 2049}, + [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}, + [3824] = {.lex_state = 1}, + [3825] = {.lex_state = 3}, + [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}, + [3834] = {.lex_state = 3}, + [3835] = {.lex_state = 0, .external_lex_state = 48}, + [3836] = {.lex_state = 2050}, + [3837] = {.lex_state = 0, .external_lex_state = 89}, + [3838] = {.lex_state = 0, .external_lex_state = 90}, + [3839] = {.lex_state = 8}, + [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}, + [3859] = {.lex_state = 2050}, + [3860] = {.lex_state = 0, .external_lex_state = 82}, + [3861] = {.lex_state = 8}, + [3862] = {.lex_state = 2050}, [3863] = {.lex_state = 8}, - [3864] = {.lex_state = 2049}, - [3865] = {.lex_state = 2049}, - [3866] = {.lex_state = 2045}, - [3867] = {.lex_state = 9}, - [3868] = {.lex_state = 2049}, - [3869] = {.lex_state = 0, .external_lex_state = 98}, - [3870] = {.lex_state = 0, .external_lex_state = 104}, - [3871] = {.lex_state = 1}, - [3872] = {.lex_state = 0, .external_lex_state = 96}, - [3873] = {.lex_state = 8}, - [3874] = {.lex_state = 2049}, - [3875] = {.lex_state = 0, .external_lex_state = 64}, - [3876] = {.lex_state = 8}, + [3864] = {.lex_state = 2050}, + [3865] = {.lex_state = 1}, + [3866] = {.lex_state = 1}, + [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 = 2049}, - [3879] = {.lex_state = 2049}, - [3880] = {.lex_state = 2049}, - [3881] = {.lex_state = 2049}, - [3882] = {.lex_state = 2044}, - [3883] = {.lex_state = 2044}, - [3884] = {.lex_state = 0, .external_lex_state = 98}, - [3885] = {.lex_state = 0, .external_lex_state = 98}, - [3886] = {.lex_state = 0, .external_lex_state = 98}, - [3887] = {.lex_state = 0, .external_lex_state = 98}, - [3888] = {.lex_state = 0, .external_lex_state = 98}, + [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 = 2049}, - [3891] = {.lex_state = 2049}, - [3892] = {.lex_state = 2045}, - [3893] = {.lex_state = 9}, - [3894] = {.lex_state = 2049}, - [3895] = {.lex_state = 3}, - [3896] = {.lex_state = 2049}, - [3897] = {.lex_state = 8}, - [3898] = {.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 = 1}, - [3901] = {.lex_state = 1}, - [3902] = {.lex_state = 1}, + [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 = 3}, - [3905] = {.lex_state = 1}, - [3906] = {.lex_state = 0, .external_lex_state = 64}, + [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 = 2044}, - [3909] = {.lex_state = 2044}, - [3910] = {.lex_state = 1}, - [3911] = {.lex_state = 2049}, + [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 = 1}, - [3914] = {.lex_state = 1}, - [3915] = {.lex_state = 1}, - [3916] = {.lex_state = 3}, - [3917] = {.lex_state = 1}, - [3918] = {.lex_state = 2045}, - [3919] = {.lex_state = 9}, - [3920] = {.lex_state = 0, .external_lex_state = 96}, - [3921] = {.lex_state = 1}, - [3922] = {.lex_state = 1}, - [3923] = {.lex_state = 0, .external_lex_state = 100}, - [3924] = {.lex_state = 0, .external_lex_state = 101}, - [3925] = {.lex_state = 2049}, - [3926] = {.lex_state = 2049}, - [3927] = {.lex_state = 0, .external_lex_state = 94}, - [3928] = {.lex_state = 0, .external_lex_state = 95}, - [3929] = {.lex_state = 0, .external_lex_state = 97}, - [3930] = {.lex_state = 1}, - [3931] = {.lex_state = 0, .external_lex_state = 99}, - [3932] = {.lex_state = 0, .external_lex_state = 102}, - [3933] = {.lex_state = 0, .external_lex_state = 103}, - [3934] = {.lex_state = 2044}, - [3935] = {.lex_state = 2044}, - [3936] = {.lex_state = 0, .external_lex_state = 104}, - [3937] = {.lex_state = 0, .external_lex_state = 98}, - [3938] = {.lex_state = 0, .external_lex_state = 98}, - [3939] = {.lex_state = 0, .external_lex_state = 98}, - [3940] = {.lex_state = 0, .external_lex_state = 98}, - [3941] = {.lex_state = 0, .external_lex_state = 98}, - [3942] = {.lex_state = 0, .external_lex_state = 98}, - [3943] = {.lex_state = 5}, - [3944] = {.lex_state = 2045}, - [3945] = {.lex_state = 9}, - [3946] = {.lex_state = 2049}, - [3947] = {.lex_state = 1}, - [3948] = {.lex_state = 3}, - [3949] = {.lex_state = 8}, - [3950] = {.lex_state = 2049}, - [3951] = {.lex_state = 2049}, - [3952] = {.lex_state = 2049}, - [3953] = {.lex_state = 2049}, - [3954] = {.lex_state = 2049}, - [3955] = {.lex_state = 1}, - [3956] = {.lex_state = 1}, - [3957] = {.lex_state = 1}, - [3958] = {.lex_state = 1}, - [3959] = {.lex_state = 3}, - [3960] = {.lex_state = 0, .external_lex_state = 64}, - [3961] = {.lex_state = 1}, - [3962] = {.lex_state = 1}, - [3963] = {.lex_state = 8}, - [3964] = {.lex_state = 1}, - [3965] = {.lex_state = 8}, - [3966] = {.lex_state = 3}, - [3967] = {.lex_state = 1}, - [3968] = {.lex_state = 0, .external_lex_state = 100}, - [3969] = {.lex_state = 8}, - [3970] = {.lex_state = 2045}, - [3971] = {.lex_state = 0, .external_lex_state = 101}, - [3972] = {.lex_state = 8}, - [3973] = {.lex_state = 0, .external_lex_state = 57}, - [3974] = {.lex_state = 2049}, - [3975] = {.lex_state = 8}, - [3976] = {.lex_state = 2044}, - [3977] = {.lex_state = 0, .external_lex_state = 98}, - [3978] = {.lex_state = 6}, - [3979] = {.lex_state = 6}, - [3980] = {.lex_state = 0, .external_lex_state = 96}, - [3981] = {.lex_state = 0, .external_lex_state = 96}, - [3982] = {.lex_state = 0, .external_lex_state = 96}, - [3983] = {.lex_state = 0, .external_lex_state = 96}, - [3984] = {.lex_state = 0, .external_lex_state = 96}, - [3985] = {.lex_state = 0, .external_lex_state = 96}, - [3986] = {.lex_state = 0, .external_lex_state = 96}, - [3987] = {.lex_state = 0, .external_lex_state = 96}, - [3988] = {.lex_state = 0, .external_lex_state = 96}, - [3989] = {.lex_state = 1}, - [3990] = {.lex_state = 9}, - [3991] = {.lex_state = 2049}, - [3992] = {.lex_state = 6}, - [3993] = {.lex_state = 6}, - [3994] = {.lex_state = 0, .external_lex_state = 96}, - [3995] = {.lex_state = 0, .external_lex_state = 96}, - [3996] = {.lex_state = 0, .external_lex_state = 96}, - [3997] = {.lex_state = 0, .external_lex_state = 96}, - [3998] = {.lex_state = 0, .external_lex_state = 96}, - [3999] = {.lex_state = 0, .external_lex_state = 96}, - [4000] = {.lex_state = 0, .external_lex_state = 96}, - [4001] = {.lex_state = 0, .external_lex_state = 96}, - [4002] = {.lex_state = 0, .external_lex_state = 96}, - [4003] = {.lex_state = 6}, - [4004] = {.lex_state = 6}, - [4005] = {.lex_state = 6}, - [4006] = {.lex_state = 6}, - [4007] = {.lex_state = 6}, - [4008] = {.lex_state = 6}, - [4009] = {.lex_state = 6}, - [4010] = {.lex_state = 6}, - [4011] = {.lex_state = 6}, - [4012] = {.lex_state = 6}, - [4013] = {.lex_state = 6}, - [4014] = {.lex_state = 6}, - [4015] = {.lex_state = 6}, - [4016] = {.lex_state = 6}, - [4017] = {.lex_state = 6}, - [4018] = {.lex_state = 6}, - [4019] = {.lex_state = 6}, - [4020] = {.lex_state = 6}, - [4021] = {.lex_state = 6}, - [4022] = {.lex_state = 6}, - [4023] = {.lex_state = 6}, - [4024] = {.lex_state = 6}, - [4025] = {.lex_state = 6}, - [4026] = {.lex_state = 6}, - [4027] = {.lex_state = 6}, - [4028] = {.lex_state = 6}, - [4029] = {.lex_state = 6}, - [4030] = {.lex_state = 6}, - [4031] = {.lex_state = 6}, - [4032] = {.lex_state = 6}, - [4033] = {.lex_state = 2049}, - [4034] = {.lex_state = 2049}, - [4035] = {.lex_state = 2049}, - [4036] = {.lex_state = 2049}, - [4037] = {.lex_state = 2049}, - [4038] = {.lex_state = 2049}, - [4039] = {.lex_state = 2049}, - [4040] = {.lex_state = 2049}, - [4041] = {.lex_state = 2049}, - [4042] = {.lex_state = 2049}, - [4043] = {.lex_state = 2049}, - [4044] = {.lex_state = 2049}, - [4045] = {.lex_state = 2049}, - [4046] = {.lex_state = 2049}, - [4047] = {.lex_state = 2049}, - [4048] = {.lex_state = 2049}, - [4049] = {.lex_state = 2049}, - [4050] = {.lex_state = 2049}, - [4051] = {.lex_state = 2049}, - [4052] = {.lex_state = 2049}, - [4053] = {.lex_state = 2049}, - [4054] = {.lex_state = 2049}, - [4055] = {.lex_state = 2049}, - [4056] = {.lex_state = 2049}, - [4057] = {.lex_state = 2049}, - [4058] = {.lex_state = 2049}, - [4059] = {.lex_state = 2049}, - [4060] = {.lex_state = 2049}, - [4061] = {.lex_state = 2049}, - [4062] = {.lex_state = 2049}, - [4063] = {.lex_state = 2049}, - [4064] = {.lex_state = 2049}, - [4065] = {.lex_state = 2049}, - [4066] = {.lex_state = 2049}, - [4067] = {.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}, + [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}, + [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}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -19834,7 +19698,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_shortcode_name] = ACTIONS(1), [aux_sym_shortcode_naked_string_token1] = ACTIONS(1), [anon_sym_PIPE] = ACTIONS(1), - [aux_sym_pandoc_line_break_token1] = ACTIONS(1), [sym__line_ending] = ACTIONS(1), [sym__soft_line_ending] = ACTIONS(1), [sym__block_close] = ACTIONS(1), @@ -19917,88 +19780,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_note_reference] = ACTIONS(1), [sym_html_element] = ACTIONS(1), [sym__pipe_table_delimiter] = ACTIONS(1), + [sym__pandoc_line_break] = ACTIONS(1), }, [STATE(1)] = { - [sym_document] = STATE(3421), - [sym__block_not_section] = STATE(562), - [sym_section] = STATE(2350), - [sym__section1] = STATE(2536), - [sym__section2] = STATE(2536), - [sym__section3] = STATE(2536), - [sym__section4] = STATE(2536), - [sym__section5] = STATE(2536), - [sym__section6] = STATE(2536), - [sym__atx_heading1] = STATE(78), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(106), + [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__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(127), - [sym_pandoc_horizontal_rule] = STATE(562), - [sym_pandoc_paragraph] = STATE(562), - [sym_inline_ref_def] = STATE(562), - [sym_caption] = STATE(562), - [sym_pipe_table] = STATE(562), - [sym__inlines] = STATE(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(562), - [sym_pandoc_list] = STATE(562), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), + [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(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [sym_pandoc_code_block] = STATE(562), - [sym_pandoc_div] = STATE(562), - [sym_note_definition_fenced_block] = STATE(562), - [sym__newline] = STATE(562), - [sym__soft_line_break] = STATE(562), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_document_repeat1] = STATE(62), - [aux_sym_document_repeat2] = STATE(2350), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), + [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), [ts_builtin_sym_end] = ACTIONS(3), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), @@ -20011,143 +19874,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(33), - [sym_atx_h2_marker] = ACTIONS(35), - [sym_atx_h3_marker] = ACTIONS(37), - [sym_atx_h4_marker] = ACTIONS(39), - [sym_atx_h5_marker] = ACTIONS(41), - [sym_atx_h6_marker] = ACTIONS(43), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(61), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), + [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), + [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(57), + [sym_minus_metadata] = ACTIONS(59), + [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), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(2)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3888), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -20158,145 +20020,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(3)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3703), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -20307,145 +20168,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(4)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3655), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -20456,145 +20316,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(5)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3780), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -20605,145 +20464,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(6)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3787), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -20754,145 +20612,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(7)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3470), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -20903,145 +20760,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(8)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3759), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -21052,145 +20908,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(9)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3563), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -21201,145 +21056,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(10)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3568), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -21350,145 +21204,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(11)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3569), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -21499,145 +21352,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(12)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3570), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -21648,145 +21500,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(13)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3571), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -21797,145 +21648,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(14)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3572), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -21946,145 +21796,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(15)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3869), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -22095,145 +21944,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(16)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3884), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -22244,145 +22092,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(17)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3885), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -22393,145 +22240,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(18)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3886), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -22542,145 +22388,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(19)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3887), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -22691,145 +22536,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(20)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3630), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -22840,144 +22684,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(21)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3941), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -22988,144 +22831,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(22)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3771), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -23136,144 +22978,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(23)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3625), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -23284,144 +23125,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(24)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3626), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -23432,144 +23272,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(25)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3627), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -23580,144 +23419,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(26)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3628), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -23728,144 +23566,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(27)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3629), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -23876,144 +23713,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(28)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3942), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -24024,144 +23860,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(29)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3361), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -24172,144 +24007,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(30)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3463), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -24320,144 +24154,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(31)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3525), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -24468,144 +24301,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(32)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3676), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -24616,144 +24448,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(33)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3714), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -24764,292 +24595,290 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(34)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3937), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), - [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), + [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), + [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(35)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3938), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25060,144 +24889,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(36)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3939), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25208,144 +25036,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(37)] = { - [sym__block] = STATE(69), - [sym__block_not_section] = STATE(69), - [sym_section] = STATE(69), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(69), - [sym_pandoc_list] = STATE(69), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym__list_item_content] = STATE(3940), - [sym_pandoc_code_block] = STATE(69), - [sym_pandoc_div] = STATE(69), - [sym_note_definition_fenced_block] = STATE(69), - [sym__blank_line] = STATE(3283), - [sym__newline] = STATE(69), - [sym__soft_line_break] = STATE(69), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(69), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25356,142 +25183,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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__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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(38)] = { - [sym__block] = STATE(48), - [sym__block_not_section] = STATE(48), - [sym_section] = STATE(48), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(48), - [sym_pandoc_paragraph] = STATE(48), - [sym_inline_ref_def] = STATE(48), - [sym_caption] = STATE(48), - [sym_pipe_table] = STATE(48), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(48), - [sym_pandoc_list] = STATE(48), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [sym_pandoc_code_block] = STATE(48), - [sym_pandoc_div] = STATE(48), - [sym_note_definition_fenced_block] = STATE(48), - [sym__newline] = STATE(48), - [sym__soft_line_break] = STATE(48), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(48), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -25502,76 +25328,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(187), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(207), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(213), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(211), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(39), [sym__block_not_section] = STATE(39), [sym_section] = STATE(39), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), [sym_pandoc_horizontal_rule] = STATE(39), @@ -25579,213 +25405,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(39), [sym_caption] = STATE(39), [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(217), - [sym_entity_reference] = ACTIONS(220), - [sym_numeric_character_reference] = ACTIONS(220), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_BANG_LBRACK] = ACTIONS(226), - [anon_sym_DOLLAR] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(232), - [anon_sym_LBRACE] = ACTIONS(235), - [aux_sym_pandoc_str_token1] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(241), - [aux_sym__prose_punctuation_token1] = ACTIONS(244), - [aux_sym_pandoc_line_break_token1] = ACTIONS(247), - [sym__line_ending] = ACTIONS(250), - [sym__soft_line_ending] = ACTIONS(253), - [sym__block_close] = ACTIONS(256), - [sym__block_quote_start] = ACTIONS(258), - [sym_atx_h1_marker] = ACTIONS(261), - [sym_atx_h2_marker] = ACTIONS(264), - [sym_atx_h3_marker] = ACTIONS(267), - [sym_atx_h4_marker] = ACTIONS(270), - [sym_atx_h5_marker] = ACTIONS(273), - [sym_atx_h6_marker] = ACTIONS(276), - [sym__thematic_break] = ACTIONS(279), - [sym__list_marker_minus] = ACTIONS(282), - [sym__list_marker_plus] = ACTIONS(285), - [sym__list_marker_star] = ACTIONS(288), - [sym__list_marker_parenthesis] = ACTIONS(291), - [sym__list_marker_dot] = ACTIONS(294), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(282), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(285), - [sym__list_marker_star_dont_interrupt] = ACTIONS(288), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(291), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(294), - [sym__list_marker_example] = ACTIONS(297), - [sym__list_marker_example_dont_interrupt] = ACTIONS(297), - [sym__fenced_code_block_start_backtick] = ACTIONS(300), - [sym_minus_metadata] = ACTIONS(303), - [sym__pipe_table_start] = ACTIONS(306), - [sym__fenced_div_start] = ACTIONS(309), - [sym__fenced_div_end] = ACTIONS(256), - [sym_ref_id_specifier] = ACTIONS(312), - [sym__code_span_start] = ACTIONS(315), - [sym__html_comment] = ACTIONS(220), - [sym__autolink] = ACTIONS(220), - [sym__highlight_span_start] = ACTIONS(318), - [sym__insert_span_start] = ACTIONS(321), - [sym__delete_span_start] = ACTIONS(324), - [sym__edit_comment_span_start] = ACTIONS(327), - [sym__single_quote_span_open] = ACTIONS(330), - [sym__double_quote_span_open] = ACTIONS(333), - [sym__shortcode_open_escaped] = ACTIONS(336), - [sym__shortcode_open] = ACTIONS(339), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(342), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(345), - [sym__cite_author_in_text] = ACTIONS(348), - [sym__cite_suppress_author] = ACTIONS(351), - [sym__strikeout_open] = ACTIONS(354), - [sym__subscript_open] = ACTIONS(357), - [sym__superscript_open] = ACTIONS(360), - [sym__inline_note_start_token] = ACTIONS(363), - [sym__strong_emphasis_open_star] = ACTIONS(366), - [sym__strong_emphasis_open_underscore] = ACTIONS(369), - [sym__emphasis_open_star] = ACTIONS(372), - [sym__emphasis_open_underscore] = ACTIONS(375), - [sym_inline_note_reference] = ACTIONS(220), - [sym_html_element] = ACTIONS(220), + [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(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(73), - [sym__block_not_section] = STATE(73), - [sym_section] = STATE(73), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(73), - [sym_pandoc_list] = STATE(73), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(73), - [sym_pandoc_div] = STATE(73), - [sym_note_definition_fenced_block] = STATE(73), - [sym__newline] = STATE(73), - [sym__soft_line_break] = STATE(73), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(73), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25796,143 +25620,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(378), - [sym_block_continuation] = ACTIONS(380), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(382), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(377), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(41)] = { - [sym__block] = STATE(42), - [sym__block_not_section] = STATE(42), - [sym_section] = STATE(42), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(102), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(42), - [sym_pandoc_paragraph] = STATE(42), - [sym_inline_ref_def] = STATE(42), - [sym_caption] = STATE(42), - [sym_pipe_table] = STATE(42), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(42), - [sym_pandoc_list] = STATE(42), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), - [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [sym_pandoc_code_block] = STATE(42), - [sym_pandoc_div] = STATE(42), - [sym_note_definition_fenced_block] = STATE(42), - [sym__newline] = STATE(42), - [sym__soft_line_break] = STATE(42), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(42), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -25943,143 +25766,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(384), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(386), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(388), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(383), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(42)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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__atx_heading2] = STATE(84), [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(102), + [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(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [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_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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(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), + [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), @@ -26090,143 +25912,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(390), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(392), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(394), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(43)] = { - [sym__block] = STATE(45), - [sym__block_not_section] = STATE(45), - [sym_section] = STATE(45), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), - [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(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(45), - [sym_pandoc_list] = STATE(45), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [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_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(45), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -26237,76 +26058,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(396), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(398), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(400), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(393), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(44)] = { [sym__block] = STATE(46), [sym__block_not_section] = STATE(46), [sym_section] = STATE(46), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), [sym_pandoc_horizontal_rule] = STATE(46), @@ -26314,66 +26135,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(46), [sym_caption] = STATE(46), [sym_pipe_table] = STATE(46), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(46), [sym_pandoc_list] = STATE(46), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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(46), [sym_pandoc_div] = STATE(46), [sym_note_definition_fenced_block] = STATE(46), [sym__newline] = STATE(46), [sym__soft_line_break] = STATE(46), - [sym_pandoc_line_break] = STATE(417), [aux_sym_pandoc_block_quote_repeat1] = STATE(46), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -26384,143 +26204,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(390), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(402), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(394), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(45)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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__atx_heading2] = STATE(84), [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(102), + [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(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [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_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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(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), + [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), @@ -26531,76 +26350,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(404), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(392), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(406), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(46)] = { [sym__block] = STATE(39), [sym__block_not_section] = STATE(39), [sym_section] = STATE(39), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), [sym_pandoc_horizontal_rule] = STATE(39), @@ -26608,66 +26427,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(39), [sym_caption] = STATE(39), [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -26678,223 +26496,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(408), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(392), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(410), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(405), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(47)] = { - [sym__block] = STATE(67), - [sym__block_not_section] = STATE(67), - [sym_section] = STATE(67), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(67), - [sym_pandoc_list] = STATE(67), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [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), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(67), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(412), - [sym_block_continuation] = ACTIONS(414), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(416), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - }, - [STATE(48)] = { [sym__block] = STATE(39), [sym__block_not_section] = STATE(39), [sym_section] = STATE(39), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), [sym_pandoc_horizontal_rule] = STATE(39), @@ -26902,66 +26573,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(39), [sym_caption] = STATE(39), [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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(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__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(409), + [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(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), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -26972,143 +26788,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(418), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(392), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(420), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(415), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(49)] = { - [sym__block] = STATE(51), - [sym__block_not_section] = STATE(51), - [sym_section] = STATE(51), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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), + [sym__atx_heading2] = STATE(84), [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(51), - [sym_pandoc_paragraph] = STATE(51), - [sym_inline_ref_def] = STATE(51), - [sym_caption] = STATE(51), - [sym_pipe_table] = STATE(51), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(51), - [sym_pandoc_list] = STATE(51), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [sym_pandoc_code_block] = STATE(51), - [sym_pandoc_div] = STATE(51), - [sym_note_definition_fenced_block] = STATE(51), - [sym__newline] = STATE(51), - [sym__soft_line_break] = STATE(51), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(51), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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(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), + [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), @@ -27119,76 +26934,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(418), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(422), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(420), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(50)] = { [sym__block] = STATE(39), [sym__block_not_section] = STATE(39), [sym_section] = STATE(39), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), [sym_pandoc_horizontal_rule] = STATE(39), @@ -27196,66 +27011,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(39), [sym_caption] = STATE(39), [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -27266,143 +27080,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(424), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(392), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(426), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(425), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(51)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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), + [sym__atx_heading2] = STATE(84), [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(102), + [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(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [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_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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(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), + [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), @@ -27413,76 +27226,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(428), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(392), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(430), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(52)] = { [sym__block] = STATE(54), [sym__block_not_section] = STATE(54), [sym_section] = STATE(54), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), [sym_pandoc_horizontal_rule] = STATE(54), @@ -27490,66 +27303,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(54), [sym_caption] = STATE(54), [sym_pipe_table] = STATE(54), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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(54), [sym_pandoc_div] = STATE(54), [sym_note_definition_fenced_block] = STATE(54), [sym__newline] = STATE(54), [sym__soft_line_break] = STATE(54), - [sym_pandoc_line_break] = STATE(417), [aux_sym_pandoc_block_quote_repeat1] = STATE(54), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -27560,223 +27372,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(432), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(434), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(436), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(53)] = { - [sym__block] = STATE(65), - [sym__block_not_section] = STATE(65), - [sym_section] = STATE(65), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(65), - [sym_pandoc_list] = STATE(65), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [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_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(65), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(438), - [sym_block_continuation] = ACTIONS(440), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(442), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - }, - [STATE(54)] = { [sym__block] = STATE(39), [sym__block_not_section] = STATE(39), [sym_section] = STATE(39), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), [sym_pandoc_horizontal_rule] = STATE(39), @@ -27784,66 +27449,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(39), [sym_caption] = STATE(39), [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -27854,143 +27518,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(444), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(392), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(446), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(437), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(55)] = { - [sym__block] = STATE(57), - [sym__block_not_section] = STATE(57), - [sym_section] = STATE(57), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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), + [sym__atx_heading2] = STATE(84), [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(57), - [sym_pandoc_paragraph] = STATE(57), - [sym_inline_ref_def] = STATE(57), - [sym_caption] = STATE(57), - [sym_pipe_table] = STATE(57), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(57), - [sym_pandoc_list] = STATE(57), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [sym_pandoc_code_block] = STATE(57), - [sym_pandoc_div] = STATE(57), - [sym_note_definition_fenced_block] = STATE(57), - [sym__newline] = STATE(57), - [sym__soft_line_break] = STATE(57), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(57), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -28001,143 +27664,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(448), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(450), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(452), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(441), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(58), - [sym__block_not_section] = STATE(58), - [sym_section] = STATE(58), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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), + [sym__atx_heading2] = STATE(84), [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(58), - [sym_pandoc_paragraph] = STATE(58), - [sym_inline_ref_def] = STATE(58), - [sym_caption] = STATE(58), - [sym_pipe_table] = STATE(58), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(58), - [sym_pandoc_list] = STATE(58), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [sym_pandoc_code_block] = STATE(58), - [sym_pandoc_div] = STATE(58), - [sym_note_definition_fenced_block] = STATE(58), - [sym__newline] = STATE(58), - [sym__soft_line_break] = STATE(58), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(58), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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(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), + [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), @@ -28148,76 +27810,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(444), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(454), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(446), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(57)] = { + [STATE(56)] = { [sym__block] = STATE(39), [sym__block_not_section] = STATE(39), [sym_section] = STATE(39), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), [sym_pandoc_horizontal_rule] = STATE(39), @@ -28225,66 +27887,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(39), [sym_caption] = STATE(39), [sym_pipe_table] = STATE(39), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -28295,143 +27956,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(456), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(392), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(458), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(58)] = { - [sym__block] = STATE(39), - [sym__block_not_section] = STATE(39), - [sym_section] = STATE(39), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [STATE(57)] = { + [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__atx_heading2] = STATE(84), [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(102), + [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(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(39), - [sym_pandoc_list] = STATE(39), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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_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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [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_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(39), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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(59), + [sym_pandoc_div] = STATE(59), + [sym_note_definition_fenced_block] = STATE(59), + [sym__newline] = STATE(59), + [sym__soft_line_break] = STATE(59), + [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_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), @@ -28442,143 +28102,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(460), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(392), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(462), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(59)] = { - [sym__block] = STATE(50), - [sym__block_not_section] = STATE(50), - [sym_section] = STATE(50), - [sym__section1] = STATE(347), - [sym__section2] = STATE(347), - [sym__section3] = STATE(347), - [sym__section4] = STATE(347), - [sym__section5] = STATE(347), - [sym__section6] = STATE(347), - [sym__atx_heading1] = STATE(75), - [sym__atx_heading2] = STATE(85), + [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__atx_heading2] = STATE(84), [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(102), + [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(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(50), - [sym_pandoc_list] = STATE(50), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [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), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(50), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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(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), + [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), @@ -28589,143 +28248,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(464), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(191), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(466), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(468), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(60)] = { - [sym__block] = STATE(72), - [sym__block_not_section] = STATE(72), - [sym_section] = STATE(72), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(72), - [sym_pandoc_list] = STATE(72), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [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_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(72), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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__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), @@ -28736,142 +28394,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(470), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(472), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(463), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(61)] = { - [sym__block] = STATE(64), - [sym__block_not_section] = STATE(64), - [sym_section] = STATE(64), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [sym_pandoc_horizontal_rule] = STATE(64), - [sym_pandoc_paragraph] = STATE(64), - [sym_inline_ref_def] = STATE(64), - [sym_caption] = STATE(64), - [sym_pipe_table] = STATE(64), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(64), - [sym_pandoc_list] = STATE(64), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(64), - [sym_pandoc_div] = STATE(64), - [sym_note_definition_fenced_block] = STATE(64), - [sym__newline] = STATE(64), - [sym__soft_line_break] = STATE(64), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(64), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -28882,143 +28540,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(474), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(476), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(467), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(62)] = { - [sym__block_not_section] = STATE(562), - [sym_section] = STATE(2351), - [sym__section1] = STATE(2536), - [sym__section2] = STATE(2536), - [sym__section3] = STATE(2536), - [sym__section4] = STATE(2536), - [sym__section5] = STATE(2536), - [sym__section6] = STATE(2536), - [sym__atx_heading1] = STATE(78), - [sym__atx_heading2] = STATE(86), + [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__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(127), - [sym_pandoc_horizontal_rule] = STATE(562), - [sym_pandoc_paragraph] = STATE(562), - [sym_inline_ref_def] = STATE(562), - [sym_caption] = STATE(562), - [sym_pipe_table] = STATE(562), - [sym__inlines] = STATE(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(562), - [sym_pandoc_list] = STATE(562), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [sym_pandoc_code_block] = STATE(562), - [sym_pandoc_div] = STATE(562), - [sym_note_definition_fenced_block] = STATE(562), - [sym__newline] = STATE(562), - [sym__soft_line_break] = STATE(562), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_document_repeat1] = STATE(126), - [aux_sym_document_repeat2] = STATE(2351), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(478), - [anon_sym_COLON] = ACTIONS(5), + [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(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -29029,141 +28685,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(33), - [sym_atx_h2_marker] = ACTIONS(35), - [sym_atx_h3_marker] = ACTIONS(37), - [sym_atx_h4_marker] = ACTIONS(39), - [sym_atx_h5_marker] = ACTIONS(41), - [sym_atx_h6_marker] = ACTIONS(43), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(480), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), + [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__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(467), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(63)] = { - [sym__block_not_section] = STATE(562), - [sym_section] = STATE(2349), - [sym__section1] = STATE(2536), - [sym__section2] = STATE(2536), - [sym__section3] = STATE(2536), - [sym__section4] = STATE(2536), - [sym__section5] = STATE(2536), - [sym__section6] = STATE(2536), - [sym__atx_heading1] = STATE(78), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(106), + [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__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(127), - [sym_pandoc_horizontal_rule] = STATE(562), - [sym_pandoc_paragraph] = STATE(562), - [sym_inline_ref_def] = STATE(562), - [sym_caption] = STATE(562), - [sym_pipe_table] = STATE(562), - [sym__inlines] = STATE(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(562), - [sym_pandoc_list] = STATE(562), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), + [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(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [sym_pandoc_code_block] = STATE(562), - [sym_pandoc_div] = STATE(562), - [sym_note_definition_fenced_block] = STATE(562), - [sym__newline] = STATE(562), - [sym__soft_line_break] = STATE(562), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_document_repeat1] = STATE(126), - [aux_sym_document_repeat2] = STATE(2349), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(482), + [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), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -29175,287 +28831,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(33), - [sym_atx_h2_marker] = ACTIONS(35), - [sym_atx_h3_marker] = ACTIONS(37), - [sym_atx_h4_marker] = ACTIONS(39), - [sym_atx_h5_marker] = ACTIONS(41), - [sym_atx_h6_marker] = ACTIONS(43), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(480), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), + [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), + [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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(64)] = { - [sym__block] = STATE(64), - [sym__block_not_section] = STATE(64), - [sym_section] = STATE(64), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), - [sym_pandoc_horizontal_rule] = STATE(64), - [sym_pandoc_paragraph] = STATE(64), - [sym_inline_ref_def] = STATE(64), - [sym_caption] = STATE(64), - [sym_pipe_table] = STATE(64), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(64), - [sym_pandoc_list] = STATE(64), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(64), - [sym_pandoc_div] = STATE(64), - [sym_note_definition_fenced_block] = STATE(64), - [sym__newline] = STATE(64), - [sym__soft_line_break] = STATE(64), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(64), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(484), - [sym_entity_reference] = ACTIONS(220), - [sym_numeric_character_reference] = ACTIONS(220), - [anon_sym_LBRACK] = ACTIONS(223), - [anon_sym_BANG_LBRACK] = ACTIONS(226), - [anon_sym_DOLLAR] = ACTIONS(229), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(232), - [anon_sym_LBRACE] = ACTIONS(235), - [aux_sym_pandoc_str_token1] = ACTIONS(238), - [anon_sym_PIPE] = ACTIONS(241), - [aux_sym__prose_punctuation_token1] = ACTIONS(244), - [aux_sym_pandoc_line_break_token1] = ACTIONS(247), - [sym__line_ending] = ACTIONS(487), - [sym__soft_line_ending] = ACTIONS(490), - [sym__block_close] = ACTIONS(256), - [sym__block_quote_start] = ACTIONS(493), - [sym_atx_h1_marker] = ACTIONS(496), - [sym_atx_h2_marker] = ACTIONS(499), - [sym_atx_h3_marker] = ACTIONS(502), - [sym_atx_h4_marker] = ACTIONS(505), - [sym_atx_h5_marker] = ACTIONS(508), - [sym_atx_h6_marker] = ACTIONS(511), - [sym__thematic_break] = ACTIONS(514), - [sym__list_marker_minus] = ACTIONS(282), - [sym__list_marker_plus] = ACTIONS(285), - [sym__list_marker_star] = ACTIONS(288), - [sym__list_marker_parenthesis] = ACTIONS(291), - [sym__list_marker_dot] = ACTIONS(294), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(282), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(285), - [sym__list_marker_star_dont_interrupt] = ACTIONS(288), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(291), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(294), - [sym__list_marker_example] = ACTIONS(297), - [sym__list_marker_example_dont_interrupt] = ACTIONS(297), - [sym__fenced_code_block_start_backtick] = ACTIONS(517), - [sym_minus_metadata] = ACTIONS(520), - [sym__pipe_table_start] = ACTIONS(523), - [sym__fenced_div_start] = ACTIONS(526), - [sym_ref_id_specifier] = ACTIONS(529), - [sym__code_span_start] = ACTIONS(315), - [sym__html_comment] = ACTIONS(220), - [sym__autolink] = ACTIONS(220), - [sym__highlight_span_start] = ACTIONS(318), - [sym__insert_span_start] = ACTIONS(321), - [sym__delete_span_start] = ACTIONS(324), - [sym__edit_comment_span_start] = ACTIONS(327), - [sym__single_quote_span_open] = ACTIONS(330), - [sym__double_quote_span_open] = ACTIONS(333), - [sym__shortcode_open_escaped] = ACTIONS(336), - [sym__shortcode_open] = ACTIONS(339), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(342), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(345), - [sym__cite_author_in_text] = ACTIONS(348), - [sym__cite_suppress_author] = ACTIONS(351), - [sym__strikeout_open] = ACTIONS(354), - [sym__subscript_open] = ACTIONS(357), - [sym__superscript_open] = ACTIONS(360), - [sym__inline_note_start_token] = ACTIONS(363), - [sym__strong_emphasis_open_star] = ACTIONS(366), - [sym__strong_emphasis_open_underscore] = ACTIONS(369), - [sym__emphasis_open_star] = ACTIONS(372), - [sym__emphasis_open_underscore] = ACTIONS(375), - [sym_inline_note_reference] = ACTIONS(220), - [sym_html_element] = ACTIONS(220), - }, - [STATE(65)] = { - [sym__block] = STATE(64), - [sym__block_not_section] = STATE(64), - [sym_section] = STATE(64), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [sym_pandoc_horizontal_rule] = STATE(64), - [sym_pandoc_paragraph] = STATE(64), - [sym_inline_ref_def] = STATE(64), - [sym_caption] = STATE(64), - [sym_pipe_table] = STATE(64), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(64), - [sym_pandoc_list] = STATE(64), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(64), - [sym_pandoc_div] = STATE(64), - [sym_note_definition_fenced_block] = STATE(64), - [sym__newline] = STATE(64), - [sym__soft_line_break] = STATE(64), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(64), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -29466,142 +28975,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(470), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(476), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(467), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(66)] = { - [sym__block] = STATE(68), - [sym__block_not_section] = STATE(68), - [sym_section] = STATE(68), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), + [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__atx_heading2] = STATE(89), [sym__atx_heading3] = STATE(97), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(68), - [sym_pandoc_list] = STATE(68), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [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_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(68), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -29612,142 +29121,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(532), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(534), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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), + [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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(67)] = { - [sym__block] = STATE(64), - [sym__block_not_section] = STATE(64), - [sym_section] = STATE(64), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [sym_pandoc_horizontal_rule] = STATE(64), - [sym_pandoc_paragraph] = STATE(64), - [sym_inline_ref_def] = STATE(64), - [sym_caption] = STATE(64), - [sym_pipe_table] = STATE(64), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(64), - [sym_pandoc_list] = STATE(64), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(64), - [sym_pandoc_div] = STATE(64), - [sym_note_definition_fenced_block] = STATE(64), - [sym__newline] = STATE(64), - [sym__soft_line_break] = STATE(64), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(64), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -29758,142 +29265,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(532), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(476), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(467), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(68)] = { - [sym__block] = STATE(64), - [sym__block_not_section] = STATE(64), - [sym_section] = STATE(64), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [sym_pandoc_horizontal_rule] = STATE(64), - [sym_pandoc_paragraph] = STATE(64), - [sym_inline_ref_def] = STATE(64), - [sym_caption] = STATE(64), - [sym_pipe_table] = STATE(64), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(64), - [sym_pandoc_list] = STATE(64), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(64), - [sym_pandoc_div] = STATE(64), - [sym_note_definition_fenced_block] = STATE(64), - [sym__newline] = STATE(64), - [sym__soft_line_break] = STATE(64), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(64), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -29904,142 +29410,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(536), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(476), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(467), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(69)] = { - [sym__block] = STATE(64), - [sym__block_not_section] = STATE(64), - [sym_section] = STATE(64), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [sym_pandoc_horizontal_rule] = STATE(64), - [sym_pandoc_paragraph] = STATE(64), - [sym_inline_ref_def] = STATE(64), - [sym_caption] = STATE(64), - [sym_pipe_table] = STATE(64), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(64), - [sym_pandoc_list] = STATE(64), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(64), - [sym_pandoc_div] = STATE(64), - [sym_note_definition_fenced_block] = STATE(64), - [sym__newline] = STATE(64), - [sym__soft_line_break] = STATE(64), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(64), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -30050,142 +29700,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(538), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(476), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(467), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(70)] = { - [sym__block_not_section] = STATE(562), - [sym_section] = STATE(2348), - [sym__section1] = STATE(2536), - [sym__section2] = STATE(2536), - [sym__section3] = STATE(2536), - [sym__section4] = STATE(2536), - [sym__section5] = STATE(2536), - [sym__section6] = STATE(2536), - [sym__atx_heading1] = STATE(78), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(106), + [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), + [sym__atx_heading2] = STATE(89), + [sym__atx_heading3] = STATE(97), + [sym__atx_heading4] = STATE(108), [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(127), - [sym_pandoc_horizontal_rule] = STATE(562), - [sym_pandoc_paragraph] = STATE(562), - [sym_inline_ref_def] = STATE(562), - [sym_caption] = STATE(562), - [sym_pipe_table] = STATE(562), - [sym__inlines] = STATE(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(562), - [sym_pandoc_list] = STATE(562), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), + [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(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [sym_pandoc_code_block] = STATE(562), - [sym_pandoc_div] = STATE(562), - [sym_note_definition_fenced_block] = STATE(562), - [sym__newline] = STATE(562), - [sym__soft_line_break] = STATE(562), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_document_repeat1] = STATE(63), - [aux_sym_document_repeat2] = STATE(2348), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(540), + [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_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -30197,141 +29846,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(33), - [sym_atx_h2_marker] = ACTIONS(35), - [sym_atx_h3_marker] = ACTIONS(37), - [sym_atx_h4_marker] = ACTIONS(39), - [sym_atx_h5_marker] = ACTIONS(41), - [sym_atx_h6_marker] = ACTIONS(43), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(480), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), + [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), + [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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(71)] = { - [sym__block] = STATE(61), - [sym__block_not_section] = STATE(61), - [sym_section] = STATE(61), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(61), - [sym_pandoc_list] = STATE(61), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [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), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(61), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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_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(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__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(467), + [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(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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -30342,142 +30135,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(542), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(544), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(537), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(72)] = { - [sym__block] = STATE(64), - [sym__block_not_section] = STATE(64), - [sym_section] = STATE(64), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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), + [sym__atx_heading3] = STATE(100), [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), - [sym_pandoc_horizontal_rule] = STATE(64), - [sym_pandoc_paragraph] = STATE(64), - [sym_inline_ref_def] = STATE(64), - [sym_caption] = STATE(64), - [sym_pipe_table] = STATE(64), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(64), - [sym_pandoc_list] = STATE(64), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(64), - [sym_pandoc_div] = STATE(64), - [sym_note_definition_fenced_block] = STATE(64), - [sym__newline] = STATE(64), - [sym__soft_line_break] = STATE(64), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(64), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -30488,142 +30280,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(546), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(476), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(539), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(73)] = { - [sym__block] = STATE(64), - [sym__block_not_section] = STATE(64), - [sym_section] = STATE(64), - [sym__section1] = STATE(513), - [sym__section2] = STATE(513), - [sym__section3] = STATE(513), - [sym__section4] = STATE(513), - [sym__section5] = STATE(513), - [sym__section6] = STATE(513), - [sym__atx_heading1] = STATE(81), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [sym_pandoc_horizontal_rule] = STATE(64), - [sym_pandoc_paragraph] = STATE(64), - [sym_inline_ref_def] = STATE(64), - [sym_caption] = STATE(64), - [sym_pipe_table] = STATE(64), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(64), - [sym_pandoc_list] = STATE(64), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(64), - [sym_pandoc_div] = STATE(64), - [sym_note_definition_fenced_block] = STATE(64), - [sym__newline] = STATE(64), - [sym__soft_line_break] = STATE(64), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_pandoc_block_quote_repeat1] = STATE(64), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -30634,281 +30425,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(542), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(476), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(541), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(74)] = { - [sym__block_not_section] = STATE(74), - [sym__section2] = STATE(444), - [sym__section3] = STATE(444), - [sym__section4] = STATE(444), - [sym__section5] = STATE(444), - [sym__section6] = STATE(444), - [sym__atx_heading2] = STATE(85), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(102), - [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(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(74), - [sym_pandoc_list] = STATE(74), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), - [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [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), - [sym_pandoc_line_break] = STATE(417), - [aux_sym__section1_repeat1] = STATE(74), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(548), - [sym_entity_reference] = ACTIONS(551), - [sym_numeric_character_reference] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_BANG_LBRACK] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(566), - [aux_sym_pandoc_str_token1] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(572), - [aux_sym__prose_punctuation_token1] = ACTIONS(575), - [aux_sym_pandoc_line_break_token1] = ACTIONS(578), - [sym__line_ending] = ACTIONS(581), - [sym__soft_line_ending] = ACTIONS(584), - [sym__block_close] = ACTIONS(587), - [sym__block_quote_start] = ACTIONS(589), - [sym_atx_h1_marker] = ACTIONS(587), - [sym_atx_h2_marker] = ACTIONS(592), - [sym_atx_h3_marker] = ACTIONS(595), - [sym_atx_h4_marker] = ACTIONS(598), - [sym_atx_h5_marker] = ACTIONS(601), - [sym_atx_h6_marker] = ACTIONS(604), - [sym__thematic_break] = ACTIONS(607), - [sym__list_marker_minus] = ACTIONS(610), - [sym__list_marker_plus] = ACTIONS(613), - [sym__list_marker_star] = ACTIONS(616), - [sym__list_marker_parenthesis] = ACTIONS(619), - [sym__list_marker_dot] = ACTIONS(622), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(610), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(613), - [sym__list_marker_star_dont_interrupt] = ACTIONS(616), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(619), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(622), - [sym__list_marker_example] = ACTIONS(625), - [sym__list_marker_example_dont_interrupt] = ACTIONS(625), - [sym__fenced_code_block_start_backtick] = ACTIONS(628), - [sym_minus_metadata] = ACTIONS(631), - [sym__pipe_table_start] = ACTIONS(634), - [sym__fenced_div_start] = ACTIONS(637), - [sym__fenced_div_end] = ACTIONS(587), - [sym_ref_id_specifier] = ACTIONS(640), - [sym__code_span_start] = ACTIONS(643), - [sym__html_comment] = ACTIONS(551), - [sym__autolink] = ACTIONS(551), - [sym__highlight_span_start] = ACTIONS(646), - [sym__insert_span_start] = ACTIONS(649), - [sym__delete_span_start] = ACTIONS(652), - [sym__edit_comment_span_start] = ACTIONS(655), - [sym__single_quote_span_open] = ACTIONS(658), - [sym__double_quote_span_open] = ACTIONS(661), - [sym__shortcode_open_escaped] = ACTIONS(664), - [sym__shortcode_open] = ACTIONS(667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(670), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(673), - [sym__cite_author_in_text] = ACTIONS(676), - [sym__cite_suppress_author] = ACTIONS(679), - [sym__strikeout_open] = ACTIONS(682), - [sym__subscript_open] = ACTIONS(685), - [sym__superscript_open] = ACTIONS(688), - [sym__inline_note_start_token] = ACTIONS(691), - [sym__strong_emphasis_open_star] = ACTIONS(694), - [sym__strong_emphasis_open_underscore] = ACTIONS(697), - [sym__emphasis_open_star] = ACTIONS(700), - [sym__emphasis_open_underscore] = ACTIONS(703), - [sym_inline_note_reference] = ACTIONS(551), - [sym_html_element] = ACTIONS(551), - }, - [STATE(75)] = { - [sym__block_not_section] = STATE(76), - [sym__section2] = STATE(444), - [sym__section3] = STATE(444), - [sym__section4] = STATE(444), - [sym__section5] = STATE(444), - [sym__section6] = STATE(444), - [sym__atx_heading2] = STATE(85), + [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__atx_heading2] = STATE(84), [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), - [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(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(76), - [sym_pandoc_list] = STATE(76), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section1_repeat1] = STATE(76), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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(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), + [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), @@ -30919,72 +30566,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(706), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(706), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(708), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(706), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(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__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__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), + [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), }, [STATE(76)] = { [sym__block_not_section] = STATE(74), - [sym__section2] = STATE(444), - [sym__section3] = STATE(444), - [sym__section4] = STATE(444), - [sym__section5] = STATE(444), - [sym__section6] = STATE(444), - [sym__atx_heading2] = STATE(85), + [sym__section2] = STATE(377), + [sym__section3] = STATE(377), + [sym__section4] = STATE(377), + [sym__section5] = STATE(377), + [sym__section6] = STATE(377), + [sym__atx_heading2] = STATE(84), [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), [sym_pandoc_horizontal_rule] = STATE(74), @@ -30992,66 +30781,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(74), [sym_caption] = STATE(74), [sym_pipe_table] = STATE(74), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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(74), [sym_pandoc_div] = STATE(74), [sym_note_definition_fenced_block] = STATE(74), [sym__newline] = STATE(74), [sym__soft_line_break] = STATE(74), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section1_repeat1] = STATE(74), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -31062,424 +30850,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(710), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(710), - [sym_atx_h2_marker] = ACTIONS(193), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(712), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(710), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(77)] = { [sym__block_not_section] = STATE(77), - [sym__section2] = STATE(518), - [sym__section3] = STATE(518), - [sym__section4] = STATE(518), - [sym__section5] = STATE(518), - [sym__section6] = STATE(518), - [sym__atx_heading2] = STATE(86), + [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(106), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(127), + [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(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section1_repeat1] = STATE(77), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(587), - [anon_sym_COLON] = ACTIONS(714), - [sym_entity_reference] = ACTIONS(551), - [sym_numeric_character_reference] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_BANG_LBRACK] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(566), - [aux_sym_pandoc_str_token1] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(572), - [aux_sym__prose_punctuation_token1] = ACTIONS(575), - [aux_sym_pandoc_line_break_token1] = ACTIONS(578), - [sym__line_ending] = ACTIONS(717), - [sym__soft_line_ending] = ACTIONS(720), - [sym__block_quote_start] = ACTIONS(723), - [sym_atx_h1_marker] = ACTIONS(587), - [sym_atx_h2_marker] = ACTIONS(726), - [sym_atx_h3_marker] = ACTIONS(729), - [sym_atx_h4_marker] = ACTIONS(732), - [sym_atx_h5_marker] = ACTIONS(735), - [sym_atx_h6_marker] = ACTIONS(738), - [sym__thematic_break] = ACTIONS(741), - [sym__list_marker_minus] = ACTIONS(610), - [sym__list_marker_plus] = ACTIONS(613), - [sym__list_marker_star] = ACTIONS(616), - [sym__list_marker_parenthesis] = ACTIONS(619), - [sym__list_marker_dot] = ACTIONS(622), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(610), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(613), - [sym__list_marker_star_dont_interrupt] = ACTIONS(616), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(619), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(622), - [sym__list_marker_example] = ACTIONS(625), - [sym__list_marker_example_dont_interrupt] = ACTIONS(625), - [sym__fenced_code_block_start_backtick] = ACTIONS(744), - [sym_minus_metadata] = ACTIONS(747), - [sym__pipe_table_start] = ACTIONS(750), - [sym__fenced_div_start] = ACTIONS(753), - [sym_ref_id_specifier] = ACTIONS(756), - [sym__code_span_start] = ACTIONS(643), - [sym__html_comment] = ACTIONS(551), - [sym__autolink] = ACTIONS(551), - [sym__highlight_span_start] = ACTIONS(646), - [sym__insert_span_start] = ACTIONS(649), - [sym__delete_span_start] = ACTIONS(652), - [sym__edit_comment_span_start] = ACTIONS(655), - [sym__single_quote_span_open] = ACTIONS(658), - [sym__double_quote_span_open] = ACTIONS(661), - [sym__shortcode_open_escaped] = ACTIONS(664), - [sym__shortcode_open] = ACTIONS(667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(670), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(673), - [sym__cite_author_in_text] = ACTIONS(676), - [sym__cite_suppress_author] = ACTIONS(679), - [sym__strikeout_open] = ACTIONS(682), - [sym__subscript_open] = ACTIONS(685), - [sym__superscript_open] = ACTIONS(688), - [sym__inline_note_start_token] = ACTIONS(691), - [sym__strong_emphasis_open_star] = ACTIONS(694), - [sym__strong_emphasis_open_underscore] = ACTIONS(697), - [sym__emphasis_open_star] = ACTIONS(700), - [sym__emphasis_open_underscore] = ACTIONS(703), - [sym_inline_note_reference] = ACTIONS(551), - [sym_html_element] = ACTIONS(551), + [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(79), - [sym__section2] = STATE(518), - [sym__section3] = STATE(518), - [sym__section4] = STATE(518), - [sym__section5] = STATE(518), - [sym__section6] = STATE(518), - [sym__atx_heading2] = STATE(86), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(117), - [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(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(79), - [sym_pandoc_list] = STATE(79), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section1_repeat1] = STATE(79), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(706), - [anon_sym_COLON] = ACTIONS(5), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(706), - [sym_atx_h2_marker] = ACTIONS(35), - [sym_atx_h3_marker] = ACTIONS(37), - [sym_atx_h4_marker] = ACTIONS(39), - [sym_atx_h5_marker] = ACTIONS(41), - [sym_atx_h6_marker] = ACTIONS(43), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(759), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - }, - [STATE(79)] = { [sym__block_not_section] = STATE(77), - [sym__section2] = STATE(518), - [sym__section3] = STATE(518), - [sym__section4] = STATE(518), - [sym__section5] = STATE(518), - [sym__section6] = STATE(518), - [sym__atx_heading2] = STATE(86), + [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(106), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(127), + [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(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section1_repeat1] = STATE(77), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(710), - [anon_sym_COLON] = ACTIONS(5), + [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), @@ -31490,279 +31133,278 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(710), - [sym_atx_h2_marker] = ACTIONS(35), - [sym_atx_h3_marker] = ACTIONS(37), - [sym_atx_h4_marker] = ACTIONS(39), - [sym_atx_h5_marker] = ACTIONS(41), - [sym_atx_h6_marker] = ACTIONS(43), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(761), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), + [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__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(751), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(80)] = { - [sym__block_not_section] = STATE(80), - [sym__section2] = STATE(548), - [sym__section3] = STATE(548), - [sym__section4] = STATE(548), - [sym__section5] = STATE(548), - [sym__section6] = STATE(548), - [sym__atx_heading2] = STATE(87), + [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__atx_heading2] = STATE(89), [sym__atx_heading3] = STATE(97), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(80), - [sym_pandoc_list] = STATE(80), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section1_repeat1] = STATE(80), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(763), - [sym_entity_reference] = ACTIONS(551), - [sym_numeric_character_reference] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(554), - [anon_sym_BANG_LBRACK] = ACTIONS(557), - [anon_sym_DOLLAR] = ACTIONS(560), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(566), - [aux_sym_pandoc_str_token1] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(572), - [aux_sym__prose_punctuation_token1] = ACTIONS(575), - [aux_sym_pandoc_line_break_token1] = ACTIONS(578), - [sym__line_ending] = ACTIONS(766), - [sym__soft_line_ending] = ACTIONS(769), - [sym__block_close] = ACTIONS(587), - [sym__block_quote_start] = ACTIONS(772), - [sym_atx_h1_marker] = ACTIONS(587), - [sym_atx_h2_marker] = ACTIONS(775), - [sym_atx_h3_marker] = ACTIONS(778), - [sym_atx_h4_marker] = ACTIONS(781), - [sym_atx_h5_marker] = ACTIONS(784), - [sym_atx_h6_marker] = ACTIONS(787), - [sym__thematic_break] = ACTIONS(790), - [sym__list_marker_minus] = ACTIONS(610), - [sym__list_marker_plus] = ACTIONS(613), - [sym__list_marker_star] = ACTIONS(616), - [sym__list_marker_parenthesis] = ACTIONS(619), - [sym__list_marker_dot] = ACTIONS(622), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(610), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(613), - [sym__list_marker_star_dont_interrupt] = ACTIONS(616), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(619), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(622), - [sym__list_marker_example] = ACTIONS(625), - [sym__list_marker_example_dont_interrupt] = ACTIONS(625), - [sym__fenced_code_block_start_backtick] = ACTIONS(793), - [sym_minus_metadata] = ACTIONS(796), - [sym__pipe_table_start] = ACTIONS(799), - [sym__fenced_div_start] = ACTIONS(802), - [sym_ref_id_specifier] = ACTIONS(805), - [sym__code_span_start] = ACTIONS(643), - [sym__html_comment] = ACTIONS(551), - [sym__autolink] = ACTIONS(551), - [sym__highlight_span_start] = ACTIONS(646), - [sym__insert_span_start] = ACTIONS(649), - [sym__delete_span_start] = ACTIONS(652), - [sym__edit_comment_span_start] = ACTIONS(655), - [sym__single_quote_span_open] = ACTIONS(658), - [sym__double_quote_span_open] = ACTIONS(661), - [sym__shortcode_open_escaped] = ACTIONS(664), - [sym__shortcode_open] = ACTIONS(667), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(670), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(673), - [sym__cite_author_in_text] = ACTIONS(676), - [sym__cite_suppress_author] = ACTIONS(679), - [sym__strikeout_open] = ACTIONS(682), - [sym__subscript_open] = ACTIONS(685), - [sym__superscript_open] = ACTIONS(688), - [sym__inline_note_start_token] = ACTIONS(691), - [sym__strong_emphasis_open_star] = ACTIONS(694), - [sym__strong_emphasis_open_underscore] = ACTIONS(697), - [sym__emphasis_open_star] = ACTIONS(700), - [sym__emphasis_open_underscore] = ACTIONS(703), - [sym_inline_note_reference] = ACTIONS(551), - [sym_html_element] = ACTIONS(551), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(117), + [sym__atx_heading6] = STATE(126), + [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_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_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), + [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(81)] = { - [sym__block_not_section] = STATE(82), - [sym__section2] = STATE(548), - [sym__section3] = STATE(548), - [sym__section4] = STATE(548), - [sym__section5] = STATE(548), - [sym__section6] = STATE(548), - [sym__atx_heading2] = STATE(87), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [sym_pandoc_horizontal_rule] = STATE(82), - [sym_pandoc_paragraph] = STATE(82), - [sym_inline_ref_def] = STATE(82), - [sym_caption] = STATE(82), - [sym_pipe_table] = STATE(82), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(82), - [sym_pandoc_list] = STATE(82), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(82), - [sym_pandoc_div] = STATE(82), - [sym_note_definition_fenced_block] = STATE(82), - [sym__newline] = STATE(82), - [sym__soft_line_break] = STATE(82), - [sym_pandoc_line_break] = STATE(417), - [aux_sym__section1_repeat1] = STATE(82), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -31773,352 +31415,491 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(706), - [sym__block_quote_start] = ACTIONS(119), - [sym_atx_h1_marker] = ACTIONS(706), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(808), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(798), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(82)] = { - [sym__block_not_section] = STATE(80), - [sym__section2] = STATE(548), - [sym__section3] = STATE(548), - [sym__section4] = STATE(548), - [sym__section5] = STATE(548), - [sym__section6] = STATE(548), - [sym__atx_heading2] = STATE(87), + [STATE(81)] = { + [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__atx_heading2] = STATE(89), [sym__atx_heading3] = STATE(97), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(80), - [sym_pandoc_list] = STATE(80), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section1_repeat1] = STATE(80), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(710), - [sym__block_quote_start] = ACTIONS(119), - [sym_atx_h1_marker] = ACTIONS(710), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(810), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - }, - [STATE(83)] = { - [sym__block_not_section] = STATE(83), - [sym__section3] = STATE(445), - [sym__section4] = STATE(445), - [sym__section5] = STATE(445), - [sym__section6] = STATE(445), - [sym__atx_heading3] = STATE(93), - [sym__atx_heading4] = STATE(102), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [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(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(83), - [sym_pandoc_list] = STATE(83), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [sym__atx_heading4] = STATE(108), + [sym__atx_heading5] = STATE(117), + [sym__atx_heading6] = STATE(126), + [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_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_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), + [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), + [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(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__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(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__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(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_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), + [anon_sym_COLON] = ACTIONS(5), + [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(25), + [sym__soft_line_ending] = ACTIONS(27), + [sym__block_quote_start] = ACTIONS(29), + [sym_atx_h1_marker] = ACTIONS(702), + [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), + [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(57), + [sym_minus_metadata] = ACTIONS(802), + [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), + [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(83)] = { + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section2_repeat1] = STATE(83), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(842), - [sym__line_ending] = ACTIONS(845), - [sym__soft_line_ending] = ACTIONS(848), - [sym__block_close] = ACTIONS(851), - [sym__block_quote_start] = ACTIONS(853), - [sym_atx_h1_marker] = ACTIONS(851), - [sym_atx_h2_marker] = ACTIONS(851), - [sym_atx_h3_marker] = ACTIONS(856), - [sym_atx_h4_marker] = ACTIONS(859), - [sym_atx_h5_marker] = ACTIONS(862), - [sym_atx_h6_marker] = ACTIONS(865), - [sym__thematic_break] = ACTIONS(868), - [sym__list_marker_minus] = ACTIONS(871), - [sym__list_marker_plus] = ACTIONS(874), - [sym__list_marker_star] = ACTIONS(877), - [sym__list_marker_parenthesis] = ACTIONS(880), - [sym__list_marker_dot] = ACTIONS(883), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(871), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(874), - [sym__list_marker_star_dont_interrupt] = ACTIONS(877), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(880), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(883), - [sym__list_marker_example] = ACTIONS(886), - [sym__list_marker_example_dont_interrupt] = ACTIONS(886), - [sym__fenced_code_block_start_backtick] = ACTIONS(889), - [sym_minus_metadata] = ACTIONS(892), - [sym__pipe_table_start] = ACTIONS(895), - [sym__fenced_div_start] = ACTIONS(898), - [sym__fenced_div_end] = ACTIONS(851), - [sym_ref_id_specifier] = ACTIONS(901), - [sym__code_span_start] = ACTIONS(904), - [sym__html_comment] = ACTIONS(815), - [sym__autolink] = ACTIONS(815), - [sym__highlight_span_start] = ACTIONS(907), - [sym__insert_span_start] = ACTIONS(910), - [sym__delete_span_start] = ACTIONS(913), - [sym__edit_comment_span_start] = ACTIONS(916), - [sym__single_quote_span_open] = ACTIONS(919), - [sym__double_quote_span_open] = ACTIONS(922), - [sym__shortcode_open_escaped] = ACTIONS(925), - [sym__shortcode_open] = ACTIONS(928), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(931), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(934), - [sym__cite_author_in_text] = ACTIONS(937), - [sym__cite_suppress_author] = ACTIONS(940), - [sym__strikeout_open] = ACTIONS(943), - [sym__subscript_open] = ACTIONS(946), - [sym__superscript_open] = ACTIONS(949), - [sym__inline_note_start_token] = ACTIONS(952), - [sym__strong_emphasis_open_star] = ACTIONS(955), - [sym__strong_emphasis_open_underscore] = ACTIONS(958), - [sym__emphasis_open_star] = ACTIONS(961), - [sym__emphasis_open_underscore] = ACTIONS(964), - [sym_inline_note_reference] = ACTIONS(815), - [sym_html_element] = ACTIONS(815), + [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(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(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__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(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__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(84)] = { [sym__block_not_section] = STATE(83), - [sym__section3] = STATE(445), - [sym__section4] = STATE(445), - [sym__section5] = STATE(445), - [sym__section6] = STATE(445), + [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(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), [sym_pandoc_horizontal_rule] = STATE(83), @@ -32126,66 +31907,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(83), [sym_caption] = STATE(83), [sym_pipe_table] = STATE(83), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(83), [sym_pandoc_list] = STATE(83), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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(83), [sym_pandoc_div] = STATE(83), [sym_note_definition_fenced_block] = STATE(83), [sym__newline] = STATE(83), [sym__soft_line_break] = STATE(83), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section2_repeat1] = STATE(83), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -32196,418 +31976,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(967), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(967), - [sym_atx_h2_marker] = ACTIONS(967), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(969), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(967), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(85)] = { - [sym__block_not_section] = STATE(84), - [sym__section3] = STATE(445), - [sym__section4] = STATE(445), - [sym__section5] = STATE(445), - [sym__section6] = STATE(445), + [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(102), + [sym__atx_heading4] = STATE(103), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), - [sym_pandoc_horizontal_rule] = STATE(84), - [sym_pandoc_paragraph] = STATE(84), - [sym_inline_ref_def] = STATE(84), - [sym_caption] = STATE(84), - [sym_pipe_table] = STATE(84), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(84), - [sym_pandoc_list] = STATE(84), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [sym_pandoc_code_block] = STATE(84), - [sym_pandoc_div] = STATE(84), - [sym_note_definition_fenced_block] = STATE(84), - [sym__newline] = STATE(84), - [sym__soft_line_break] = STATE(84), - [sym_pandoc_line_break] = STATE(417), - [aux_sym__section2_repeat1] = STATE(84), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(971), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(971), - [sym_atx_h2_marker] = ACTIONS(971), - [sym_atx_h3_marker] = ACTIONS(195), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(973), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(971), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), + [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(89), - [sym__section3] = STATE(624), - [sym__section4] = STATE(624), - [sym__section5] = STATE(624), - [sym__section6] = STATE(624), + [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(106), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(127), - [sym_pandoc_horizontal_rule] = STATE(89), - [sym_pandoc_paragraph] = STATE(89), - [sym_inline_ref_def] = STATE(89), - [sym_caption] = STATE(89), - [sym_pipe_table] = STATE(89), - [sym__inlines] = STATE(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(89), - [sym_pandoc_list] = STATE(89), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [sym_pandoc_code_block] = STATE(89), - [sym_pandoc_div] = STATE(89), - [sym_note_definition_fenced_block] = STATE(89), - [sym__newline] = STATE(89), - [sym__soft_line_break] = STATE(89), - [sym_pandoc_line_break] = STATE(417), - [aux_sym__section2_repeat1] = STATE(89), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(971), - [anon_sym_COLON] = ACTIONS(5), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(971), - [sym_atx_h2_marker] = ACTIONS(971), - [sym_atx_h3_marker] = ACTIONS(37), - [sym_atx_h4_marker] = ACTIONS(39), - [sym_atx_h5_marker] = ACTIONS(41), - [sym_atx_h6_marker] = ACTIONS(43), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(975), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - }, - [STATE(87)] = { - [sym__block_not_section] = STATE(90), - [sym__section3] = STATE(550), - [sym__section4] = STATE(550), - [sym__section5] = STATE(550), - [sym__section6] = STATE(550), - [sym__atx_heading3] = STATE(97), [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(90), - [sym_pandoc_list] = STATE(90), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [sym__atx_heading5] = STATE(116), + [sym__atx_heading6] = STATE(125), + [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_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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [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), - [sym_pandoc_line_break] = STATE(417), - [aux_sym__section2_repeat1] = STATE(90), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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(87), + [sym_pandoc_div] = STATE(87), + [sym_note_definition_fenced_block] = STATE(87), + [sym__newline] = STATE(87), + [sym__soft_line_break] = STATE(87), + [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(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -32618,136 +32256,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(971), - [sym__block_quote_start] = ACTIONS(119), - [sym_atx_h1_marker] = ACTIONS(971), - [sym_atx_h2_marker] = ACTIONS(971), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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(69), + [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__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(964), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(88)] = { - [sym__block_not_section] = STATE(88), - [sym__section3] = STATE(550), - [sym__section4] = STATE(550), - [sym__section5] = STATE(550), - [sym__section6] = STATE(550), - [sym__atx_heading3] = STATE(97), + [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(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(88), - [sym_pandoc_list] = STATE(88), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [sym__atx_heading5] = STATE(116), + [sym__atx_heading6] = STATE(125), + [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_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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section2_repeat1] = STATE(88), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(979), + [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(87), + [sym_pandoc_div] = STATE(87), + [sym_note_definition_fenced_block] = STATE(87), + [sym__newline] = STATE(87), + [sym__soft_line_break] = STATE(87), + [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), @@ -32758,136 +32395,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(833), [anon_sym_PIPE] = ACTIONS(836), [aux_sym__prose_punctuation_token1] = ACTIONS(839), - [aux_sym_pandoc_line_break_token1] = ACTIONS(842), - [sym__line_ending] = ACTIONS(982), - [sym__soft_line_ending] = ACTIONS(985), - [sym__block_close] = ACTIONS(851), - [sym__block_quote_start] = ACTIONS(988), - [sym_atx_h1_marker] = ACTIONS(851), - [sym_atx_h2_marker] = ACTIONS(851), - [sym_atx_h3_marker] = ACTIONS(991), - [sym_atx_h4_marker] = ACTIONS(994), - [sym_atx_h5_marker] = ACTIONS(997), - [sym_atx_h6_marker] = ACTIONS(1000), - [sym__thematic_break] = ACTIONS(1003), - [sym__list_marker_minus] = ACTIONS(871), - [sym__list_marker_plus] = ACTIONS(874), - [sym__list_marker_star] = ACTIONS(877), - [sym__list_marker_parenthesis] = ACTIONS(880), - [sym__list_marker_dot] = ACTIONS(883), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(871), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(874), - [sym__list_marker_star_dont_interrupt] = ACTIONS(877), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(880), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(883), - [sym__list_marker_example] = ACTIONS(886), - [sym__list_marker_example_dont_interrupt] = ACTIONS(886), - [sym__fenced_code_block_start_backtick] = ACTIONS(1006), - [sym_minus_metadata] = ACTIONS(1009), - [sym__pipe_table_start] = ACTIONS(1012), - [sym__fenced_div_start] = ACTIONS(1015), - [sym_ref_id_specifier] = ACTIONS(1018), - [sym__code_span_start] = ACTIONS(904), + [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(907), - [sym__insert_span_start] = ACTIONS(910), - [sym__delete_span_start] = ACTIONS(913), - [sym__edit_comment_span_start] = ACTIONS(916), - [sym__single_quote_span_open] = ACTIONS(919), - [sym__double_quote_span_open] = ACTIONS(922), - [sym__shortcode_open_escaped] = ACTIONS(925), - [sym__shortcode_open] = ACTIONS(928), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(931), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(934), - [sym__cite_author_in_text] = ACTIONS(937), - [sym__cite_suppress_author] = ACTIONS(940), - [sym__strikeout_open] = ACTIONS(943), - [sym__subscript_open] = ACTIONS(946), - [sym__superscript_open] = ACTIONS(949), - [sym__inline_note_start_token] = ACTIONS(952), - [sym__strong_emphasis_open_star] = ACTIONS(955), - [sym__strong_emphasis_open_underscore] = ACTIONS(958), - [sym__emphasis_open_star] = ACTIONS(961), - [sym__emphasis_open_underscore] = ACTIONS(964), + [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(89)] = { - [sym__block_not_section] = STATE(91), - [sym__section3] = STATE(624), - [sym__section4] = STATE(624), - [sym__section5] = STATE(624), - [sym__section6] = STATE(624), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(106), + [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(127), - [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(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(91), - [sym_pandoc_list] = STATE(91), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), + [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(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section2_repeat1] = STATE(91), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(967), + [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_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -32899,135 +32535,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(967), - [sym_atx_h2_marker] = ACTIONS(967), - [sym_atx_h3_marker] = ACTIONS(37), - [sym_atx_h4_marker] = ACTIONS(39), - [sym_atx_h5_marker] = ACTIONS(41), - [sym_atx_h6_marker] = ACTIONS(43), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(1021), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(90)] = { + [STATE(89)] = { [sym__block_not_section] = STATE(88), - [sym__section3] = STATE(550), - [sym__section4] = STATE(550), - [sym__section5] = STATE(550), - [sym__section6] = STATE(550), + [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(109), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), + [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), + [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(88), [sym_pandoc_div] = STATE(88), [sym_note_definition_fenced_block] = STATE(88), [sym__newline] = STATE(88), [sym__soft_line_break] = STATE(88), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section2_repeat1] = STATE(88), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -33038,137 +32674,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(967), - [sym__block_quote_start] = ACTIONS(119), - [sym_atx_h1_marker] = ACTIONS(967), - [sym_atx_h2_marker] = ACTIONS(967), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(1023), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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_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), + [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(57), + [sym_minus_metadata] = ACTIONS(1010), + [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), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(91)] = { - [sym__block_not_section] = STATE(91), - [sym__section3] = STATE(624), - [sym__section4] = STATE(624), - [sym__section5] = STATE(624), - [sym__section6] = STATE(624), - [sym__atx_heading3] = STATE(100), - [sym__atx_heading4] = STATE(106), + [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(127), - [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(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(91), - [sym_pandoc_list] = STATE(91), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), + [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(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section2_repeat1] = STATE(91), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(851), - [anon_sym_COLON] = ACTIONS(1025), + [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), @@ -33179,135 +32813,273 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(833), [anon_sym_PIPE] = ACTIONS(836), [aux_sym__prose_punctuation_token1] = ACTIONS(839), - [aux_sym_pandoc_line_break_token1] = ACTIONS(842), - [sym__line_ending] = ACTIONS(1028), - [sym__soft_line_ending] = ACTIONS(1031), - [sym__block_quote_start] = ACTIONS(1034), - [sym_atx_h1_marker] = ACTIONS(851), - [sym_atx_h2_marker] = ACTIONS(851), - [sym_atx_h3_marker] = ACTIONS(1037), - [sym_atx_h4_marker] = ACTIONS(1040), - [sym_atx_h5_marker] = ACTIONS(1043), - [sym_atx_h6_marker] = ACTIONS(1046), - [sym__thematic_break] = ACTIONS(1049), - [sym__list_marker_minus] = ACTIONS(871), - [sym__list_marker_plus] = ACTIONS(874), - [sym__list_marker_star] = ACTIONS(877), - [sym__list_marker_parenthesis] = ACTIONS(880), - [sym__list_marker_dot] = ACTIONS(883), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(871), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(874), - [sym__list_marker_star_dont_interrupt] = ACTIONS(877), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(880), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(883), - [sym__list_marker_example] = ACTIONS(886), - [sym__list_marker_example_dont_interrupt] = ACTIONS(886), - [sym__fenced_code_block_start_backtick] = ACTIONS(1052), - [sym_minus_metadata] = ACTIONS(1055), - [sym__pipe_table_start] = ACTIONS(1058), - [sym__fenced_div_start] = ACTIONS(1061), - [sym_ref_id_specifier] = ACTIONS(1064), - [sym__code_span_start] = ACTIONS(904), + [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(907), - [sym__insert_span_start] = ACTIONS(910), - [sym__delete_span_start] = ACTIONS(913), - [sym__edit_comment_span_start] = ACTIONS(916), - [sym__single_quote_span_open] = ACTIONS(919), - [sym__double_quote_span_open] = ACTIONS(922), - [sym__shortcode_open_escaped] = ACTIONS(925), - [sym__shortcode_open] = ACTIONS(928), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(931), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(934), - [sym__cite_author_in_text] = ACTIONS(937), - [sym__cite_suppress_author] = ACTIONS(940), - [sym__strikeout_open] = ACTIONS(943), - [sym__subscript_open] = ACTIONS(946), - [sym__superscript_open] = ACTIONS(949), - [sym__inline_note_start_token] = ACTIONS(952), - [sym__strong_emphasis_open_star] = ACTIONS(955), - [sym__strong_emphasis_open_underscore] = ACTIONS(958), - [sym__emphasis_open_star] = ACTIONS(961), - [sym__emphasis_open_underscore] = ACTIONS(964), + [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(92)] = { - [sym__block_not_section] = STATE(94), - [sym__section4] = STATE(449), - [sym__section5] = STATE(449), - [sym__section6] = STATE(449), - [sym__atx_heading4] = STATE(102), - [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(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(94), - [sym_pandoc_list] = STATE(94), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), - [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [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), - [sym_pandoc_line_break] = STATE(417), - [aux_sym__section3_repeat1] = STATE(94), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), - [sym_entity_reference] = ACTIONS(7), - [sym_numeric_character_reference] = ACTIONS(7), + [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__atx_heading3] = STATE(100), + [sym__atx_heading4] = STATE(109), + [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_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(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__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(1054), + [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(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_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(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), @@ -33316,68 +33088,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(1067), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(1067), - [sym_atx_h2_marker] = ACTIONS(1067), - [sym_atx_h3_marker] = ACTIONS(1067), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(1069), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(1067), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(93)] = { [sym__block_not_section] = STATE(92), - [sym__section4] = STATE(449), - [sym__section5] = STATE(449), - [sym__section6] = STATE(449), - [sym__atx_heading4] = STATE(102), + [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), @@ -33385,66 +33157,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(92), [sym_caption] = STATE(92), [sym_pipe_table] = STATE(92), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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(92), [sym_pandoc_div] = STATE(92), [sym_note_definition_fenced_block] = STATE(92), [sym__newline] = STATE(92), [sym__soft_line_break] = STATE(92), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section3_repeat1] = STATE(92), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -33455,68 +33226,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(1071), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(1071), - [sym_atx_h2_marker] = ACTIONS(1071), - [sym_atx_h3_marker] = ACTIONS(1071), - [sym_atx_h4_marker] = ACTIONS(197), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(1073), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(1071), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(94)] = { [sym__block_not_section] = STATE(94), - [sym__section4] = STATE(449), - [sym__section5] = STATE(449), - [sym__section6] = STATE(449), - [sym__atx_heading4] = STATE(102), + [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), @@ -33524,206 +33295,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(94), [sym_caption] = STATE(94), [sym_pipe_table] = STATE(94), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section3_repeat1] = STATE(94), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(1075), - [sym_entity_reference] = ACTIONS(1078), - [sym_numeric_character_reference] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1090), - [anon_sym_LBRACE] = ACTIONS(1093), - [aux_sym_pandoc_str_token1] = ACTIONS(1096), - [anon_sym_PIPE] = ACTIONS(1099), - [aux_sym__prose_punctuation_token1] = ACTIONS(1102), - [aux_sym_pandoc_line_break_token1] = ACTIONS(1105), - [sym__line_ending] = ACTIONS(1108), - [sym__soft_line_ending] = ACTIONS(1111), - [sym__block_close] = ACTIONS(1114), - [sym__block_quote_start] = ACTIONS(1116), - [sym_atx_h1_marker] = ACTIONS(1114), - [sym_atx_h2_marker] = ACTIONS(1114), - [sym_atx_h3_marker] = ACTIONS(1114), - [sym_atx_h4_marker] = ACTIONS(1119), - [sym_atx_h5_marker] = ACTIONS(1122), - [sym_atx_h6_marker] = ACTIONS(1125), - [sym__thematic_break] = ACTIONS(1128), - [sym__list_marker_minus] = ACTIONS(1131), - [sym__list_marker_plus] = ACTIONS(1134), - [sym__list_marker_star] = ACTIONS(1137), - [sym__list_marker_parenthesis] = ACTIONS(1140), - [sym__list_marker_dot] = ACTIONS(1143), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1131), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1134), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1137), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1140), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1143), - [sym__list_marker_example] = ACTIONS(1146), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1146), - [sym__fenced_code_block_start_backtick] = ACTIONS(1149), - [sym_minus_metadata] = ACTIONS(1152), - [sym__pipe_table_start] = ACTIONS(1155), - [sym__fenced_div_start] = ACTIONS(1158), - [sym__fenced_div_end] = ACTIONS(1114), - [sym_ref_id_specifier] = ACTIONS(1161), - [sym__code_span_start] = ACTIONS(1164), - [sym__html_comment] = ACTIONS(1078), - [sym__autolink] = ACTIONS(1078), - [sym__highlight_span_start] = ACTIONS(1167), - [sym__insert_span_start] = ACTIONS(1170), - [sym__delete_span_start] = ACTIONS(1173), - [sym__edit_comment_span_start] = ACTIONS(1176), - [sym__single_quote_span_open] = ACTIONS(1179), - [sym__double_quote_span_open] = ACTIONS(1182), - [sym__shortcode_open_escaped] = ACTIONS(1185), - [sym__shortcode_open] = ACTIONS(1188), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1191), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1194), - [sym__cite_author_in_text] = ACTIONS(1197), - [sym__cite_suppress_author] = ACTIONS(1200), - [sym__strikeout_open] = ACTIONS(1203), - [sym__subscript_open] = ACTIONS(1206), - [sym__superscript_open] = ACTIONS(1209), - [sym__inline_note_start_token] = ACTIONS(1212), - [sym__strong_emphasis_open_star] = ACTIONS(1215), - [sym__strong_emphasis_open_underscore] = ACTIONS(1218), - [sym__emphasis_open_star] = ACTIONS(1221), - [sym__emphasis_open_underscore] = ACTIONS(1224), - [sym_inline_note_reference] = ACTIONS(1078), - [sym_html_element] = ACTIONS(1078), + [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(99), - [sym__section4] = STATE(495), - [sym__section5] = STATE(495), - [sym__section6] = STATE(495), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(127), - [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(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(99), - [sym_pandoc_list] = STATE(99), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section3_repeat1] = STATE(99), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1067), - [anon_sym_COLON] = ACTIONS(5), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -33734,133 +33502,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(1067), - [sym_atx_h2_marker] = ACTIONS(1067), - [sym_atx_h3_marker] = ACTIONS(1067), - [sym_atx_h4_marker] = ACTIONS(39), - [sym_atx_h5_marker] = ACTIONS(41), - [sym_atx_h6_marker] = ACTIONS(43), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(1227), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), + [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__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(1213), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(96)] = { - [sym__block_not_section] = STATE(98), - [sym__section4] = STATE(554), - [sym__section5] = STATE(554), - [sym__section6] = STATE(554), + [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(118), - [sym__atx_heading6] = STATE(122), + [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), + [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), + }, + [STATE(97)] = { + [sym__block_not_section] = STATE(98), + [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(98), [sym_pandoc_paragraph] = STATE(98), [sym_inline_ref_def] = STATE(98), [sym_caption] = STATE(98), [sym_pipe_table] = STATE(98), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section3_repeat1] = STATE(98), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -33871,134 +33777,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1067), - [sym__block_quote_start] = ACTIONS(119), - [sym_atx_h1_marker] = ACTIONS(1067), - [sym_atx_h2_marker] = ACTIONS(1067), - [sym_atx_h3_marker] = ACTIONS(1067), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(1229), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(97)] = { - [sym__block_not_section] = STATE(96), - [sym__section4] = STATE(554), - [sym__section5] = STATE(554), - [sym__section6] = STATE(554), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(96), - [sym_pandoc_list] = STATE(96), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section3_repeat1] = STATE(96), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [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), + [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -34009,411 +33914,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1071), - [sym__block_quote_start] = ACTIONS(119), - [sym_atx_h1_marker] = ACTIONS(1071), - [sym_atx_h2_marker] = ACTIONS(1071), - [sym_atx_h3_marker] = ACTIONS(1071), - [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(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(1231), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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_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), + [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(57), + [sym_minus_metadata] = ACTIONS(1256), + [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), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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), - }, - [STATE(98)] = { - [sym__block_not_section] = STATE(98), - [sym__section4] = STATE(554), - [sym__section5] = STATE(554), - [sym__section6] = STATE(554), - [sym__atx_heading4] = STATE(109), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(98), - [sym_pandoc_list] = STATE(98), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [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), - [sym_pandoc_line_break] = STATE(417), - [aux_sym__section3_repeat1] = STATE(98), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(1233), - [sym_entity_reference] = ACTIONS(1078), - [sym_numeric_character_reference] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1090), - [anon_sym_LBRACE] = ACTIONS(1093), - [aux_sym_pandoc_str_token1] = ACTIONS(1096), - [anon_sym_PIPE] = ACTIONS(1099), - [aux_sym__prose_punctuation_token1] = ACTIONS(1102), - [aux_sym_pandoc_line_break_token1] = ACTIONS(1105), - [sym__line_ending] = ACTIONS(1236), - [sym__soft_line_ending] = ACTIONS(1239), - [sym__block_close] = ACTIONS(1114), - [sym__block_quote_start] = ACTIONS(1242), - [sym_atx_h1_marker] = ACTIONS(1114), - [sym_atx_h2_marker] = ACTIONS(1114), - [sym_atx_h3_marker] = ACTIONS(1114), - [sym_atx_h4_marker] = ACTIONS(1245), - [sym_atx_h5_marker] = ACTIONS(1248), - [sym_atx_h6_marker] = ACTIONS(1251), - [sym__thematic_break] = ACTIONS(1254), - [sym__list_marker_minus] = ACTIONS(1131), - [sym__list_marker_plus] = ACTIONS(1134), - [sym__list_marker_star] = ACTIONS(1137), - [sym__list_marker_parenthesis] = ACTIONS(1140), - [sym__list_marker_dot] = ACTIONS(1143), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1131), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1134), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1137), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1140), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1143), - [sym__list_marker_example] = ACTIONS(1146), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1146), - [sym__fenced_code_block_start_backtick] = ACTIONS(1257), - [sym_minus_metadata] = ACTIONS(1260), - [sym__pipe_table_start] = ACTIONS(1263), - [sym__fenced_div_start] = ACTIONS(1266), - [sym_ref_id_specifier] = ACTIONS(1269), - [sym__code_span_start] = ACTIONS(1164), - [sym__html_comment] = ACTIONS(1078), - [sym__autolink] = ACTIONS(1078), - [sym__highlight_span_start] = ACTIONS(1167), - [sym__insert_span_start] = ACTIONS(1170), - [sym__delete_span_start] = ACTIONS(1173), - [sym__edit_comment_span_start] = ACTIONS(1176), - [sym__single_quote_span_open] = ACTIONS(1179), - [sym__double_quote_span_open] = ACTIONS(1182), - [sym__shortcode_open_escaped] = ACTIONS(1185), - [sym__shortcode_open] = ACTIONS(1188), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1191), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1194), - [sym__cite_author_in_text] = ACTIONS(1197), - [sym__cite_suppress_author] = ACTIONS(1200), - [sym__strikeout_open] = ACTIONS(1203), - [sym__subscript_open] = ACTIONS(1206), - [sym__superscript_open] = ACTIONS(1209), - [sym__inline_note_start_token] = ACTIONS(1212), - [sym__strong_emphasis_open_star] = ACTIONS(1215), - [sym__strong_emphasis_open_underscore] = ACTIONS(1218), - [sym__emphasis_open_star] = ACTIONS(1221), - [sym__emphasis_open_underscore] = ACTIONS(1224), - [sym_inline_note_reference] = ACTIONS(1078), - [sym_html_element] = ACTIONS(1078), + [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(99)] = { [sym__block_not_section] = STATE(99), - [sym__section4] = STATE(495), - [sym__section5] = STATE(495), - [sym__section6] = STATE(495), - [sym__atx_heading4] = STATE(106), + [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(127), + [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(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), + [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(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section3_repeat1] = STATE(99), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1114), - [anon_sym_COLON] = ACTIONS(1272), - [sym_entity_reference] = ACTIONS(1078), - [sym_numeric_character_reference] = ACTIONS(1078), - [anon_sym_LBRACK] = ACTIONS(1081), - [anon_sym_BANG_LBRACK] = ACTIONS(1084), - [anon_sym_DOLLAR] = ACTIONS(1087), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1090), - [anon_sym_LBRACE] = ACTIONS(1093), - [aux_sym_pandoc_str_token1] = ACTIONS(1096), - [anon_sym_PIPE] = ACTIONS(1099), - [aux_sym__prose_punctuation_token1] = ACTIONS(1102), - [aux_sym_pandoc_line_break_token1] = ACTIONS(1105), - [sym__line_ending] = ACTIONS(1275), - [sym__soft_line_ending] = ACTIONS(1278), - [sym__block_quote_start] = ACTIONS(1281), - [sym_atx_h1_marker] = ACTIONS(1114), - [sym_atx_h2_marker] = ACTIONS(1114), - [sym_atx_h3_marker] = ACTIONS(1114), - [sym_atx_h4_marker] = ACTIONS(1284), - [sym_atx_h5_marker] = ACTIONS(1287), - [sym_atx_h6_marker] = ACTIONS(1290), - [sym__thematic_break] = ACTIONS(1293), - [sym__list_marker_minus] = ACTIONS(1131), - [sym__list_marker_plus] = ACTIONS(1134), - [sym__list_marker_star] = ACTIONS(1137), - [sym__list_marker_parenthesis] = ACTIONS(1140), - [sym__list_marker_dot] = ACTIONS(1143), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1131), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1134), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1137), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1140), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1143), - [sym__list_marker_example] = ACTIONS(1146), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1146), - [sym__fenced_code_block_start_backtick] = ACTIONS(1296), - [sym_minus_metadata] = ACTIONS(1299), - [sym__pipe_table_start] = ACTIONS(1302), - [sym__fenced_div_start] = ACTIONS(1305), - [sym_ref_id_specifier] = ACTIONS(1308), - [sym__code_span_start] = ACTIONS(1164), - [sym__html_comment] = ACTIONS(1078), - [sym__autolink] = ACTIONS(1078), - [sym__highlight_span_start] = ACTIONS(1167), - [sym__insert_span_start] = ACTIONS(1170), - [sym__delete_span_start] = ACTIONS(1173), - [sym__edit_comment_span_start] = ACTIONS(1176), - [sym__single_quote_span_open] = ACTIONS(1179), - [sym__double_quote_span_open] = ACTIONS(1182), - [sym__shortcode_open_escaped] = ACTIONS(1185), - [sym__shortcode_open] = ACTIONS(1188), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1191), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1194), - [sym__cite_author_in_text] = ACTIONS(1197), - [sym__cite_suppress_author] = ACTIONS(1200), - [sym__strikeout_open] = ACTIONS(1203), - [sym__subscript_open] = ACTIONS(1206), - [sym__superscript_open] = ACTIONS(1209), - [sym__inline_note_start_token] = ACTIONS(1212), - [sym__strong_emphasis_open_star] = ACTIONS(1215), - [sym__strong_emphasis_open_underscore] = ACTIONS(1218), - [sym__emphasis_open_star] = ACTIONS(1221), - [sym__emphasis_open_underscore] = ACTIONS(1224), - [sym_inline_note_reference] = ACTIONS(1078), - [sym_html_element] = ACTIONS(1078), + [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(495), - [sym__section5] = STATE(495), - [sym__section6] = STATE(495), - [sym__atx_heading4] = STATE(106), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(127), + [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(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section3_repeat1] = STATE(95), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1071), - [anon_sym_COLON] = ACTIONS(5), + [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), @@ -34424,201 +34187,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(1071), - [sym_atx_h2_marker] = ACTIONS(1071), - [sym_atx_h3_marker] = ACTIONS(1071), - [sym_atx_h4_marker] = ACTIONS(39), - [sym_atx_h5_marker] = ACTIONS(41), - [sym_atx_h6_marker] = ACTIONS(43), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(1311), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), + [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__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(1297), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(101)] = { - [sym__block_not_section] = STATE(103), - [sym__section5] = STATE(453), - [sym__section6] = STATE(453), - [sym__atx_heading5] = STATE(111), - [sym__atx_heading6] = STATE(119), - [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(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(103), - [sym_pandoc_list] = STATE(103), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), - [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section4_repeat1] = STATE(103), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(1313), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(1313), - [sym_atx_h2_marker] = ACTIONS(1313), - [sym_atx_h3_marker] = ACTIONS(1313), - [sym_atx_h4_marker] = ACTIONS(1313), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(1315), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(1313), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - }, - [STATE(102)] = { [sym__block_not_section] = STATE(101), - [sym__section5] = STATE(453), - [sym__section6] = STATE(453), + [sym__section5] = STATE(382), + [sym__section6] = STATE(382), [sym__atx_heading5] = STATE(111), [sym__atx_heading6] = STATE(119), [sym_pandoc_horizontal_rule] = STATE(101), @@ -34626,340 +34253,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_inline_ref_def] = STATE(101), [sym_caption] = STATE(101), [sym_pipe_table] = STATE(101), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section4_repeat1] = STATE(101), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(1317), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(1317), - [sym_atx_h2_marker] = ACTIONS(1317), - [sym_atx_h3_marker] = ACTIONS(1317), - [sym_atx_h4_marker] = ACTIONS(1317), - [sym_atx_h5_marker] = ACTIONS(199), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(1319), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(1317), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), + [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(103)] = { - [sym__block_not_section] = STATE(103), - [sym__section5] = STATE(453), - [sym__section6] = STATE(453), + [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(103), - [sym_pandoc_paragraph] = STATE(103), - [sym_inline_ref_def] = STATE(103), - [sym_caption] = STATE(103), - [sym_pipe_table] = STATE(103), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(103), - [sym_pandoc_list] = STATE(103), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), - [sym_list_marker_plus] = STATE(15), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section4_repeat1] = STATE(103), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(1321), - [sym_entity_reference] = ACTIONS(1324), - [sym_numeric_character_reference] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_BANG_LBRACK] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1339), - [aux_sym_pandoc_str_token1] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1345), - [aux_sym__prose_punctuation_token1] = ACTIONS(1348), - [aux_sym_pandoc_line_break_token1] = ACTIONS(1351), - [sym__line_ending] = ACTIONS(1354), - [sym__soft_line_ending] = ACTIONS(1357), - [sym__block_close] = ACTIONS(1360), - [sym__block_quote_start] = ACTIONS(1362), - [sym_atx_h1_marker] = ACTIONS(1360), - [sym_atx_h2_marker] = ACTIONS(1360), - [sym_atx_h3_marker] = ACTIONS(1360), - [sym_atx_h4_marker] = ACTIONS(1360), - [sym_atx_h5_marker] = ACTIONS(1365), - [sym_atx_h6_marker] = ACTIONS(1368), - [sym__thematic_break] = ACTIONS(1371), - [sym__list_marker_minus] = ACTIONS(1374), - [sym__list_marker_plus] = ACTIONS(1377), - [sym__list_marker_star] = ACTIONS(1380), - [sym__list_marker_parenthesis] = ACTIONS(1383), - [sym__list_marker_dot] = ACTIONS(1386), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1374), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1377), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1380), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1383), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_example] = ACTIONS(1389), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1389), - [sym__fenced_code_block_start_backtick] = ACTIONS(1392), - [sym_minus_metadata] = ACTIONS(1395), - [sym__pipe_table_start] = ACTIONS(1398), - [sym__fenced_div_start] = ACTIONS(1401), - [sym__fenced_div_end] = ACTIONS(1360), - [sym_ref_id_specifier] = ACTIONS(1404), - [sym__code_span_start] = ACTIONS(1407), - [sym__html_comment] = ACTIONS(1324), - [sym__autolink] = ACTIONS(1324), - [sym__highlight_span_start] = ACTIONS(1410), - [sym__insert_span_start] = ACTIONS(1413), - [sym__delete_span_start] = ACTIONS(1416), - [sym__edit_comment_span_start] = ACTIONS(1419), - [sym__single_quote_span_open] = ACTIONS(1422), - [sym__double_quote_span_open] = ACTIONS(1425), - [sym__shortcode_open_escaped] = ACTIONS(1428), - [sym__shortcode_open] = ACTIONS(1431), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1434), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1437), - [sym__cite_author_in_text] = ACTIONS(1440), - [sym__cite_suppress_author] = ACTIONS(1443), - [sym__strikeout_open] = ACTIONS(1446), - [sym__subscript_open] = ACTIONS(1449), - [sym__superscript_open] = ACTIONS(1452), - [sym__inline_note_start_token] = ACTIONS(1455), - [sym__strong_emphasis_open_star] = ACTIONS(1458), - [sym__strong_emphasis_open_underscore] = ACTIONS(1461), - [sym__emphasis_open_star] = ACTIONS(1464), - [sym__emphasis_open_underscore] = ACTIONS(1467), - [sym_inline_note_reference] = ACTIONS(1324), - [sym_html_element] = ACTIONS(1324), + [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(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(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__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(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__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(104)] = { - [sym__block_not_section] = STATE(108), - [sym__section5] = STATE(556), - [sym__section6] = STATE(556), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), - [sym_pandoc_horizontal_rule] = STATE(108), - [sym_pandoc_paragraph] = STATE(108), - [sym_inline_ref_def] = STATE(108), - [sym_caption] = STATE(108), - [sym_pipe_table] = STATE(108), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(108), - [sym_pandoc_list] = STATE(108), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(108), - [sym_pandoc_div] = STATE(108), - [sym_note_definition_fenced_block] = STATE(108), - [sym__newline] = STATE(108), - [sym__soft_line_break] = STATE(108), - [sym_pandoc_line_break] = STATE(417), - [aux_sym__section4_repeat1] = STATE(108), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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_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_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_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), + [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_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), @@ -34970,133 +34594,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1313), - [sym__block_quote_start] = ACTIONS(119), - [sym_atx_h1_marker] = ACTIONS(1313), - [sym_atx_h2_marker] = ACTIONS(1313), - [sym_atx_h3_marker] = ACTIONS(1313), - [sym_atx_h4_marker] = ACTIONS(1313), - [sym_atx_h5_marker] = ACTIONS(129), - [sym_atx_h6_marker] = ACTIONS(131), - [sym__thematic_break] = ACTIONS(133), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(1470), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(105)] = { - [sym__block_not_section] = STATE(107), - [sym__section5] = STATE(509), - [sym__section6] = STATE(509), - [sym__atx_heading5] = STATE(117), - [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(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(107), - [sym_pandoc_list] = STATE(107), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section4_repeat1] = STATE(107), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1313), - [anon_sym_COLON] = ACTIONS(5), + [STATE(104)] = { + [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(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -35107,131 +34730,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(1313), - [sym_atx_h2_marker] = ACTIONS(1313), - [sym_atx_h3_marker] = ACTIONS(1313), - [sym_atx_h4_marker] = ACTIONS(1313), - [sym_atx_h5_marker] = ACTIONS(41), - [sym_atx_h6_marker] = ACTIONS(43), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(1472), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), + [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__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(1453), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(106)] = { + [STATE(105)] = { [sym__block_not_section] = STATE(105), - [sym__section5] = STATE(509), - [sym__section6] = STATE(509), - [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(127), + [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(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section4_repeat1] = STATE(105), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1317), + [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_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), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -35243,403 +35001,400 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(1317), - [sym_atx_h2_marker] = ACTIONS(1317), - [sym_atx_h3_marker] = ACTIONS(1317), - [sym_atx_h4_marker] = ACTIONS(1317), - [sym_atx_h5_marker] = ACTIONS(41), - [sym_atx_h6_marker] = ACTIONS(43), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(1474), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), + [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_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), + [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(57), + [sym_minus_metadata] = ACTIONS(1491), + [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), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(107)] = { [sym__block_not_section] = STATE(107), - [sym__section5] = STATE(509), - [sym__section6] = STATE(509), + [sym__section5] = STATE(488), + [sym__section6] = STATE(488), [sym__atx_heading5] = STATE(117), - [sym__atx_heading6] = STATE(127), + [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(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), + [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(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section4_repeat1] = STATE(107), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1360), - [anon_sym_COLON] = ACTIONS(1476), - [sym_entity_reference] = ACTIONS(1324), - [sym_numeric_character_reference] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_BANG_LBRACK] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1339), - [aux_sym_pandoc_str_token1] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1345), - [aux_sym__prose_punctuation_token1] = ACTIONS(1348), - [aux_sym_pandoc_line_break_token1] = ACTIONS(1351), - [sym__line_ending] = ACTIONS(1479), - [sym__soft_line_ending] = ACTIONS(1482), - [sym__block_quote_start] = ACTIONS(1485), - [sym_atx_h1_marker] = ACTIONS(1360), - [sym_atx_h2_marker] = ACTIONS(1360), - [sym_atx_h3_marker] = ACTIONS(1360), - [sym_atx_h4_marker] = ACTIONS(1360), - [sym_atx_h5_marker] = ACTIONS(1488), - [sym_atx_h6_marker] = ACTIONS(1491), - [sym__thematic_break] = ACTIONS(1494), - [sym__list_marker_minus] = ACTIONS(1374), - [sym__list_marker_plus] = ACTIONS(1377), - [sym__list_marker_star] = ACTIONS(1380), - [sym__list_marker_parenthesis] = ACTIONS(1383), - [sym__list_marker_dot] = ACTIONS(1386), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1374), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1377), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1380), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1383), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_example] = ACTIONS(1389), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1389), - [sym__fenced_code_block_start_backtick] = ACTIONS(1497), - [sym_minus_metadata] = ACTIONS(1500), - [sym__pipe_table_start] = ACTIONS(1503), - [sym__fenced_div_start] = ACTIONS(1506), - [sym_ref_id_specifier] = ACTIONS(1509), - [sym__code_span_start] = ACTIONS(1407), - [sym__html_comment] = ACTIONS(1324), - [sym__autolink] = ACTIONS(1324), - [sym__highlight_span_start] = ACTIONS(1410), - [sym__insert_span_start] = ACTIONS(1413), - [sym__delete_span_start] = ACTIONS(1416), - [sym__edit_comment_span_start] = ACTIONS(1419), - [sym__single_quote_span_open] = ACTIONS(1422), - [sym__double_quote_span_open] = ACTIONS(1425), - [sym__shortcode_open_escaped] = ACTIONS(1428), - [sym__shortcode_open] = ACTIONS(1431), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1434), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1437), - [sym__cite_author_in_text] = ACTIONS(1440), - [sym__cite_suppress_author] = ACTIONS(1443), - [sym__strikeout_open] = ACTIONS(1446), - [sym__subscript_open] = ACTIONS(1449), - [sym__superscript_open] = ACTIONS(1452), - [sym__inline_note_start_token] = ACTIONS(1455), - [sym__strong_emphasis_open_star] = ACTIONS(1458), - [sym__strong_emphasis_open_underscore] = ACTIONS(1461), - [sym__emphasis_open_star] = ACTIONS(1464), - [sym__emphasis_open_underscore] = ACTIONS(1467), - [sym_inline_note_reference] = ACTIONS(1324), - [sym_html_element] = ACTIONS(1324), + [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(108), - [sym__section5] = STATE(556), - [sym__section6] = STATE(556), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), - [sym_pandoc_horizontal_rule] = STATE(108), - [sym_pandoc_paragraph] = STATE(108), - [sym_inline_ref_def] = STATE(108), - [sym_caption] = STATE(108), - [sym_pipe_table] = STATE(108), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(108), - [sym_pandoc_list] = STATE(108), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(108), - [sym_pandoc_div] = STATE(108), - [sym_note_definition_fenced_block] = STATE(108), - [sym__newline] = STATE(108), - [sym__soft_line_break] = STATE(108), - [sym_pandoc_line_break] = STATE(417), - [aux_sym__section4_repeat1] = STATE(108), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(1512), - [sym_entity_reference] = ACTIONS(1324), - [sym_numeric_character_reference] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1327), - [anon_sym_BANG_LBRACK] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1333), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1339), - [aux_sym_pandoc_str_token1] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1345), - [aux_sym__prose_punctuation_token1] = ACTIONS(1348), - [aux_sym_pandoc_line_break_token1] = ACTIONS(1351), - [sym__line_ending] = ACTIONS(1515), - [sym__soft_line_ending] = ACTIONS(1518), - [sym__block_close] = ACTIONS(1360), - [sym__block_quote_start] = ACTIONS(1521), - [sym_atx_h1_marker] = ACTIONS(1360), - [sym_atx_h2_marker] = ACTIONS(1360), - [sym_atx_h3_marker] = ACTIONS(1360), - [sym_atx_h4_marker] = ACTIONS(1360), - [sym_atx_h5_marker] = ACTIONS(1524), - [sym_atx_h6_marker] = ACTIONS(1527), - [sym__thematic_break] = ACTIONS(1530), - [sym__list_marker_minus] = ACTIONS(1374), - [sym__list_marker_plus] = ACTIONS(1377), - [sym__list_marker_star] = ACTIONS(1380), - [sym__list_marker_parenthesis] = ACTIONS(1383), - [sym__list_marker_dot] = ACTIONS(1386), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1374), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1377), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1380), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1383), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1386), - [sym__list_marker_example] = ACTIONS(1389), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1389), - [sym__fenced_code_block_start_backtick] = ACTIONS(1533), - [sym_minus_metadata] = ACTIONS(1536), - [sym__pipe_table_start] = ACTIONS(1539), - [sym__fenced_div_start] = ACTIONS(1542), - [sym_ref_id_specifier] = ACTIONS(1545), - [sym__code_span_start] = ACTIONS(1407), - [sym__html_comment] = ACTIONS(1324), - [sym__autolink] = ACTIONS(1324), - [sym__highlight_span_start] = ACTIONS(1410), - [sym__insert_span_start] = ACTIONS(1413), - [sym__delete_span_start] = ACTIONS(1416), - [sym__edit_comment_span_start] = ACTIONS(1419), - [sym__single_quote_span_open] = ACTIONS(1422), - [sym__double_quote_span_open] = ACTIONS(1425), - [sym__shortcode_open_escaped] = ACTIONS(1428), - [sym__shortcode_open] = ACTIONS(1431), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1434), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1437), - [sym__cite_author_in_text] = ACTIONS(1440), - [sym__cite_suppress_author] = ACTIONS(1443), - [sym__strikeout_open] = ACTIONS(1446), - [sym__subscript_open] = ACTIONS(1449), - [sym__superscript_open] = ACTIONS(1452), - [sym__inline_note_start_token] = ACTIONS(1455), - [sym__strong_emphasis_open_star] = ACTIONS(1458), - [sym__strong_emphasis_open_underscore] = ACTIONS(1461), - [sym__emphasis_open_star] = ACTIONS(1464), - [sym__emphasis_open_underscore] = ACTIONS(1467), - [sym_inline_note_reference] = ACTIONS(1324), - [sym_html_element] = ACTIONS(1324), + [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), + [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(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__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(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__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(109)] = { [sym__block_not_section] = STATE(104), - [sym__section5] = STATE(556), - [sym__section6] = STATE(556), - [sym__atx_heading5] = STATE(118), - [sym__atx_heading6] = STATE(122), + [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section4_repeat1] = STATE(104), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), @@ -35650,130 +35405,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1317), - [sym__block_quote_start] = ACTIONS(119), - [sym_atx_h1_marker] = ACTIONS(1317), - [sym_atx_h2_marker] = ACTIONS(1317), - [sym_atx_h3_marker] = ACTIONS(1317), - [sym_atx_h4_marker] = ACTIONS(1317), - [sym_atx_h5_marker] = ACTIONS(129), - [sym_atx_h6_marker] = ACTIONS(131), - [sym__thematic_break] = ACTIONS(133), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(1548), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(1531), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(110)] = { + [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(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(466), + [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(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section5_repeat1] = STATE(112), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -35784,131 +35672,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(1550), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(1550), - [sym_atx_h2_marker] = ACTIONS(1550), - [sym_atx_h3_marker] = ACTIONS(1550), - [sym_atx_h4_marker] = ACTIONS(1550), - [sym_atx_h5_marker] = ACTIONS(1550), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(1552), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(1550), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(111)] = { + [STATE(112)] = { [sym__block_not_section] = STATE(110), - [sym__section6] = STATE(466), + [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(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section5_repeat1] = STATE(110), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -35919,266 +35806,130 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(1554), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(1554), - [sym_atx_h2_marker] = ACTIONS(1554), - [sym_atx_h3_marker] = ACTIONS(1554), - [sym_atx_h4_marker] = ACTIONS(1554), - [sym_atx_h5_marker] = ACTIONS(1554), - [sym_atx_h6_marker] = ACTIONS(201), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(1556), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(1554), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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), - }, - [STATE(112)] = { - [sym__block_not_section] = STATE(112), - [sym__section6] = STATE(466), - [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(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(112), - [sym_pandoc_list] = STATE(112), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), - [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [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), - [sym_pandoc_line_break] = STATE(417), - [aux_sym__section5_repeat1] = STATE(112), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(1558), - [sym_entity_reference] = ACTIONS(1561), - [sym_numeric_character_reference] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_BANG_LBRACK] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1570), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1576), - [aux_sym_pandoc_str_token1] = ACTIONS(1579), - [anon_sym_PIPE] = ACTIONS(1582), - [aux_sym__prose_punctuation_token1] = ACTIONS(1585), - [aux_sym_pandoc_line_break_token1] = ACTIONS(1588), - [sym__line_ending] = ACTIONS(1591), - [sym__soft_line_ending] = ACTIONS(1594), - [sym__block_close] = ACTIONS(1597), - [sym__block_quote_start] = ACTIONS(1599), - [sym_atx_h1_marker] = ACTIONS(1597), - [sym_atx_h2_marker] = ACTIONS(1597), - [sym_atx_h3_marker] = ACTIONS(1597), - [sym_atx_h4_marker] = ACTIONS(1597), - [sym_atx_h5_marker] = ACTIONS(1597), - [sym_atx_h6_marker] = ACTIONS(1602), - [sym__thematic_break] = ACTIONS(1605), - [sym__list_marker_minus] = ACTIONS(1608), - [sym__list_marker_plus] = ACTIONS(1611), - [sym__list_marker_star] = ACTIONS(1614), - [sym__list_marker_parenthesis] = ACTIONS(1617), - [sym__list_marker_dot] = ACTIONS(1620), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1608), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1611), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1614), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1617), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1620), - [sym__list_marker_example] = ACTIONS(1623), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1623), - [sym__fenced_code_block_start_backtick] = ACTIONS(1626), - [sym_minus_metadata] = ACTIONS(1629), - [sym__pipe_table_start] = ACTIONS(1632), - [sym__fenced_div_start] = ACTIONS(1635), - [sym__fenced_div_end] = ACTIONS(1597), - [sym_ref_id_specifier] = ACTIONS(1638), - [sym__code_span_start] = ACTIONS(1641), - [sym__html_comment] = ACTIONS(1561), - [sym__autolink] = ACTIONS(1561), - [sym__highlight_span_start] = ACTIONS(1644), - [sym__insert_span_start] = ACTIONS(1647), - [sym__delete_span_start] = ACTIONS(1650), - [sym__edit_comment_span_start] = ACTIONS(1653), - [sym__single_quote_span_open] = ACTIONS(1656), - [sym__double_quote_span_open] = ACTIONS(1659), - [sym__shortcode_open_escaped] = ACTIONS(1662), - [sym__shortcode_open] = ACTIONS(1665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1668), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1671), - [sym__cite_author_in_text] = ACTIONS(1674), - [sym__cite_suppress_author] = ACTIONS(1677), - [sym__strikeout_open] = ACTIONS(1680), - [sym__subscript_open] = ACTIONS(1683), - [sym__superscript_open] = ACTIONS(1686), - [sym__inline_note_start_token] = ACTIONS(1689), - [sym__strong_emphasis_open_star] = ACTIONS(1692), - [sym__strong_emphasis_open_underscore] = ACTIONS(1695), - [sym__emphasis_open_star] = ACTIONS(1698), - [sym__emphasis_open_underscore] = ACTIONS(1701), - [sym_inline_note_reference] = ACTIONS(1561), - [sym_html_element] = ACTIONS(1561), + [sym__pandoc_line_break] = ACTIONS(7), }, [STATE(113)] = { - [sym__block_not_section] = STATE(114), - [sym__section6] = STATE(558), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(114), - [sym_pandoc_list] = STATE(114), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section5_repeat1] = STATE(114), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), + [anon_sym_COLON] = ACTIONS(109), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -36189,264 +35940,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1550), - [sym__block_quote_start] = ACTIONS(119), - [sym_atx_h1_marker] = ACTIONS(1550), - [sym_atx_h2_marker] = ACTIONS(1550), - [sym_atx_h3_marker] = ACTIONS(1550), - [sym_atx_h4_marker] = ACTIONS(1550), - [sym_atx_h5_marker] = ACTIONS(1550), - [sym_atx_h6_marker] = ACTIONS(131), - [sym__thematic_break] = ACTIONS(133), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(1704), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(1684), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(114)] = { [sym__block_not_section] = STATE(114), - [sym__section6] = STATE(558), - [sym__atx_heading6] = STATE(122), + [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(114), - [sym_pandoc_list] = STATE(114), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = 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), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section5_repeat1] = STATE(114), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(1706), - [sym_entity_reference] = ACTIONS(1561), - [sym_numeric_character_reference] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_BANG_LBRACK] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1570), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1576), - [aux_sym_pandoc_str_token1] = ACTIONS(1579), - [anon_sym_PIPE] = ACTIONS(1582), - [aux_sym__prose_punctuation_token1] = ACTIONS(1585), - [aux_sym_pandoc_line_break_token1] = ACTIONS(1588), - [sym__line_ending] = ACTIONS(1709), - [sym__soft_line_ending] = ACTIONS(1712), - [sym__block_close] = ACTIONS(1597), - [sym__block_quote_start] = ACTIONS(1715), - [sym_atx_h1_marker] = ACTIONS(1597), - [sym_atx_h2_marker] = ACTIONS(1597), - [sym_atx_h3_marker] = ACTIONS(1597), - [sym_atx_h4_marker] = ACTIONS(1597), - [sym_atx_h5_marker] = ACTIONS(1597), - [sym_atx_h6_marker] = ACTIONS(1718), - [sym__thematic_break] = ACTIONS(1721), - [sym__list_marker_minus] = ACTIONS(1608), - [sym__list_marker_plus] = ACTIONS(1611), - [sym__list_marker_star] = ACTIONS(1614), - [sym__list_marker_parenthesis] = ACTIONS(1617), - [sym__list_marker_dot] = ACTIONS(1620), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1608), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1611), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1614), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1617), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1620), - [sym__list_marker_example] = ACTIONS(1623), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1623), - [sym__fenced_code_block_start_backtick] = ACTIONS(1724), - [sym_minus_metadata] = ACTIONS(1727), - [sym__pipe_table_start] = ACTIONS(1730), - [sym__fenced_div_start] = ACTIONS(1733), - [sym_ref_id_specifier] = ACTIONS(1736), - [sym__code_span_start] = ACTIONS(1641), - [sym__html_comment] = ACTIONS(1561), - [sym__autolink] = ACTIONS(1561), - [sym__highlight_span_start] = ACTIONS(1644), - [sym__insert_span_start] = ACTIONS(1647), - [sym__delete_span_start] = ACTIONS(1650), - [sym__edit_comment_span_start] = ACTIONS(1653), - [sym__single_quote_span_open] = ACTIONS(1656), - [sym__double_quote_span_open] = ACTIONS(1659), - [sym__shortcode_open_escaped] = ACTIONS(1662), - [sym__shortcode_open] = ACTIONS(1665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1668), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1671), - [sym__cite_author_in_text] = ACTIONS(1674), - [sym__cite_suppress_author] = ACTIONS(1677), - [sym__strikeout_open] = ACTIONS(1680), - [sym__subscript_open] = ACTIONS(1683), - [sym__superscript_open] = ACTIONS(1686), - [sym__inline_note_start_token] = ACTIONS(1689), - [sym__strong_emphasis_open_star] = ACTIONS(1692), - [sym__strong_emphasis_open_underscore] = ACTIONS(1695), - [sym__emphasis_open_star] = ACTIONS(1698), - [sym__emphasis_open_underscore] = ACTIONS(1701), - [sym_inline_note_reference] = ACTIONS(1561), - [sym_html_element] = ACTIONS(1561), + [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)] = { - [sym__block_not_section] = STATE(116), - [sym__section6] = STATE(511), - [sym__atx_heading6] = STATE(127), - [sym_pandoc_horizontal_rule] = STATE(116), - [sym_pandoc_paragraph] = STATE(116), - [sym_inline_ref_def] = STATE(116), - [sym_caption] = STATE(116), - [sym_pipe_table] = STATE(116), - [sym__inlines] = STATE(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(116), - [sym_pandoc_list] = STATE(116), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), + [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(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [sym_pandoc_code_block] = STATE(116), - [sym_pandoc_div] = STATE(116), - [sym_note_definition_fenced_block] = STATE(116), - [sym__newline] = STATE(116), - [sym__soft_line_break] = STATE(116), - [sym_pandoc_line_break] = STATE(417), - [aux_sym__section5_repeat1] = STATE(116), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1550), + [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(1680), [anon_sym_COLON] = ACTIONS(5), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -36458,263 +36207,261 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(1550), - [sym_atx_h2_marker] = ACTIONS(1550), - [sym_atx_h3_marker] = ACTIONS(1550), - [sym_atx_h4_marker] = ACTIONS(1550), - [sym_atx_h5_marker] = ACTIONS(1550), - [sym_atx_h6_marker] = ACTIONS(43), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(1739), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), + [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_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), + [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(57), + [sym_minus_metadata] = ACTIONS(1719), + [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), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(116)] = { - [sym__block_not_section] = STATE(116), - [sym__section6] = STATE(511), - [sym__atx_heading6] = STATE(127), - [sym_pandoc_horizontal_rule] = STATE(116), - [sym_pandoc_paragraph] = STATE(116), - [sym_inline_ref_def] = STATE(116), - [sym_caption] = STATE(116), - [sym_pipe_table] = STATE(116), - [sym__inlines] = STATE(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(116), - [sym_pandoc_list] = STATE(116), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [sym_pandoc_code_block] = STATE(116), - [sym_pandoc_div] = STATE(116), - [sym_note_definition_fenced_block] = STATE(116), - [sym__newline] = STATE(116), - [sym__soft_line_break] = STATE(116), - [sym_pandoc_line_break] = STATE(417), - [aux_sym__section5_repeat1] = STATE(116), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1597), - [anon_sym_COLON] = ACTIONS(1741), - [sym_entity_reference] = ACTIONS(1561), - [sym_numeric_character_reference] = ACTIONS(1561), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_BANG_LBRACK] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1570), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1573), - [anon_sym_LBRACE] = ACTIONS(1576), - [aux_sym_pandoc_str_token1] = ACTIONS(1579), - [anon_sym_PIPE] = ACTIONS(1582), - [aux_sym__prose_punctuation_token1] = ACTIONS(1585), - [aux_sym_pandoc_line_break_token1] = ACTIONS(1588), - [sym__line_ending] = ACTIONS(1744), - [sym__soft_line_ending] = ACTIONS(1747), - [sym__block_quote_start] = ACTIONS(1750), - [sym_atx_h1_marker] = ACTIONS(1597), - [sym_atx_h2_marker] = ACTIONS(1597), - [sym_atx_h3_marker] = ACTIONS(1597), - [sym_atx_h4_marker] = ACTIONS(1597), - [sym_atx_h5_marker] = ACTIONS(1597), - [sym_atx_h6_marker] = ACTIONS(1753), - [sym__thematic_break] = ACTIONS(1756), - [sym__list_marker_minus] = ACTIONS(1608), - [sym__list_marker_plus] = ACTIONS(1611), - [sym__list_marker_star] = ACTIONS(1614), - [sym__list_marker_parenthesis] = ACTIONS(1617), - [sym__list_marker_dot] = ACTIONS(1620), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1608), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1611), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1614), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1617), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1620), - [sym__list_marker_example] = ACTIONS(1623), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1623), - [sym__fenced_code_block_start_backtick] = ACTIONS(1759), - [sym_minus_metadata] = ACTIONS(1762), - [sym__pipe_table_start] = ACTIONS(1765), - [sym__fenced_div_start] = ACTIONS(1768), - [sym_ref_id_specifier] = ACTIONS(1771), - [sym__code_span_start] = ACTIONS(1641), - [sym__html_comment] = ACTIONS(1561), - [sym__autolink] = ACTIONS(1561), - [sym__highlight_span_start] = ACTIONS(1644), - [sym__insert_span_start] = ACTIONS(1647), - [sym__delete_span_start] = ACTIONS(1650), - [sym__edit_comment_span_start] = ACTIONS(1653), - [sym__single_quote_span_open] = ACTIONS(1656), - [sym__double_quote_span_open] = ACTIONS(1659), - [sym__shortcode_open_escaped] = ACTIONS(1662), - [sym__shortcode_open] = ACTIONS(1665), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1668), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1671), - [sym__cite_author_in_text] = ACTIONS(1674), - [sym__cite_suppress_author] = ACTIONS(1677), - [sym__strikeout_open] = ACTIONS(1680), - [sym__subscript_open] = ACTIONS(1683), - [sym__superscript_open] = ACTIONS(1686), - [sym__inline_note_start_token] = ACTIONS(1689), - [sym__strong_emphasis_open_star] = ACTIONS(1692), - [sym__strong_emphasis_open_underscore] = ACTIONS(1695), - [sym__emphasis_open_star] = ACTIONS(1698), - [sym__emphasis_open_underscore] = ACTIONS(1701), - [sym_inline_note_reference] = ACTIONS(1561), - [sym_html_element] = ACTIONS(1561), + [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(511), - [sym__atx_heading6] = STATE(127), + [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(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), + [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(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), + [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(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), + [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), - [sym_pandoc_line_break] = STATE(417), [aux_sym__section5_repeat1] = STATE(115), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1554), + [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_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -36726,261 +36473,259 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(1554), - [sym_atx_h2_marker] = ACTIONS(1554), - [sym_atx_h3_marker] = ACTIONS(1554), - [sym_atx_h4_marker] = ACTIONS(1554), - [sym_atx_h5_marker] = ACTIONS(1554), - [sym_atx_h6_marker] = ACTIONS(43), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(1774), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(118)] = { - [sym__block_not_section] = STATE(113), - [sym__section6] = STATE(558), - [sym__atx_heading6] = STATE(122), - [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(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(113), - [sym_pandoc_list] = STATE(113), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [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_pandoc_line_break] = STATE(417), - [aux_sym__section5_repeat1] = STATE(113), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1554), - [sym__block_quote_start] = ACTIONS(119), - [sym_atx_h1_marker] = ACTIONS(1554), - [sym_atx_h2_marker] = ACTIONS(1554), - [sym_atx_h3_marker] = ACTIONS(1554), - [sym_atx_h4_marker] = ACTIONS(1554), - [sym_atx_h5_marker] = ACTIONS(1554), - [sym_atx_h6_marker] = ACTIONS(131), - [sym__thematic_break] = ACTIONS(133), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(1776), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), + [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), + [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), }, [STATE(119)] = { - [sym__block_not_section] = STATE(480), - [sym_pandoc_horizontal_rule] = STATE(480), - [sym_pandoc_paragraph] = STATE(480), - [sym_inline_ref_def] = STATE(480), - [sym_caption] = STATE(480), - [sym_pipe_table] = STATE(480), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(480), - [sym_pandoc_list] = STATE(480), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [sym_pandoc_code_block] = STATE(480), - [sym_pandoc_div] = STATE(480), - [sym_note_definition_fenced_block] = STATE(480), - [sym__newline] = STATE(480), - [sym__soft_line_break] = STATE(480), - [sym_pandoc_line_break] = STATE(417), + [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(120), - [aux_sym__list_plus_repeat1] = STATE(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -36991,129 +36736,128 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(1778), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(1778), - [sym_atx_h2_marker] = ACTIONS(1778), - [sym_atx_h3_marker] = ACTIONS(1778), - [sym_atx_h4_marker] = ACTIONS(1778), - [sym_atx_h5_marker] = ACTIONS(1778), - [sym_atx_h6_marker] = ACTIONS(1778), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(1780), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(1778), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(120)] = { - [sym__block_not_section] = STATE(480), - [sym_pandoc_horizontal_rule] = STATE(480), - [sym_pandoc_paragraph] = STATE(480), - [sym_inline_ref_def] = STATE(480), - [sym_caption] = STATE(480), - [sym_pipe_table] = STATE(480), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(480), - [sym_pandoc_list] = STATE(480), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [sym_pandoc_code_block] = STATE(480), - [sym_pandoc_div] = STATE(480), - [sym_note_definition_fenced_block] = STATE(480), - [sym__newline] = STATE(480), - [sym__soft_line_break] = STATE(480), - [sym_pandoc_line_break] = STATE(417), + [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(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(181), + [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), @@ -37124,262 +36868,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(183), - [sym__soft_line_ending] = ACTIONS(185), - [sym__block_close] = ACTIONS(1782), - [sym__block_quote_start] = ACTIONS(189), - [sym_atx_h1_marker] = ACTIONS(1782), - [sym_atx_h2_marker] = ACTIONS(1782), - [sym_atx_h3_marker] = ACTIONS(1782), - [sym_atx_h4_marker] = ACTIONS(1782), - [sym_atx_h5_marker] = ACTIONS(1782), - [sym_atx_h6_marker] = ACTIONS(1782), - [sym__thematic_break] = ACTIONS(203), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(205), - [sym_minus_metadata] = ACTIONS(1780), - [sym__pipe_table_start] = ACTIONS(209), - [sym__fenced_div_start] = ACTIONS(211), - [sym__fenced_div_end] = ACTIONS(1782), - [sym_ref_id_specifier] = ACTIONS(215), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(121)] = { - [sym__block_not_section] = STATE(480), - [sym_pandoc_horizontal_rule] = STATE(480), - [sym_pandoc_paragraph] = STATE(480), - [sym_inline_ref_def] = STATE(480), - [sym_caption] = STATE(480), - [sym_pipe_table] = STATE(480), - [sym__inlines] = STATE(2810), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(480), - [sym_pandoc_list] = STATE(480), - [sym__list_plus] = STATE(353), - [sym__list_minus] = STATE(353), - [sym__list_star] = STATE(353), - [sym__list_dot] = STATE(353), - [sym__list_parenthesis] = STATE(353), - [sym__list_example] = STATE(353), + [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(188), - [sym__list_item_minus] = STATE(189), - [sym__list_item_star] = STATE(178), - [sym__list_item_dot] = STATE(167), - [sym__list_item_parenthesis] = STATE(169), - [sym__list_item_example] = STATE(170), - [sym_pandoc_code_block] = STATE(480), - [sym_pandoc_div] = STATE(480), - [sym_note_definition_fenced_block] = STATE(480), - [sym__newline] = STATE(480), - [sym__soft_line_break] = STATE(480), - [sym_pandoc_line_break] = STATE(417), + [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(188), - [aux_sym__list_minus_repeat1] = STATE(189), - [aux_sym__list_star_repeat1] = STATE(178), - [aux_sym__list_dot_repeat1] = STATE(167), - [aux_sym__list_parenthesis_repeat1] = STATE(169), - [aux_sym__list_example_repeat1] = STATE(170), - [anon_sym_COLON] = ACTIONS(1784), - [sym_entity_reference] = ACTIONS(1787), - [sym_numeric_character_reference] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_BANG_LBRACK] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1802), - [aux_sym_pandoc_str_token1] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1808), - [aux_sym__prose_punctuation_token1] = ACTIONS(1811), - [aux_sym_pandoc_line_break_token1] = ACTIONS(1814), - [sym__line_ending] = ACTIONS(1817), - [sym__soft_line_ending] = ACTIONS(1820), - [sym__block_close] = ACTIONS(1823), - [sym__block_quote_start] = ACTIONS(1825), - [sym_atx_h1_marker] = ACTIONS(1823), - [sym_atx_h2_marker] = ACTIONS(1823), - [sym_atx_h3_marker] = ACTIONS(1823), - [sym_atx_h4_marker] = ACTIONS(1823), - [sym_atx_h5_marker] = ACTIONS(1823), - [sym_atx_h6_marker] = ACTIONS(1823), - [sym__thematic_break] = ACTIONS(1828), - [sym__list_marker_minus] = ACTIONS(1831), - [sym__list_marker_plus] = ACTIONS(1834), - [sym__list_marker_star] = ACTIONS(1837), - [sym__list_marker_parenthesis] = ACTIONS(1840), - [sym__list_marker_dot] = ACTIONS(1843), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1831), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1837), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1840), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1843), - [sym__list_marker_example] = ACTIONS(1846), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1846), - [sym__fenced_code_block_start_backtick] = ACTIONS(1849), - [sym_minus_metadata] = ACTIONS(1852), - [sym__pipe_table_start] = ACTIONS(1855), - [sym__fenced_div_start] = ACTIONS(1858), - [sym__fenced_div_end] = ACTIONS(1823), - [sym_ref_id_specifier] = ACTIONS(1861), - [sym__code_span_start] = ACTIONS(1864), - [sym__html_comment] = ACTIONS(1787), - [sym__autolink] = ACTIONS(1787), - [sym__highlight_span_start] = ACTIONS(1867), - [sym__insert_span_start] = ACTIONS(1870), - [sym__delete_span_start] = ACTIONS(1873), - [sym__edit_comment_span_start] = ACTIONS(1876), - [sym__single_quote_span_open] = ACTIONS(1879), - [sym__double_quote_span_open] = ACTIONS(1882), - [sym__shortcode_open_escaped] = ACTIONS(1885), - [sym__shortcode_open] = ACTIONS(1888), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1894), - [sym__cite_author_in_text] = ACTIONS(1897), - [sym__cite_suppress_author] = ACTIONS(1900), - [sym__strikeout_open] = ACTIONS(1903), - [sym__subscript_open] = ACTIONS(1906), - [sym__superscript_open] = ACTIONS(1909), - [sym__inline_note_start_token] = ACTIONS(1912), - [sym__strong_emphasis_open_star] = ACTIONS(1915), - [sym__strong_emphasis_open_underscore] = ACTIONS(1918), - [sym__emphasis_open_star] = ACTIONS(1921), - [sym__emphasis_open_underscore] = ACTIONS(1924), - [sym_inline_note_reference] = ACTIONS(1787), - [sym_html_element] = ACTIONS(1787), + [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), }, [STATE(122)] = { - [sym__block_not_section] = STATE(512), - [sym_pandoc_horizontal_rule] = STATE(512), - [sym_pandoc_paragraph] = STATE(512), - [sym_inline_ref_def] = STATE(512), - [sym_caption] = STATE(512), - [sym_pipe_table] = STATE(512), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(512), - [sym_pandoc_list] = STATE(512), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(512), - [sym_pandoc_div] = STATE(512), - [sym_note_definition_fenced_block] = STATE(512), - [sym__newline] = STATE(512), - [sym__soft_line_break] = STATE(512), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_document_repeat1] = STATE(125), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -37390,260 +37132,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1778), - [sym__block_quote_start] = ACTIONS(119), - [sym_atx_h1_marker] = ACTIONS(1778), - [sym_atx_h2_marker] = ACTIONS(1778), - [sym_atx_h3_marker] = ACTIONS(1778), - [sym_atx_h4_marker] = ACTIONS(1778), - [sym_atx_h5_marker] = ACTIONS(1778), - [sym_atx_h6_marker] = ACTIONS(1778), - [sym__thematic_break] = ACTIONS(133), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(1927), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(1904), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(123)] = { - [sym__block_not_section] = STATE(512), - [sym_pandoc_horizontal_rule] = STATE(512), - [sym_pandoc_paragraph] = STATE(512), - [sym_inline_ref_def] = STATE(512), - [sym_caption] = STATE(512), - [sym_pipe_table] = STATE(512), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(512), - [sym_pandoc_list] = STATE(512), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), - [sym_list_marker_plus] = STATE(9), - [sym_list_marker_minus] = STATE(10), - [sym_list_marker_star] = STATE(11), - [sym_list_marker_dot] = STATE(12), - [sym_list_marker_parenthesis] = STATE(13), - [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(512), - [sym_pandoc_div] = STATE(512), - [sym_note_definition_fenced_block] = STATE(512), - [sym__newline] = STATE(512), - [sym__soft_line_break] = STATE(512), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(1929), - [sym_entity_reference] = ACTIONS(1787), - [sym_numeric_character_reference] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_BANG_LBRACK] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1802), - [aux_sym_pandoc_str_token1] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1808), - [aux_sym__prose_punctuation_token1] = ACTIONS(1811), - [aux_sym_pandoc_line_break_token1] = ACTIONS(1814), - [sym__line_ending] = ACTIONS(1932), - [sym__soft_line_ending] = ACTIONS(1935), - [sym__block_close] = ACTIONS(1823), - [sym__block_quote_start] = ACTIONS(1938), - [sym_atx_h1_marker] = ACTIONS(1823), - [sym_atx_h2_marker] = ACTIONS(1823), - [sym_atx_h3_marker] = ACTIONS(1823), - [sym_atx_h4_marker] = ACTIONS(1823), - [sym_atx_h5_marker] = ACTIONS(1823), - [sym_atx_h6_marker] = ACTIONS(1823), - [sym__thematic_break] = ACTIONS(1941), - [sym__list_marker_minus] = ACTIONS(1831), - [sym__list_marker_plus] = ACTIONS(1834), - [sym__list_marker_star] = ACTIONS(1837), - [sym__list_marker_parenthesis] = ACTIONS(1840), - [sym__list_marker_dot] = ACTIONS(1843), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1831), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1837), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1840), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1843), - [sym__list_marker_example] = ACTIONS(1846), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1846), - [sym__fenced_code_block_start_backtick] = ACTIONS(1944), - [sym_minus_metadata] = ACTIONS(1947), - [sym__pipe_table_start] = ACTIONS(1950), - [sym__fenced_div_start] = ACTIONS(1953), - [sym_ref_id_specifier] = ACTIONS(1956), - [sym__code_span_start] = ACTIONS(1864), - [sym__html_comment] = ACTIONS(1787), - [sym__autolink] = ACTIONS(1787), - [sym__highlight_span_start] = ACTIONS(1867), - [sym__insert_span_start] = ACTIONS(1870), - [sym__delete_span_start] = ACTIONS(1873), - [sym__edit_comment_span_start] = ACTIONS(1876), - [sym__single_quote_span_open] = ACTIONS(1879), - [sym__double_quote_span_open] = ACTIONS(1882), - [sym__shortcode_open_escaped] = ACTIONS(1885), - [sym__shortcode_open] = ACTIONS(1888), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1894), - [sym__cite_author_in_text] = ACTIONS(1897), - [sym__cite_suppress_author] = ACTIONS(1900), - [sym__strikeout_open] = ACTIONS(1903), - [sym__subscript_open] = ACTIONS(1906), - [sym__superscript_open] = ACTIONS(1909), - [sym__inline_note_start_token] = ACTIONS(1912), - [sym__strong_emphasis_open_star] = ACTIONS(1915), - [sym__strong_emphasis_open_underscore] = ACTIONS(1918), - [sym__emphasis_open_star] = ACTIONS(1921), - [sym__emphasis_open_underscore] = ACTIONS(1924), - [sym_inline_note_reference] = ACTIONS(1787), - [sym_html_element] = ACTIONS(1787), - }, - [STATE(124)] = { - [sym__block_not_section] = STATE(562), - [sym_pandoc_horizontal_rule] = STATE(562), - [sym_pandoc_paragraph] = STATE(562), - [sym_inline_ref_def] = STATE(562), - [sym_caption] = STATE(562), - [sym_pipe_table] = STATE(562), - [sym__inlines] = STATE(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(562), - [sym_pandoc_list] = STATE(562), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), + [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(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [sym_pandoc_code_block] = STATE(562), - [sym_pandoc_div] = STATE(562), - [sym_note_definition_fenced_block] = STATE(562), - [sym__newline] = STATE(562), - [sym__soft_line_break] = STATE(562), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_document_repeat1] = STATE(126), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1782), + [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), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -37655,127 +37264,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(1782), - [sym_atx_h2_marker] = ACTIONS(1782), - [sym_atx_h3_marker] = ACTIONS(1782), - [sym_atx_h4_marker] = ACTIONS(1782), - [sym_atx_h5_marker] = ACTIONS(1782), - [sym_atx_h6_marker] = ACTIONS(1782), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(480), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(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), + [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(512), - [sym_pandoc_horizontal_rule] = STATE(512), - [sym_pandoc_paragraph] = STATE(512), - [sym_inline_ref_def] = STATE(512), - [sym_caption] = STATE(512), - [sym_pipe_table] = STATE(512), - [sym__inlines] = STATE(2820), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(512), - [sym_pandoc_list] = STATE(512), - [sym__list_plus] = STATE(523), - [sym__list_minus] = STATE(523), - [sym__list_star] = STATE(523), - [sym__list_dot] = STATE(523), - [sym__list_parenthesis] = STATE(523), - [sym__list_example] = STATE(523), + [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(12), - [sym_list_marker_parenthesis] = STATE(13), + [sym_list_marker_dot] = STATE(13), + [sym_list_marker_parenthesis] = STATE(12), [sym_list_marker_example] = STATE(14), - [sym__list_item_plus] = STATE(295), - [sym__list_item_minus] = STATE(283), - [sym__list_item_star] = STATE(259), - [sym__list_item_dot] = STATE(211), - [sym__list_item_parenthesis] = STATE(216), - [sym__list_item_example] = STATE(278), - [sym_pandoc_code_block] = STATE(512), - [sym_pandoc_div] = STATE(512), - [sym_note_definition_fenced_block] = STATE(512), - [sym__newline] = STATE(512), - [sym__soft_line_break] = STATE(512), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_document_repeat1] = STATE(123), - [aux_sym__list_plus_repeat1] = STATE(295), - [aux_sym__list_minus_repeat1] = STATE(283), - [aux_sym__list_star_repeat1] = STATE(259), - [aux_sym__list_dot_repeat1] = STATE(211), - [aux_sym__list_parenthesis_repeat1] = STATE(216), - [aux_sym__list_example_repeat1] = STATE(278), - [anon_sym_COLON] = ACTIONS(111), + [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_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), [anon_sym_LBRACK] = ACTIONS(9), @@ -37786,260 +37525,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(113), - [sym__soft_line_ending] = ACTIONS(115), - [sym__block_close] = ACTIONS(1782), - [sym__block_quote_start] = ACTIONS(119), - [sym_atx_h1_marker] = ACTIONS(1782), - [sym_atx_h2_marker] = ACTIONS(1782), - [sym_atx_h3_marker] = ACTIONS(1782), - [sym_atx_h4_marker] = ACTIONS(1782), - [sym_atx_h5_marker] = ACTIONS(1782), - [sym_atx_h6_marker] = ACTIONS(1782), - [sym__thematic_break] = ACTIONS(133), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(135), - [sym_minus_metadata] = ACTIONS(1927), - [sym__pipe_table_start] = ACTIONS(141), - [sym__fenced_div_start] = ACTIONS(143), - [sym_ref_id_specifier] = ACTIONS(145), - [sym__code_span_start] = ACTIONS(69), + [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__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(1904), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(126)] = { - [sym__block_not_section] = STATE(562), - [sym_pandoc_horizontal_rule] = STATE(562), - [sym_pandoc_paragraph] = STATE(562), - [sym_inline_ref_def] = STATE(562), - [sym_caption] = STATE(562), - [sym_pipe_table] = STATE(562), - [sym__inlines] = STATE(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(562), - [sym_pandoc_list] = STATE(562), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), - [sym_list_marker_minus] = STATE(4), - [sym_list_marker_star] = STATE(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [sym_pandoc_code_block] = STATE(562), - [sym_pandoc_div] = STATE(562), - [sym_note_definition_fenced_block] = STATE(562), - [sym__newline] = STATE(562), - [sym__soft_line_break] = STATE(562), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_document_repeat1] = STATE(126), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1823), - [anon_sym_COLON] = ACTIONS(1959), - [sym_entity_reference] = ACTIONS(1787), - [sym_numeric_character_reference] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_BANG_LBRACK] = ACTIONS(1793), - [anon_sym_DOLLAR] = ACTIONS(1796), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1802), - [aux_sym_pandoc_str_token1] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1808), - [aux_sym__prose_punctuation_token1] = ACTIONS(1811), - [aux_sym_pandoc_line_break_token1] = ACTIONS(1814), - [sym__line_ending] = ACTIONS(1962), - [sym__soft_line_ending] = ACTIONS(1965), - [sym__block_quote_start] = ACTIONS(1968), - [sym_atx_h1_marker] = ACTIONS(1823), - [sym_atx_h2_marker] = ACTIONS(1823), - [sym_atx_h3_marker] = ACTIONS(1823), - [sym_atx_h4_marker] = ACTIONS(1823), - [sym_atx_h5_marker] = ACTIONS(1823), - [sym_atx_h6_marker] = ACTIONS(1823), - [sym__thematic_break] = ACTIONS(1971), - [sym__list_marker_minus] = ACTIONS(1831), - [sym__list_marker_plus] = ACTIONS(1834), - [sym__list_marker_star] = ACTIONS(1837), - [sym__list_marker_parenthesis] = ACTIONS(1840), - [sym__list_marker_dot] = ACTIONS(1843), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(1831), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(1834), - [sym__list_marker_star_dont_interrupt] = ACTIONS(1837), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(1840), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(1843), - [sym__list_marker_example] = ACTIONS(1846), - [sym__list_marker_example_dont_interrupt] = ACTIONS(1846), - [sym__fenced_code_block_start_backtick] = ACTIONS(1974), - [sym_minus_metadata] = ACTIONS(1977), - [sym__pipe_table_start] = ACTIONS(1980), - [sym__fenced_div_start] = ACTIONS(1983), - [sym_ref_id_specifier] = ACTIONS(1986), - [sym__code_span_start] = ACTIONS(1864), - [sym__html_comment] = ACTIONS(1787), - [sym__autolink] = ACTIONS(1787), - [sym__highlight_span_start] = ACTIONS(1867), - [sym__insert_span_start] = ACTIONS(1870), - [sym__delete_span_start] = ACTIONS(1873), - [sym__edit_comment_span_start] = ACTIONS(1876), - [sym__single_quote_span_open] = ACTIONS(1879), - [sym__double_quote_span_open] = ACTIONS(1882), - [sym__shortcode_open_escaped] = ACTIONS(1885), - [sym__shortcode_open] = ACTIONS(1888), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(1891), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(1894), - [sym__cite_author_in_text] = ACTIONS(1897), - [sym__cite_suppress_author] = ACTIONS(1900), - [sym__strikeout_open] = ACTIONS(1903), - [sym__subscript_open] = ACTIONS(1906), - [sym__superscript_open] = ACTIONS(1909), - [sym__inline_note_start_token] = ACTIONS(1912), - [sym__strong_emphasis_open_star] = ACTIONS(1915), - [sym__strong_emphasis_open_underscore] = ACTIONS(1918), - [sym__emphasis_open_star] = ACTIONS(1921), - [sym__emphasis_open_underscore] = ACTIONS(1924), - [sym_inline_note_reference] = ACTIONS(1787), - [sym_html_element] = ACTIONS(1787), - }, - [STATE(127)] = { - [sym__block_not_section] = STATE(562), - [sym_pandoc_horizontal_rule] = STATE(562), - [sym_pandoc_paragraph] = STATE(562), - [sym_inline_ref_def] = STATE(562), - [sym_caption] = STATE(562), - [sym_pipe_table] = STATE(562), - [sym__inlines] = STATE(2817), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym_pandoc_block_quote] = STATE(562), - [sym_pandoc_list] = STATE(562), - [sym__list_plus] = STATE(517), - [sym__list_minus] = STATE(517), - [sym__list_star] = STATE(517), - [sym__list_dot] = STATE(517), - [sym__list_parenthesis] = STATE(517), - [sym__list_example] = STATE(517), - [sym_list_marker_plus] = STATE(7), + [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(3), - [sym_list_marker_dot] = STATE(8), - [sym_list_marker_parenthesis] = STATE(5), - [sym_list_marker_example] = STATE(6), - [sym__list_item_plus] = STATE(191), - [sym__list_item_minus] = STATE(275), - [sym__list_item_star] = STATE(276), - [sym__list_item_dot] = STATE(277), - [sym__list_item_parenthesis] = STATE(279), - [sym__list_item_example] = STATE(280), - [sym_pandoc_code_block] = STATE(562), - [sym_pandoc_div] = STATE(562), - [sym_note_definition_fenced_block] = STATE(562), - [sym__newline] = STATE(562), - [sym__soft_line_break] = STATE(562), - [sym_pandoc_line_break] = STATE(417), - [aux_sym_document_repeat1] = STATE(124), - [aux_sym__list_plus_repeat1] = STATE(191), - [aux_sym__list_minus_repeat1] = STATE(275), - [aux_sym__list_star_repeat1] = STATE(276), - [aux_sym__list_dot_repeat1] = STATE(277), - [aux_sym__list_parenthesis_repeat1] = STATE(279), - [aux_sym__list_example_repeat1] = STATE(280), - [ts_builtin_sym_end] = ACTIONS(1778), + [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), [sym_entity_reference] = ACTIONS(7), [sym_numeric_character_reference] = ACTIONS(7), @@ -38051,6440 +37657,6448 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__line_ending] = ACTIONS(27), - [sym__soft_line_ending] = ACTIONS(29), - [sym__block_quote_start] = ACTIONS(31), - [sym_atx_h1_marker] = ACTIONS(1778), - [sym_atx_h2_marker] = ACTIONS(1778), - [sym_atx_h3_marker] = ACTIONS(1778), - [sym_atx_h4_marker] = ACTIONS(1778), - [sym_atx_h5_marker] = ACTIONS(1778), - [sym_atx_h6_marker] = ACTIONS(1778), - [sym__thematic_break] = ACTIONS(45), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(51), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(51), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [sym__fenced_code_block_start_backtick] = ACTIONS(59), - [sym_minus_metadata] = ACTIONS(480), - [sym__pipe_table_start] = ACTIONS(63), - [sym__fenced_div_start] = ACTIONS(65), - [sym_ref_id_specifier] = ACTIONS(67), - [sym__code_span_start] = ACTIONS(69), + [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__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(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__code_span_start] = ACTIONS(67), [sym__html_comment] = ACTIONS(7), [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(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(2969), - [sym_pipe_table_row] = STATE(3012), - [sym_pipe_table_cell] = STATE(2639), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym_pipe_table_row_repeat1] = STATE(187), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [anon_sym_COLON] = ACTIONS(1989), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2011), - [sym__line_ending] = ACTIONS(2013), - [sym__eof] = ACTIONS(2013), - [sym__pipe_table_line_ending] = ACTIONS(2013), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), - [sym__pipe_table_delimiter] = ACTIONS(2057), + [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), }, [STATE(129)] = { - [sym_caption] = STATE(2893), - [sym_pipe_table_row] = STATE(3012), - [sym_pipe_table_cell] = STATE(2639), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym_pipe_table_row_repeat1] = STATE(187), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [anon_sym_COLON] = ACTIONS(1989), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2011), - [sym__line_ending] = ACTIONS(2013), - [sym__eof] = ACTIONS(2013), - [sym__pipe_table_line_ending] = ACTIONS(2013), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), - [sym__pipe_table_delimiter] = ACTIONS(2057), + [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), }, [STATE(130)] = { - [sym_caption] = STATE(3009), - [sym_pipe_table_row] = STATE(3012), - [sym_pipe_table_cell] = STATE(2639), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym_pipe_table_row_repeat1] = STATE(187), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [anon_sym_COLON] = ACTIONS(1989), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2011), - [sym__line_ending] = ACTIONS(2013), - [sym__eof] = ACTIONS(2013), - [sym__pipe_table_line_ending] = ACTIONS(2013), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), - [sym__pipe_table_delimiter] = ACTIONS(2057), + [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), }, [STATE(131)] = { - [sym_caption] = STATE(3109), - [sym_pipe_table_row] = STATE(3012), - [sym_pipe_table_cell] = STATE(2639), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym_pipe_table_row_repeat1] = STATE(187), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [anon_sym_COLON] = ACTIONS(1989), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2011), - [sym__line_ending] = ACTIONS(2013), - [sym__eof] = ACTIONS(2013), - [sym__pipe_table_line_ending] = ACTIONS(2013), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), - [sym__pipe_table_delimiter] = ACTIONS(2057), + [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), }, [STATE(132)] = { - [sym_caption] = STATE(3052), - [sym_pipe_table_row] = STATE(3012), - [sym_pipe_table_cell] = STATE(2639), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym_pipe_table_row_repeat1] = STATE(187), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [anon_sym_COLON] = ACTIONS(1989), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2011), - [sym__line_ending] = ACTIONS(2013), - [sym__eof] = ACTIONS(2013), - [sym__pipe_table_line_ending] = ACTIONS(2013), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), - [sym__pipe_table_delimiter] = ACTIONS(2057), + [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), }, [STATE(133)] = { - [sym_caption] = STATE(2857), - [sym_pipe_table_row] = STATE(3012), - [sym_pipe_table_cell] = STATE(2639), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym_pipe_table_row_repeat1] = STATE(187), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [anon_sym_COLON] = ACTIONS(1989), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2011), - [sym__line_ending] = ACTIONS(2013), - [sym__eof] = ACTIONS(2013), - [sym__pipe_table_line_ending] = ACTIONS(2013), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), - [sym__pipe_table_delimiter] = ACTIONS(2057), + [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), }, [STATE(134)] = { - [sym_pipe_table_row] = STATE(3012), - [sym_pipe_table_cell] = STATE(2639), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym_pipe_table_row_repeat1] = STATE(187), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2011), - [sym__line_ending] = ACTIONS(2013), - [sym__eof] = ACTIONS(2013), - [sym__pipe_table_line_ending] = ACTIONS(2013), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), - [sym__pipe_table_delimiter] = ACTIONS(2057), + [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), }, [STATE(135)] = { - [sym__inlines] = STATE(2800), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(984), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(361), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(361), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2063), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2067), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2083), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(136)] = { - [sym__inlines] = STATE(2920), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(916), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(465), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(465), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2129), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2133), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(137)] = { - [sym__inlines] = STATE(2792), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(982), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(357), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(357), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2135), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2067), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2137), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(138)] = { - [sym__inlines] = STATE(2947), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1360), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(407), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(407), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2139), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2141), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2143), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(139)] = { - [sym__inlines] = STATE(2948), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1361), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(408), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(408), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2145), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2141), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2147), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(140)] = { - [sym__inlines] = STATE(3070), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1358), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(411), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(411), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2149), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2151), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2153), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(141)] = { - [sym__inlines] = STATE(3071), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1359), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(412), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(412), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2155), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2151), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2157), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(142)] = { - [sym__inlines] = STATE(3051), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1422), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(420), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(420), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2159), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2161), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2163), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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] = 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__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), }, [STATE(143)] = { - [sym__inlines] = STATE(2889), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1447), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(424), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(424), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2165), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2167), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2169), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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] = 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), }, [STATE(144)] = { - [sym__inlines] = STATE(2892), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1448), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(425), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(425), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2171), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2167), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2173), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(145)] = { - [sym__inlines] = STATE(2782), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1472), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(427), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(427), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2175), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2177), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2179), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(146)] = { - [sym__inlines] = STATE(2785), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1473), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(428), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(428), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2181), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2177), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2183), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(147)] = { - [sym__inlines] = STATE(2848), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1059), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(429), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(429), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2185), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2189), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(148)] = { - [sym__inlines] = STATE(2852), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1060), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(430), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(430), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2191), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2193), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(149)] = { - [sym__inlines] = STATE(2899), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1088), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(431), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(431), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2195), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2199), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(150)] = { - [sym__inlines] = STATE(2910), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1089), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(432), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(432), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2201), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2203), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(151)] = { - [sym__inlines] = STATE(3001), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1116), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(434), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(434), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2205), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2209), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(152)] = { - [sym__inlines] = STATE(3002), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1117), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(435), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(435), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2211), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2213), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(153)] = { - [sym__inlines] = STATE(3106), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1142), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(436), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(436), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2215), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2219), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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__emphasis_open_underscore] = ACTIONS(2100), + [sym_inline_note_reference] = ACTIONS(2034), + [sym_html_element] = ACTIONS(2034), + [sym__pandoc_line_break] = ACTIONS(2034), }, [STATE(154)] = { - [sym__inlines] = STATE(3107), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1143), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(437), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(437), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2221), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2223), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(155)] = { - [sym__inlines] = STATE(2802), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1169), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(438), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(438), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), + [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), + }, + [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), + }, + [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__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(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), + }, + [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), + }, + [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__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(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(2065), + [anon_sym_BANG_LBRACK] = ACTIONS(2040), [aux_sym_target_token1] = ACTIONS(2227), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), + [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(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, - [STATE(156)] = { - [sym__inlines] = STATE(2804), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1170), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(439), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(439), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), + [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(2065), + [anon_sym_BANG_LBRACK] = ACTIONS(2040), [aux_sym_target_token1] = ACTIONS(2227), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), + [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(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, - [STATE(157)] = { - [sym__inlines] = STATE(2828), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1196), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(442), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(442), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), + [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(2065), + [anon_sym_BANG_LBRACK] = ACTIONS(2040), [aux_sym_target_token1] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), + [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(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, - [STATE(158)] = { - [sym__inlines] = STATE(2830), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1197), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(443), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(443), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), + [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(2065), + [anon_sym_BANG_LBRACK] = ACTIONS(2040), [aux_sym_target_token1] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), + [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(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, - [STATE(159)] = { - [sym__inlines] = STATE(2851), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1223), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(447), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(447), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), + [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(2065), + [anon_sym_BANG_LBRACK] = ACTIONS(2040), [aux_sym_target_token1] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), + [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(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, - [STATE(160)] = { - [sym__inlines] = STATE(2853), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1224), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(448), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(448), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), + [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(2065), + [anon_sym_BANG_LBRACK] = ACTIONS(2040), [aux_sym_target_token1] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), + [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(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, - [STATE(161)] = { - [sym__inlines] = STATE(2874), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1030), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(451), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(451), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), + [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(2065), + [anon_sym_BANG_LBRACK] = ACTIONS(2040), [aux_sym_target_token1] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), + [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(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, - [STATE(162)] = { - [sym__inlines] = STATE(2876), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1031), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(452), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(452), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), + [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(2065), + [anon_sym_BANG_LBRACK] = ACTIONS(2040), [aux_sym_target_token1] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), + [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(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, - [STATE(163)] = { - [sym__inlines] = STATE(2896), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1792), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(457), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(457), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), + [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(2065), + [anon_sym_BANG_LBRACK] = ACTIONS(2040), [aux_sym_target_token1] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), + [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(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, - [STATE(164)] = { - [sym__inlines] = STATE(2897), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1793), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(458), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(458), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), + [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(2065), + [anon_sym_BANG_LBRACK] = ACTIONS(2040), [aux_sym_target_token1] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), + [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(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), - }, - [STATE(165)] = { - [sym__inlines] = STATE(2919), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(915), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(464), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(464), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2275), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2277), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), - }, - [STATE(166)] = { - [sym__inlines] = STATE(2953), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1421), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym__soft_line_break] = STATE(419), - [sym_pandoc_line_break] = STATE(402), - [sym__inline_whitespace] = STATE(419), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(2279), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2161), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(2281), - [sym__soft_line_ending] = ACTIONS(2085), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), - }, - [STATE(167)] = { - [sym_list_marker_dot] = STATE(18), - [sym__list_item_dot] = STATE(182), - [aux_sym__list_dot_repeat1] = STATE(182), - [anon_sym_COLON] = ACTIONS(2283), - [sym_entity_reference] = ACTIONS(2283), - [sym_numeric_character_reference] = ACTIONS(2283), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_BANG_LBRACK] = ACTIONS(2283), - [anon_sym_DOLLAR] = ACTIONS(2285), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2283), - [aux_sym_pandoc_str_token1] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2283), - [aux_sym__prose_punctuation_token1] = ACTIONS(2285), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2285), - [sym__line_ending] = ACTIONS(2283), - [sym__soft_line_ending] = ACTIONS(2283), - [sym__block_close] = ACTIONS(2283), - [sym__block_quote_start] = ACTIONS(2283), - [sym_atx_h1_marker] = ACTIONS(2283), - [sym_atx_h2_marker] = ACTIONS(2283), - [sym_atx_h3_marker] = ACTIONS(2283), - [sym_atx_h4_marker] = ACTIONS(2283), - [sym_atx_h5_marker] = ACTIONS(2283), - [sym_atx_h6_marker] = ACTIONS(2283), - [sym__thematic_break] = ACTIONS(2283), - [sym__list_marker_minus] = ACTIONS(2283), - [sym__list_marker_plus] = ACTIONS(2283), - [sym__list_marker_star] = ACTIONS(2283), - [sym__list_marker_parenthesis] = ACTIONS(2283), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2283), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2283), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2283), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2283), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(2283), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2283), - [sym__fenced_code_block_start_backtick] = ACTIONS(2283), - [sym_minus_metadata] = ACTIONS(2283), - [sym__pipe_table_start] = ACTIONS(2283), - [sym__fenced_div_start] = ACTIONS(2283), - [sym__fenced_div_end] = ACTIONS(2283), - [sym_ref_id_specifier] = ACTIONS(2283), - [sym__code_span_start] = ACTIONS(2283), - [sym__html_comment] = ACTIONS(2283), - [sym__autolink] = ACTIONS(2283), - [sym__highlight_span_start] = ACTIONS(2283), - [sym__insert_span_start] = ACTIONS(2283), - [sym__delete_span_start] = ACTIONS(2283), - [sym__edit_comment_span_start] = ACTIONS(2283), - [sym__single_quote_span_open] = ACTIONS(2283), - [sym__double_quote_span_open] = ACTIONS(2283), - [sym__shortcode_open_escaped] = ACTIONS(2283), - [sym__shortcode_open] = ACTIONS(2283), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2283), - [sym__cite_author_in_text] = ACTIONS(2283), - [sym__cite_suppress_author] = ACTIONS(2283), - [sym__strikeout_open] = ACTIONS(2283), - [sym__subscript_open] = ACTIONS(2283), - [sym__superscript_open] = ACTIONS(2283), - [sym__inline_note_start_token] = ACTIONS(2283), - [sym__strong_emphasis_open_star] = ACTIONS(2283), - [sym__strong_emphasis_open_underscore] = ACTIONS(2283), - [sym__emphasis_open_star] = ACTIONS(2283), - [sym__emphasis_open_underscore] = ACTIONS(2283), - [sym_inline_note_reference] = ACTIONS(2283), - [sym_html_element] = ACTIONS(2283), - }, - [STATE(168)] = { - [sym_pipe_table_cell] = STATE(3149), - [sym_pandoc_span] = STATE(742), - [sym_pandoc_image] = STATE(742), - [sym_pandoc_math] = STATE(742), - [sym_pandoc_display_math] = STATE(742), - [sym_pandoc_code_span] = STATE(742), - [sym_pandoc_single_quote] = STATE(742), - [sym_pandoc_double_quote] = STATE(742), - [sym_insert] = STATE(742), - [sym_delete] = STATE(742), - [sym_edit_comment] = STATE(742), - [sym_highlight] = STATE(742), - [sym__pandoc_attr_specifier] = STATE(742), - [sym__line_with_maybe_spaces] = STATE(3118), - [sym__inline_element] = STATE(742), - [sym_shortcode_escaped] = STATE(742), - [sym_shortcode] = STATE(742), - [sym_citation] = STATE(742), - [sym_inline_note] = STATE(742), - [sym_pandoc_superscript] = STATE(742), - [sym_pandoc_subscript] = STATE(742), - [sym_pandoc_strikeout] = STATE(742), - [sym_pandoc_emph] = STATE(742), - [sym_pandoc_strong] = STATE(742), - [sym_pandoc_str] = STATE(742), - [sym__prose_punctuation] = STATE(742), - [sym_pandoc_line_break] = STATE(742), - [aux_sym_pipe_table_row_repeat1] = STATE(168), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(742), - [sym_entity_reference] = ACTIONS(2287), - [sym_numeric_character_reference] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_BANG_LBRACK] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2296), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2302), - [aux_sym_pandoc_str_token1] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2308), - [aux_sym__prose_punctuation_token1] = ACTIONS(2311), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2314), - [sym__whitespace] = ACTIONS(2317), - [sym__line_ending] = ACTIONS(2320), - [sym__eof] = ACTIONS(2320), - [sym__pipe_table_line_ending] = ACTIONS(2320), - [sym__code_span_start] = ACTIONS(2322), - [sym__html_comment] = ACTIONS(2287), - [sym__autolink] = ACTIONS(2287), - [sym__highlight_span_start] = ACTIONS(2325), - [sym__insert_span_start] = ACTIONS(2328), - [sym__delete_span_start] = ACTIONS(2331), - [sym__edit_comment_span_start] = ACTIONS(2334), - [sym__single_quote_span_open] = ACTIONS(2337), - [sym__double_quote_span_open] = ACTIONS(2340), - [sym__shortcode_open_escaped] = ACTIONS(2343), - [sym__shortcode_open] = ACTIONS(2346), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2349), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2352), - [sym__cite_author_in_text] = ACTIONS(2355), - [sym__cite_suppress_author] = ACTIONS(2358), - [sym__strikeout_open] = ACTIONS(2361), - [sym__subscript_open] = ACTIONS(2364), - [sym__superscript_open] = ACTIONS(2367), - [sym__inline_note_start_token] = ACTIONS(2370), - [sym__strong_emphasis_open_star] = ACTIONS(2373), - [sym__strong_emphasis_open_underscore] = ACTIONS(2376), - [sym__emphasis_open_star] = ACTIONS(2379), - [sym__emphasis_open_underscore] = ACTIONS(2382), - [sym_inline_note_reference] = ACTIONS(2287), - [sym_html_element] = ACTIONS(2287), - }, - [STATE(169)] = { - [sym_list_marker_parenthesis] = STATE(19), - [sym__list_item_parenthesis] = STATE(183), - [aux_sym__list_parenthesis_repeat1] = STATE(183), - [anon_sym_COLON] = ACTIONS(2385), - [sym_entity_reference] = ACTIONS(2385), - [sym_numeric_character_reference] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_BANG_LBRACK] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2385), - [aux_sym_pandoc_str_token1] = ACTIONS(2387), - [anon_sym_PIPE] = ACTIONS(2385), - [aux_sym__prose_punctuation_token1] = ACTIONS(2387), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2387), - [sym__line_ending] = ACTIONS(2385), - [sym__soft_line_ending] = ACTIONS(2385), - [sym__block_close] = ACTIONS(2385), - [sym__block_quote_start] = ACTIONS(2385), - [sym_atx_h1_marker] = ACTIONS(2385), - [sym_atx_h2_marker] = ACTIONS(2385), - [sym_atx_h3_marker] = ACTIONS(2385), - [sym_atx_h4_marker] = ACTIONS(2385), - [sym_atx_h5_marker] = ACTIONS(2385), - [sym_atx_h6_marker] = ACTIONS(2385), - [sym__thematic_break] = ACTIONS(2385), - [sym__list_marker_minus] = ACTIONS(2385), - [sym__list_marker_plus] = ACTIONS(2385), - [sym__list_marker_star] = ACTIONS(2385), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(2385), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2385), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2385), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2385), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2385), - [sym__list_marker_example] = ACTIONS(2385), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2385), - [sym__fenced_code_block_start_backtick] = ACTIONS(2385), - [sym_minus_metadata] = ACTIONS(2385), - [sym__pipe_table_start] = ACTIONS(2385), - [sym__fenced_div_start] = ACTIONS(2385), - [sym__fenced_div_end] = ACTIONS(2385), - [sym_ref_id_specifier] = ACTIONS(2385), - [sym__code_span_start] = ACTIONS(2385), - [sym__html_comment] = ACTIONS(2385), - [sym__autolink] = ACTIONS(2385), - [sym__highlight_span_start] = ACTIONS(2385), - [sym__insert_span_start] = ACTIONS(2385), - [sym__delete_span_start] = ACTIONS(2385), - [sym__edit_comment_span_start] = ACTIONS(2385), - [sym__single_quote_span_open] = ACTIONS(2385), - [sym__double_quote_span_open] = ACTIONS(2385), - [sym__shortcode_open_escaped] = ACTIONS(2385), - [sym__shortcode_open] = ACTIONS(2385), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2385), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), - [sym__cite_author_in_text] = ACTIONS(2385), - [sym__cite_suppress_author] = ACTIONS(2385), - [sym__strikeout_open] = ACTIONS(2385), - [sym__subscript_open] = ACTIONS(2385), - [sym__superscript_open] = ACTIONS(2385), - [sym__inline_note_start_token] = ACTIONS(2385), - [sym__strong_emphasis_open_star] = ACTIONS(2385), - [sym__strong_emphasis_open_underscore] = ACTIONS(2385), - [sym__emphasis_open_star] = ACTIONS(2385), - [sym__emphasis_open_underscore] = ACTIONS(2385), - [sym_inline_note_reference] = ACTIONS(2385), - [sym_html_element] = ACTIONS(2385), - }, - [STATE(170)] = { - [sym_list_marker_example] = STATE(2), - [sym__list_item_example] = STATE(184), - [aux_sym__list_example_repeat1] = STATE(184), - [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), - [aux_sym__prose_punctuation_token1] = ACTIONS(2391), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2391), - [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(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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__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), }, [STATE(171)] = { - [sym_pipe_table_cell] = STATE(2590), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2393), - [sym__line_ending] = ACTIONS(2395), - [sym__eof] = ACTIONS(2395), - [sym__pipe_table_line_ending] = ACTIONS(2395), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), - [sym__pipe_table_delimiter] = ACTIONS(2397), + [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), }, [STATE(172)] = { - [sym_pipe_table_cell] = STATE(2603), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2393), - [sym__line_ending] = ACTIONS(2399), - [sym__eof] = ACTIONS(2399), - [sym__pipe_table_line_ending] = ACTIONS(2399), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), - [sym__pipe_table_delimiter] = ACTIONS(2397), + [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), }, [STATE(173)] = { - [sym_pipe_table_cell] = STATE(2603), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2393), - [sym__line_ending] = ACTIONS(2395), - [sym__eof] = ACTIONS(2395), - [sym__pipe_table_line_ending] = ACTIONS(2395), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), - [sym__pipe_table_delimiter] = ACTIONS(2397), + [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), }, [STATE(174)] = { - [sym_pipe_table_cell] = STATE(2605), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym_pipe_table_row_repeat1] = STATE(168), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2401), - [sym__line_ending] = ACTIONS(2399), - [sym__eof] = ACTIONS(2399), - [sym__pipe_table_line_ending] = ACTIONS(2399), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), + [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), }, [STATE(175)] = { - [sym_pipe_table_cell] = STATE(2612), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2393), - [sym__line_ending] = ACTIONS(2403), - [sym__eof] = ACTIONS(2403), - [sym__pipe_table_line_ending] = ACTIONS(2403), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), - [sym__pipe_table_delimiter] = ACTIONS(2397), + [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), }, [STATE(176)] = { - [sym_pipe_table_cell] = STATE(2592), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym_pipe_table_row_repeat1] = STATE(168), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2405), - [sym__line_ending] = ACTIONS(2407), - [sym__eof] = ACTIONS(2407), - [sym__pipe_table_line_ending] = ACTIONS(2407), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), + [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), }, [STATE(177)] = { - [sym_pipe_table_cell] = STATE(2592), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym_pipe_table_row_repeat1] = STATE(174), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2409), - [sym__line_ending] = ACTIONS(2411), - [sym__eof] = ACTIONS(2411), - [sym__pipe_table_line_ending] = ACTIONS(2411), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), + [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), }, [STATE(178)] = { - [sym_list_marker_star] = STATE(17), - [sym__list_item_star] = STATE(181), - [aux_sym__list_star_repeat1] = STATE(181), - [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), - [aux_sym__prose_punctuation_token1] = ACTIONS(2415), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2415), - [sym__line_ending] = ACTIONS(2413), - [sym__soft_line_ending] = ACTIONS(2413), - [sym__block_close] = ACTIONS(2413), - [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(51), - [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(51), - [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__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), }, [STATE(179)] = { - [sym_list_marker_plus] = STATE(15), - [sym__list_item_plus] = STATE(179), - [aux_sym__list_plus_repeat1] = STATE(179), - [anon_sym_COLON] = ACTIONS(2417), - [sym_entity_reference] = ACTIONS(2417), - [sym_numeric_character_reference] = ACTIONS(2417), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_BANG_LBRACK] = ACTIONS(2417), - [anon_sym_DOLLAR] = ACTIONS(2419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2417), - [aux_sym_pandoc_str_token1] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2417), - [aux_sym__prose_punctuation_token1] = ACTIONS(2419), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2419), - [sym__line_ending] = ACTIONS(2417), - [sym__soft_line_ending] = ACTIONS(2417), - [sym__block_close] = ACTIONS(2417), - [sym__block_quote_start] = ACTIONS(2417), - [sym_atx_h1_marker] = ACTIONS(2417), - [sym_atx_h2_marker] = ACTIONS(2417), - [sym_atx_h3_marker] = ACTIONS(2417), - [sym_atx_h4_marker] = ACTIONS(2417), - [sym_atx_h5_marker] = ACTIONS(2417), - [sym_atx_h6_marker] = ACTIONS(2417), - [sym__thematic_break] = ACTIONS(2417), - [sym__list_marker_minus] = ACTIONS(2417), - [sym__list_marker_plus] = ACTIONS(2421), - [sym__list_marker_star] = ACTIONS(2417), - [sym__list_marker_parenthesis] = ACTIONS(2417), - [sym__list_marker_dot] = ACTIONS(2417), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2417), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2421), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2417), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2417), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2417), - [sym__list_marker_example] = ACTIONS(2417), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2417), - [sym__fenced_code_block_start_backtick] = ACTIONS(2417), - [sym_minus_metadata] = ACTIONS(2417), - [sym__pipe_table_start] = ACTIONS(2417), - [sym__fenced_div_start] = ACTIONS(2417), - [sym__fenced_div_end] = ACTIONS(2417), - [sym_ref_id_specifier] = ACTIONS(2417), - [sym__code_span_start] = ACTIONS(2417), - [sym__html_comment] = ACTIONS(2417), - [sym__autolink] = ACTIONS(2417), - [sym__highlight_span_start] = ACTIONS(2417), - [sym__insert_span_start] = ACTIONS(2417), - [sym__delete_span_start] = ACTIONS(2417), - [sym__edit_comment_span_start] = ACTIONS(2417), - [sym__single_quote_span_open] = ACTIONS(2417), - [sym__double_quote_span_open] = ACTIONS(2417), - [sym__shortcode_open_escaped] = ACTIONS(2417), - [sym__shortcode_open] = ACTIONS(2417), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2417), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2417), - [sym__cite_author_in_text] = ACTIONS(2417), - [sym__cite_suppress_author] = ACTIONS(2417), - [sym__strikeout_open] = ACTIONS(2417), - [sym__subscript_open] = ACTIONS(2417), - [sym__superscript_open] = ACTIONS(2417), - [sym__inline_note_start_token] = ACTIONS(2417), - [sym__strong_emphasis_open_star] = ACTIONS(2417), - [sym__strong_emphasis_open_underscore] = ACTIONS(2417), - [sym__emphasis_open_star] = ACTIONS(2417), - [sym__emphasis_open_underscore] = ACTIONS(2417), - [sym_inline_note_reference] = ACTIONS(2417), - [sym_html_element] = ACTIONS(2417), + [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), }, [STATE(180)] = { - [sym_list_marker_minus] = STATE(16), - [sym__list_item_minus] = STATE(180), - [aux_sym__list_minus_repeat1] = STATE(180), - [anon_sym_COLON] = ACTIONS(2424), - [sym_entity_reference] = ACTIONS(2424), - [sym_numeric_character_reference] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_BANG_LBRACK] = ACTIONS(2424), - [anon_sym_DOLLAR] = ACTIONS(2426), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2424), - [anon_sym_LBRACE] = ACTIONS(2424), - [aux_sym_pandoc_str_token1] = ACTIONS(2426), - [anon_sym_PIPE] = ACTIONS(2424), - [aux_sym__prose_punctuation_token1] = ACTIONS(2426), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2426), - [sym__line_ending] = ACTIONS(2424), - [sym__soft_line_ending] = ACTIONS(2424), - [sym__block_close] = ACTIONS(2424), - [sym__block_quote_start] = ACTIONS(2424), - [sym_atx_h1_marker] = ACTIONS(2424), - [sym_atx_h2_marker] = ACTIONS(2424), - [sym_atx_h3_marker] = ACTIONS(2424), - [sym_atx_h4_marker] = ACTIONS(2424), - [sym_atx_h5_marker] = ACTIONS(2424), - [sym_atx_h6_marker] = ACTIONS(2424), - [sym__thematic_break] = ACTIONS(2424), - [sym__list_marker_minus] = ACTIONS(2428), - [sym__list_marker_plus] = ACTIONS(2424), - [sym__list_marker_star] = ACTIONS(2424), - [sym__list_marker_parenthesis] = ACTIONS(2424), - [sym__list_marker_dot] = ACTIONS(2424), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2428), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2424), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2424), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2424), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2424), - [sym__list_marker_example] = ACTIONS(2424), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2424), - [sym__fenced_code_block_start_backtick] = ACTIONS(2424), - [sym_minus_metadata] = ACTIONS(2424), - [sym__pipe_table_start] = ACTIONS(2424), - [sym__fenced_div_start] = ACTIONS(2424), - [sym__fenced_div_end] = ACTIONS(2424), - [sym_ref_id_specifier] = ACTIONS(2424), - [sym__code_span_start] = ACTIONS(2424), - [sym__html_comment] = ACTIONS(2424), - [sym__autolink] = ACTIONS(2424), - [sym__highlight_span_start] = ACTIONS(2424), - [sym__insert_span_start] = ACTIONS(2424), - [sym__delete_span_start] = ACTIONS(2424), - [sym__edit_comment_span_start] = ACTIONS(2424), - [sym__single_quote_span_open] = ACTIONS(2424), - [sym__double_quote_span_open] = ACTIONS(2424), - [sym__shortcode_open_escaped] = ACTIONS(2424), - [sym__shortcode_open] = ACTIONS(2424), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2424), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2424), - [sym__cite_author_in_text] = ACTIONS(2424), - [sym__cite_suppress_author] = ACTIONS(2424), - [sym__strikeout_open] = ACTIONS(2424), - [sym__subscript_open] = ACTIONS(2424), - [sym__superscript_open] = ACTIONS(2424), - [sym__inline_note_start_token] = ACTIONS(2424), - [sym__strong_emphasis_open_star] = ACTIONS(2424), - [sym__strong_emphasis_open_underscore] = ACTIONS(2424), - [sym__emphasis_open_star] = ACTIONS(2424), - [sym__emphasis_open_underscore] = ACTIONS(2424), - [sym_inline_note_reference] = ACTIONS(2424), - [sym_html_element] = ACTIONS(2424), + [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), }, [STATE(181)] = { - [sym_list_marker_star] = STATE(17), - [sym__list_item_star] = STATE(181), - [aux_sym__list_star_repeat1] = STATE(181), - [anon_sym_COLON] = ACTIONS(2431), - [sym_entity_reference] = ACTIONS(2431), - [sym_numeric_character_reference] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_BANG_LBRACK] = ACTIONS(2431), - [anon_sym_DOLLAR] = ACTIONS(2433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [aux_sym_pandoc_str_token1] = ACTIONS(2433), - [anon_sym_PIPE] = ACTIONS(2431), - [aux_sym__prose_punctuation_token1] = ACTIONS(2433), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2433), - [sym__line_ending] = ACTIONS(2431), - [sym__soft_line_ending] = ACTIONS(2431), - [sym__block_close] = ACTIONS(2431), - [sym__block_quote_start] = ACTIONS(2431), - [sym_atx_h1_marker] = ACTIONS(2431), - [sym_atx_h2_marker] = ACTIONS(2431), - [sym_atx_h3_marker] = ACTIONS(2431), - [sym_atx_h4_marker] = ACTIONS(2431), - [sym_atx_h5_marker] = ACTIONS(2431), - [sym_atx_h6_marker] = ACTIONS(2431), - [sym__thematic_break] = ACTIONS(2431), - [sym__list_marker_minus] = ACTIONS(2431), - [sym__list_marker_plus] = ACTIONS(2431), - [sym__list_marker_star] = ACTIONS(2435), - [sym__list_marker_parenthesis] = ACTIONS(2431), - [sym__list_marker_dot] = ACTIONS(2431), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2431), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2431), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2435), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2431), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2431), - [sym__list_marker_example] = ACTIONS(2431), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2431), - [sym__fenced_code_block_start_backtick] = ACTIONS(2431), - [sym_minus_metadata] = ACTIONS(2431), - [sym__pipe_table_start] = ACTIONS(2431), - [sym__fenced_div_start] = ACTIONS(2431), - [sym__fenced_div_end] = ACTIONS(2431), - [sym_ref_id_specifier] = ACTIONS(2431), - [sym__code_span_start] = ACTIONS(2431), - [sym__html_comment] = ACTIONS(2431), - [sym__autolink] = ACTIONS(2431), - [sym__highlight_span_start] = ACTIONS(2431), - [sym__insert_span_start] = ACTIONS(2431), - [sym__delete_span_start] = ACTIONS(2431), - [sym__edit_comment_span_start] = ACTIONS(2431), - [sym__single_quote_span_open] = ACTIONS(2431), - [sym__double_quote_span_open] = ACTIONS(2431), - [sym__shortcode_open_escaped] = ACTIONS(2431), - [sym__shortcode_open] = ACTIONS(2431), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2431), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2431), - [sym__cite_author_in_text] = ACTIONS(2431), - [sym__cite_suppress_author] = ACTIONS(2431), - [sym__strikeout_open] = ACTIONS(2431), - [sym__subscript_open] = ACTIONS(2431), - [sym__superscript_open] = ACTIONS(2431), - [sym__inline_note_start_token] = ACTIONS(2431), - [sym__strong_emphasis_open_star] = ACTIONS(2431), - [sym__strong_emphasis_open_underscore] = ACTIONS(2431), - [sym__emphasis_open_star] = ACTIONS(2431), - [sym__emphasis_open_underscore] = ACTIONS(2431), - [sym_inline_note_reference] = ACTIONS(2431), - [sym_html_element] = ACTIONS(2431), + [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), }, [STATE(182)] = { - [sym_list_marker_dot] = STATE(18), - [sym__list_item_dot] = STATE(182), - [aux_sym__list_dot_repeat1] = STATE(182), - [anon_sym_COLON] = ACTIONS(2438), - [sym_entity_reference] = ACTIONS(2438), - [sym_numeric_character_reference] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_BANG_LBRACK] = ACTIONS(2438), - [anon_sym_DOLLAR] = ACTIONS(2440), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2438), - [aux_sym_pandoc_str_token1] = ACTIONS(2440), - [anon_sym_PIPE] = ACTIONS(2438), - [aux_sym__prose_punctuation_token1] = ACTIONS(2440), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2440), - [sym__line_ending] = ACTIONS(2438), - [sym__soft_line_ending] = ACTIONS(2438), - [sym__block_close] = ACTIONS(2438), - [sym__block_quote_start] = ACTIONS(2438), - [sym_atx_h1_marker] = ACTIONS(2438), - [sym_atx_h2_marker] = ACTIONS(2438), - [sym_atx_h3_marker] = ACTIONS(2438), - [sym_atx_h4_marker] = ACTIONS(2438), - [sym_atx_h5_marker] = ACTIONS(2438), - [sym_atx_h6_marker] = ACTIONS(2438), - [sym__thematic_break] = ACTIONS(2438), - [sym__list_marker_minus] = ACTIONS(2438), - [sym__list_marker_plus] = ACTIONS(2438), - [sym__list_marker_star] = ACTIONS(2438), - [sym__list_marker_parenthesis] = ACTIONS(2438), - [sym__list_marker_dot] = ACTIONS(2442), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2438), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2438), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2438), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2438), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2442), - [sym__list_marker_example] = ACTIONS(2438), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2438), - [sym__fenced_code_block_start_backtick] = ACTIONS(2438), - [sym_minus_metadata] = ACTIONS(2438), - [sym__pipe_table_start] = ACTIONS(2438), - [sym__fenced_div_start] = ACTIONS(2438), - [sym__fenced_div_end] = ACTIONS(2438), - [sym_ref_id_specifier] = ACTIONS(2438), - [sym__code_span_start] = ACTIONS(2438), - [sym__html_comment] = ACTIONS(2438), - [sym__autolink] = ACTIONS(2438), - [sym__highlight_span_start] = ACTIONS(2438), - [sym__insert_span_start] = ACTIONS(2438), - [sym__delete_span_start] = ACTIONS(2438), - [sym__edit_comment_span_start] = ACTIONS(2438), - [sym__single_quote_span_open] = ACTIONS(2438), - [sym__double_quote_span_open] = ACTIONS(2438), - [sym__shortcode_open_escaped] = ACTIONS(2438), - [sym__shortcode_open] = ACTIONS(2438), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2438), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2438), - [sym__cite_author_in_text] = ACTIONS(2438), - [sym__cite_suppress_author] = ACTIONS(2438), - [sym__strikeout_open] = ACTIONS(2438), - [sym__subscript_open] = ACTIONS(2438), - [sym__superscript_open] = ACTIONS(2438), - [sym__inline_note_start_token] = ACTIONS(2438), - [sym__strong_emphasis_open_star] = ACTIONS(2438), - [sym__strong_emphasis_open_underscore] = ACTIONS(2438), - [sym__emphasis_open_star] = ACTIONS(2438), - [sym__emphasis_open_underscore] = ACTIONS(2438), - [sym_inline_note_reference] = ACTIONS(2438), - [sym_html_element] = ACTIONS(2438), + [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), }, [STATE(183)] = { - [sym_list_marker_parenthesis] = STATE(19), - [sym__list_item_parenthesis] = STATE(183), - [aux_sym__list_parenthesis_repeat1] = STATE(183), - [anon_sym_COLON] = ACTIONS(2445), - [sym_entity_reference] = ACTIONS(2445), - [sym_numeric_character_reference] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2445), - [anon_sym_DOLLAR] = ACTIONS(2447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2445), - [aux_sym_pandoc_str_token1] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(2445), - [aux_sym__prose_punctuation_token1] = ACTIONS(2447), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2447), - [sym__line_ending] = ACTIONS(2445), - [sym__soft_line_ending] = ACTIONS(2445), - [sym__block_close] = ACTIONS(2445), - [sym__block_quote_start] = ACTIONS(2445), - [sym_atx_h1_marker] = ACTIONS(2445), - [sym_atx_h2_marker] = ACTIONS(2445), - [sym_atx_h3_marker] = ACTIONS(2445), - [sym_atx_h4_marker] = ACTIONS(2445), - [sym_atx_h5_marker] = ACTIONS(2445), - [sym_atx_h6_marker] = ACTIONS(2445), - [sym__thematic_break] = ACTIONS(2445), - [sym__list_marker_minus] = ACTIONS(2445), - [sym__list_marker_plus] = ACTIONS(2445), - [sym__list_marker_star] = ACTIONS(2445), - [sym__list_marker_parenthesis] = ACTIONS(2449), - [sym__list_marker_dot] = ACTIONS(2445), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2445), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2445), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2445), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2445), - [sym__list_marker_example] = ACTIONS(2445), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2445), - [sym__fenced_code_block_start_backtick] = ACTIONS(2445), - [sym_minus_metadata] = ACTIONS(2445), - [sym__pipe_table_start] = ACTIONS(2445), - [sym__fenced_div_start] = ACTIONS(2445), - [sym__fenced_div_end] = ACTIONS(2445), - [sym_ref_id_specifier] = ACTIONS(2445), - [sym__code_span_start] = ACTIONS(2445), - [sym__html_comment] = ACTIONS(2445), - [sym__autolink] = ACTIONS(2445), - [sym__highlight_span_start] = ACTIONS(2445), - [sym__insert_span_start] = ACTIONS(2445), - [sym__delete_span_start] = ACTIONS(2445), - [sym__edit_comment_span_start] = ACTIONS(2445), - [sym__single_quote_span_open] = ACTIONS(2445), - [sym__double_quote_span_open] = ACTIONS(2445), - [sym__shortcode_open_escaped] = ACTIONS(2445), - [sym__shortcode_open] = ACTIONS(2445), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2445), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2445), - [sym__cite_author_in_text] = ACTIONS(2445), - [sym__cite_suppress_author] = ACTIONS(2445), - [sym__strikeout_open] = ACTIONS(2445), - [sym__subscript_open] = ACTIONS(2445), - [sym__superscript_open] = ACTIONS(2445), - [sym__inline_note_start_token] = ACTIONS(2445), - [sym__strong_emphasis_open_star] = ACTIONS(2445), - [sym__strong_emphasis_open_underscore] = ACTIONS(2445), - [sym__emphasis_open_star] = ACTIONS(2445), - [sym__emphasis_open_underscore] = ACTIONS(2445), - [sym_inline_note_reference] = ACTIONS(2445), - [sym_html_element] = ACTIONS(2445), + [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), }, [STATE(184)] = { - [sym_list_marker_example] = STATE(2), - [sym__list_item_example] = STATE(184), - [aux_sym__list_example_repeat1] = STATE(184), - [anon_sym_COLON] = ACTIONS(2452), - [sym_entity_reference] = ACTIONS(2452), - [sym_numeric_character_reference] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_BANG_LBRACK] = ACTIONS(2452), - [anon_sym_DOLLAR] = ACTIONS(2454), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2452), - [aux_sym_pandoc_str_token1] = ACTIONS(2454), - [anon_sym_PIPE] = ACTIONS(2452), - [aux_sym__prose_punctuation_token1] = ACTIONS(2454), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2454), - [sym__line_ending] = ACTIONS(2452), - [sym__soft_line_ending] = ACTIONS(2452), - [sym__block_close] = ACTIONS(2452), - [sym__block_quote_start] = ACTIONS(2452), - [sym_atx_h1_marker] = ACTIONS(2452), - [sym_atx_h2_marker] = ACTIONS(2452), - [sym_atx_h3_marker] = ACTIONS(2452), - [sym_atx_h4_marker] = ACTIONS(2452), - [sym_atx_h5_marker] = ACTIONS(2452), - [sym_atx_h6_marker] = ACTIONS(2452), - [sym__thematic_break] = ACTIONS(2452), - [sym__list_marker_minus] = ACTIONS(2452), - [sym__list_marker_plus] = ACTIONS(2452), - [sym__list_marker_star] = ACTIONS(2452), - [sym__list_marker_parenthesis] = ACTIONS(2452), - [sym__list_marker_dot] = ACTIONS(2452), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_example] = ACTIONS(2456), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2456), - [sym__fenced_code_block_start_backtick] = ACTIONS(2452), - [sym_minus_metadata] = ACTIONS(2452), - [sym__pipe_table_start] = ACTIONS(2452), - [sym__fenced_div_start] = ACTIONS(2452), - [sym__fenced_div_end] = ACTIONS(2452), - [sym_ref_id_specifier] = ACTIONS(2452), - [sym__code_span_start] = ACTIONS(2452), - [sym__html_comment] = ACTIONS(2452), - [sym__autolink] = ACTIONS(2452), - [sym__highlight_span_start] = ACTIONS(2452), - [sym__insert_span_start] = ACTIONS(2452), - [sym__delete_span_start] = ACTIONS(2452), - [sym__edit_comment_span_start] = ACTIONS(2452), - [sym__single_quote_span_open] = ACTIONS(2452), - [sym__double_quote_span_open] = ACTIONS(2452), - [sym__shortcode_open_escaped] = ACTIONS(2452), - [sym__shortcode_open] = ACTIONS(2452), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2452), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2452), - [sym__cite_author_in_text] = ACTIONS(2452), - [sym__cite_suppress_author] = ACTIONS(2452), - [sym__strikeout_open] = ACTIONS(2452), - [sym__subscript_open] = ACTIONS(2452), - [sym__superscript_open] = ACTIONS(2452), - [sym__inline_note_start_token] = ACTIONS(2452), - [sym__strong_emphasis_open_star] = ACTIONS(2452), - [sym__strong_emphasis_open_underscore] = ACTIONS(2452), - [sym__emphasis_open_star] = ACTIONS(2452), - [sym__emphasis_open_underscore] = ACTIONS(2452), - [sym_inline_note_reference] = ACTIONS(2452), - [sym_html_element] = ACTIONS(2452), + [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), }, [STATE(185)] = { - [sym_pipe_table_cell] = STATE(2590), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2393), - [sym__line_ending] = ACTIONS(2407), - [sym__eof] = ACTIONS(2407), - [sym__pipe_table_line_ending] = ACTIONS(2407), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), - [sym__pipe_table_delimiter] = ACTIONS(2397), + [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), }, [STATE(186)] = { - [sym_pipe_table_cell] = STATE(2660), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2393), - [sym__line_ending] = ACTIONS(2395), - [sym__eof] = ACTIONS(2395), - [sym__pipe_table_line_ending] = ACTIONS(2395), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), - [sym__pipe_table_delimiter] = ACTIONS(2459), + [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), }, [STATE(187)] = { - [sym_pipe_table_cell] = STATE(2659), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym_pipe_table_row_repeat1] = STATE(168), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2461), - [sym__line_ending] = ACTIONS(2463), - [sym__eof] = ACTIONS(2463), - [sym__pipe_table_line_ending] = ACTIONS(2463), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), + [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), }, [STATE(188)] = { - [sym_list_marker_plus] = STATE(15), - [sym__list_item_plus] = STATE(179), - [aux_sym__list_plus_repeat1] = STATE(179), - [anon_sym_COLON] = ACTIONS(2465), - [sym_entity_reference] = ACTIONS(2465), - [sym_numeric_character_reference] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_BANG_LBRACK] = ACTIONS(2465), - [anon_sym_DOLLAR] = ACTIONS(2467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [aux_sym_pandoc_str_token1] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(2465), - [aux_sym__prose_punctuation_token1] = ACTIONS(2467), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2467), - [sym__line_ending] = ACTIONS(2465), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__block_close] = ACTIONS(2465), - [sym__block_quote_start] = ACTIONS(2465), - [sym_atx_h1_marker] = ACTIONS(2465), - [sym_atx_h2_marker] = ACTIONS(2465), - [sym_atx_h3_marker] = ACTIONS(2465), - [sym_atx_h4_marker] = ACTIONS(2465), - [sym_atx_h5_marker] = ACTIONS(2465), - [sym_atx_h6_marker] = ACTIONS(2465), - [sym__thematic_break] = ACTIONS(2465), - [sym__list_marker_minus] = ACTIONS(2465), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(2465), - [sym__list_marker_parenthesis] = ACTIONS(2465), - [sym__list_marker_dot] = ACTIONS(2465), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2465), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2465), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2465), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2465), - [sym__list_marker_example] = ACTIONS(2465), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2465), - [sym__fenced_code_block_start_backtick] = ACTIONS(2465), - [sym_minus_metadata] = ACTIONS(2465), - [sym__pipe_table_start] = ACTIONS(2465), - [sym__fenced_div_start] = ACTIONS(2465), - [sym__fenced_div_end] = ACTIONS(2465), - [sym_ref_id_specifier] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2465), - [sym__html_comment] = ACTIONS(2465), - [sym__autolink] = ACTIONS(2465), - [sym__highlight_span_start] = ACTIONS(2465), - [sym__insert_span_start] = ACTIONS(2465), - [sym__delete_span_start] = ACTIONS(2465), - [sym__edit_comment_span_start] = ACTIONS(2465), - [sym__single_quote_span_open] = ACTIONS(2465), - [sym__double_quote_span_open] = ACTIONS(2465), - [sym__shortcode_open_escaped] = ACTIONS(2465), - [sym__shortcode_open] = ACTIONS(2465), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2465), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2465), - [sym__cite_author_in_text] = ACTIONS(2465), - [sym__cite_suppress_author] = ACTIONS(2465), - [sym__strikeout_open] = ACTIONS(2465), - [sym__subscript_open] = ACTIONS(2465), - [sym__superscript_open] = ACTIONS(2465), - [sym__inline_note_start_token] = ACTIONS(2465), - [sym__strong_emphasis_open_star] = ACTIONS(2465), - [sym__strong_emphasis_open_underscore] = ACTIONS(2465), - [sym__emphasis_open_star] = ACTIONS(2465), - [sym__emphasis_open_underscore] = ACTIONS(2465), - [sym_inline_note_reference] = ACTIONS(2465), - [sym_html_element] = ACTIONS(2465), + [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), }, [STATE(189)] = { - [sym_list_marker_minus] = STATE(16), - [sym__list_item_minus] = STATE(180), - [aux_sym__list_minus_repeat1] = STATE(180), - [anon_sym_COLON] = ACTIONS(2469), - [sym_entity_reference] = ACTIONS(2469), - [sym_numeric_character_reference] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_BANG_LBRACK] = ACTIONS(2469), - [anon_sym_DOLLAR] = ACTIONS(2471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2469), - [anon_sym_LBRACE] = ACTIONS(2469), - [aux_sym_pandoc_str_token1] = ACTIONS(2471), - [anon_sym_PIPE] = ACTIONS(2469), - [aux_sym__prose_punctuation_token1] = ACTIONS(2471), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2471), - [sym__line_ending] = ACTIONS(2469), - [sym__soft_line_ending] = ACTIONS(2469), - [sym__block_close] = ACTIONS(2469), - [sym__block_quote_start] = ACTIONS(2469), - [sym_atx_h1_marker] = ACTIONS(2469), - [sym_atx_h2_marker] = ACTIONS(2469), - [sym_atx_h3_marker] = ACTIONS(2469), - [sym_atx_h4_marker] = ACTIONS(2469), - [sym_atx_h5_marker] = ACTIONS(2469), - [sym_atx_h6_marker] = ACTIONS(2469), - [sym__thematic_break] = ACTIONS(2469), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(2469), - [sym__list_marker_star] = ACTIONS(2469), - [sym__list_marker_parenthesis] = ACTIONS(2469), - [sym__list_marker_dot] = ACTIONS(2469), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2469), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2469), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2469), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2469), - [sym__list_marker_example] = ACTIONS(2469), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2469), - [sym__fenced_code_block_start_backtick] = ACTIONS(2469), - [sym_minus_metadata] = ACTIONS(2469), - [sym__pipe_table_start] = ACTIONS(2469), - [sym__fenced_div_start] = ACTIONS(2469), - [sym__fenced_div_end] = ACTIONS(2469), - [sym_ref_id_specifier] = ACTIONS(2469), - [sym__code_span_start] = ACTIONS(2469), - [sym__html_comment] = ACTIONS(2469), - [sym__autolink] = ACTIONS(2469), - [sym__highlight_span_start] = ACTIONS(2469), - [sym__insert_span_start] = ACTIONS(2469), - [sym__delete_span_start] = ACTIONS(2469), - [sym__edit_comment_span_start] = ACTIONS(2469), - [sym__single_quote_span_open] = ACTIONS(2469), - [sym__double_quote_span_open] = ACTIONS(2469), - [sym__shortcode_open_escaped] = ACTIONS(2469), - [sym__shortcode_open] = ACTIONS(2469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2469), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2469), - [sym__cite_author_in_text] = ACTIONS(2469), - [sym__cite_suppress_author] = ACTIONS(2469), - [sym__strikeout_open] = ACTIONS(2469), - [sym__subscript_open] = ACTIONS(2469), - [sym__superscript_open] = ACTIONS(2469), - [sym__inline_note_start_token] = ACTIONS(2469), - [sym__strong_emphasis_open_star] = ACTIONS(2469), - [sym__strong_emphasis_open_underscore] = ACTIONS(2469), - [sym__emphasis_open_star] = ACTIONS(2469), - [sym__emphasis_open_underscore] = ACTIONS(2469), - [sym_inline_note_reference] = ACTIONS(2469), - [sym_html_element] = ACTIONS(2469), + [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), }, [STATE(190)] = { - [sym__atx_heading_content] = STATE(2844), - [sym__inlines] = STATE(2844), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(535), - [sym_pandoc_line_break] = STATE(417), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(113), - [sym__eof] = ACTIONS(2475), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), + [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), }, [STATE(191)] = { - [sym_list_marker_plus] = STATE(7), - [sym__list_item_plus] = STATE(229), - [aux_sym__list_plus_repeat1] = STATE(229), - [ts_builtin_sym_end] = ACTIONS(2465), - [anon_sym_COLON] = ACTIONS(2465), - [sym_entity_reference] = ACTIONS(2465), - [sym_numeric_character_reference] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_BANG_LBRACK] = ACTIONS(2465), - [anon_sym_DOLLAR] = ACTIONS(2467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [aux_sym_pandoc_str_token1] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(2465), - [aux_sym__prose_punctuation_token1] = ACTIONS(2467), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2467), - [sym__line_ending] = ACTIONS(2465), - [sym__soft_line_ending] = ACTIONS(2465), - [sym__block_quote_start] = ACTIONS(2465), - [sym_atx_h1_marker] = ACTIONS(2465), - [sym_atx_h2_marker] = ACTIONS(2465), - [sym_atx_h3_marker] = ACTIONS(2465), - [sym_atx_h4_marker] = ACTIONS(2465), - [sym_atx_h5_marker] = ACTIONS(2465), - [sym_atx_h6_marker] = ACTIONS(2465), - [sym__thematic_break] = ACTIONS(2465), - [sym__list_marker_minus] = ACTIONS(2465), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(2465), - [sym__list_marker_parenthesis] = ACTIONS(2465), - [sym__list_marker_dot] = ACTIONS(2465), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2465), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2465), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2465), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2465), - [sym__list_marker_example] = ACTIONS(2465), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2465), - [sym__fenced_code_block_start_backtick] = ACTIONS(2465), - [sym_minus_metadata] = ACTIONS(2465), - [sym__pipe_table_start] = ACTIONS(2465), - [sym__fenced_div_start] = ACTIONS(2465), - [sym_ref_id_specifier] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2465), - [sym__html_comment] = ACTIONS(2465), - [sym__autolink] = ACTIONS(2465), - [sym__highlight_span_start] = ACTIONS(2465), - [sym__insert_span_start] = ACTIONS(2465), - [sym__delete_span_start] = ACTIONS(2465), - [sym__edit_comment_span_start] = ACTIONS(2465), - [sym__single_quote_span_open] = ACTIONS(2465), - [sym__double_quote_span_open] = ACTIONS(2465), - [sym__shortcode_open_escaped] = ACTIONS(2465), - [sym__shortcode_open] = ACTIONS(2465), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2465), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2465), - [sym__cite_author_in_text] = ACTIONS(2465), - [sym__cite_suppress_author] = ACTIONS(2465), - [sym__strikeout_open] = ACTIONS(2465), - [sym__subscript_open] = ACTIONS(2465), - [sym__superscript_open] = ACTIONS(2465), - [sym__inline_note_start_token] = ACTIONS(2465), - [sym__strong_emphasis_open_star] = ACTIONS(2465), - [sym__strong_emphasis_open_underscore] = ACTIONS(2465), - [sym__emphasis_open_star] = ACTIONS(2465), - [sym__emphasis_open_underscore] = ACTIONS(2465), - [sym_inline_note_reference] = ACTIONS(2465), - [sym_html_element] = ACTIONS(2465), + [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), }, [STATE(192)] = { - [sym__atx_heading_content] = STATE(2825), - [sym__inlines] = STATE(2825), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(367), - [sym_pandoc_line_break] = STATE(417), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(183), - [sym__eof] = ACTIONS(2477), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), + [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), }, [STATE(193)] = { - [sym__atx_heading_content] = STATE(2826), - [sym__inlines] = STATE(2826), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(369), - [sym_pandoc_line_break] = STATE(417), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(183), - [sym__eof] = ACTIONS(2479), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), + [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), }, [STATE(194)] = { - [sym__inlines] = STATE(3871), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(663), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(663), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2491), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2503), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(195)] = { - [sym__inlines] = STATE(3922), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(664), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(664), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2551), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(196)] = { - [sym__inlines] = STATE(3961), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(666), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(666), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2553), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2555), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(197)] = { - [sym__inlines] = STATE(3967), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(677), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(677), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2557), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2559), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(198)] = { - [sym__inlines] = STATE(3492), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(737), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(737), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2561), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2563), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(199)] = { - [sym__inlines] = STATE(3496), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(738), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(738), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2567), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(200)] = { - [sym__inlines] = STATE(3930), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(732), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(732), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2569), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2571), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(201)] = { - [sym__inlines] = STATE(3947), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(733), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(733), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2573), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2575), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(202)] = { - [sym__inlines] = STATE(3962), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(734), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(734), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2577), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2579), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(203)] = { - [sym__inlines] = STATE(3964), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(743), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(743), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2583), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(204)] = { - [sym__inlines] = STATE(3500), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(739), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(739), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2587), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(205)] = { - [sym_list_marker_dot] = STATE(12), - [sym__list_item_dot] = STATE(205), - [aux_sym__list_dot_repeat1] = STATE(205), - [anon_sym_COLON] = ACTIONS(2438), - [sym_entity_reference] = ACTIONS(2438), - [sym_numeric_character_reference] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_BANG_LBRACK] = ACTIONS(2438), - [anon_sym_DOLLAR] = ACTIONS(2440), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2438), - [aux_sym_pandoc_str_token1] = ACTIONS(2440), - [anon_sym_PIPE] = ACTIONS(2438), - [aux_sym__prose_punctuation_token1] = ACTIONS(2440), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2440), - [sym__line_ending] = ACTIONS(2438), - [sym__soft_line_ending] = ACTIONS(2438), - [sym__block_close] = ACTIONS(2438), - [sym__block_quote_start] = ACTIONS(2438), - [sym_atx_h1_marker] = ACTIONS(2438), - [sym_atx_h2_marker] = ACTIONS(2438), - [sym_atx_h3_marker] = ACTIONS(2438), - [sym_atx_h4_marker] = ACTIONS(2438), - [sym_atx_h5_marker] = ACTIONS(2438), - [sym_atx_h6_marker] = ACTIONS(2438), - [sym__thematic_break] = ACTIONS(2438), - [sym__list_marker_minus] = ACTIONS(2438), - [sym__list_marker_plus] = ACTIONS(2438), - [sym__list_marker_star] = ACTIONS(2438), - [sym__list_marker_parenthesis] = ACTIONS(2438), - [sym__list_marker_dot] = ACTIONS(2442), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2438), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2438), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2438), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2438), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2442), - [sym__list_marker_example] = ACTIONS(2438), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2438), - [sym__fenced_code_block_start_backtick] = ACTIONS(2438), - [sym_minus_metadata] = ACTIONS(2438), - [sym__pipe_table_start] = ACTIONS(2438), - [sym__fenced_div_start] = ACTIONS(2438), - [sym_ref_id_specifier] = ACTIONS(2438), - [sym__code_span_start] = ACTIONS(2438), - [sym__html_comment] = ACTIONS(2438), - [sym__autolink] = ACTIONS(2438), - [sym__highlight_span_start] = ACTIONS(2438), - [sym__insert_span_start] = ACTIONS(2438), - [sym__delete_span_start] = ACTIONS(2438), - [sym__edit_comment_span_start] = ACTIONS(2438), - [sym__single_quote_span_open] = ACTIONS(2438), - [sym__double_quote_span_open] = ACTIONS(2438), - [sym__shortcode_open_escaped] = ACTIONS(2438), - [sym__shortcode_open] = ACTIONS(2438), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2438), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2438), - [sym__cite_author_in_text] = ACTIONS(2438), - [sym__cite_suppress_author] = ACTIONS(2438), - [sym__strikeout_open] = ACTIONS(2438), - [sym__subscript_open] = ACTIONS(2438), - [sym__superscript_open] = ACTIONS(2438), - [sym__inline_note_start_token] = ACTIONS(2438), - [sym__strong_emphasis_open_star] = ACTIONS(2438), - [sym__strong_emphasis_open_underscore] = ACTIONS(2438), - [sym__emphasis_open_star] = ACTIONS(2438), - [sym__emphasis_open_underscore] = ACTIONS(2438), - [sym_inline_note_reference] = ACTIONS(2438), - [sym_html_element] = ACTIONS(2438), + [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), }, [STATE(206)] = { - [sym__inlines] = STATE(3560), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(689), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(689), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2589), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2591), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(207)] = { - [sym__inlines] = STATE(3565), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(690), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(690), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2593), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2595), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(208)] = { - [sym__inlines] = STATE(3582), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(691), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(691), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2597), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2599), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(209)] = { - [sym__inlines] = STATE(3586), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(692), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(692), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2601), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2603), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(210)] = { - [sym_list_marker_parenthesis] = STATE(13), - [sym__list_item_parenthesis] = STATE(210), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [anon_sym_COLON] = ACTIONS(2445), - [sym_entity_reference] = ACTIONS(2445), - [sym_numeric_character_reference] = ACTIONS(2445), - [anon_sym_LBRACK] = ACTIONS(2445), - [anon_sym_BANG_LBRACK] = ACTIONS(2445), - [anon_sym_DOLLAR] = ACTIONS(2447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2445), - [aux_sym_pandoc_str_token1] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(2445), - [aux_sym__prose_punctuation_token1] = ACTIONS(2447), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2447), - [sym__line_ending] = ACTIONS(2445), - [sym__soft_line_ending] = ACTIONS(2445), - [sym__block_close] = ACTIONS(2445), - [sym__block_quote_start] = ACTIONS(2445), - [sym_atx_h1_marker] = ACTIONS(2445), - [sym_atx_h2_marker] = ACTIONS(2445), - [sym_atx_h3_marker] = ACTIONS(2445), - [sym_atx_h4_marker] = ACTIONS(2445), - [sym_atx_h5_marker] = ACTIONS(2445), - [sym_atx_h6_marker] = ACTIONS(2445), - [sym__thematic_break] = ACTIONS(2445), - [sym__list_marker_minus] = ACTIONS(2445), - [sym__list_marker_plus] = ACTIONS(2445), - [sym__list_marker_star] = ACTIONS(2445), - [sym__list_marker_parenthesis] = ACTIONS(2449), - [sym__list_marker_dot] = ACTIONS(2445), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2445), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2445), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2445), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2445), - [sym__list_marker_example] = ACTIONS(2445), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2445), - [sym__fenced_code_block_start_backtick] = ACTIONS(2445), - [sym_minus_metadata] = ACTIONS(2445), - [sym__pipe_table_start] = ACTIONS(2445), - [sym__fenced_div_start] = ACTIONS(2445), - [sym_ref_id_specifier] = ACTIONS(2445), - [sym__code_span_start] = ACTIONS(2445), - [sym__html_comment] = ACTIONS(2445), - [sym__autolink] = ACTIONS(2445), - [sym__highlight_span_start] = ACTIONS(2445), - [sym__insert_span_start] = ACTIONS(2445), - [sym__delete_span_start] = ACTIONS(2445), - [sym__edit_comment_span_start] = ACTIONS(2445), - [sym__single_quote_span_open] = ACTIONS(2445), - [sym__double_quote_span_open] = ACTIONS(2445), - [sym__shortcode_open_escaped] = ACTIONS(2445), - [sym__shortcode_open] = ACTIONS(2445), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2445), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2445), - [sym__cite_author_in_text] = ACTIONS(2445), - [sym__cite_suppress_author] = ACTIONS(2445), - [sym__strikeout_open] = ACTIONS(2445), - [sym__subscript_open] = ACTIONS(2445), - [sym__superscript_open] = ACTIONS(2445), - [sym__inline_note_start_token] = ACTIONS(2445), - [sym__strong_emphasis_open_star] = ACTIONS(2445), - [sym__strong_emphasis_open_underscore] = ACTIONS(2445), - [sym__emphasis_open_star] = ACTIONS(2445), - [sym__emphasis_open_underscore] = ACTIONS(2445), - [sym_inline_note_reference] = ACTIONS(2445), - [sym_html_element] = ACTIONS(2445), + [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), }, [STATE(211)] = { - [sym_list_marker_dot] = STATE(12), - [sym__list_item_dot] = STATE(205), - [aux_sym__list_dot_repeat1] = STATE(205), - [anon_sym_COLON] = ACTIONS(2283), - [sym_entity_reference] = ACTIONS(2283), - [sym_numeric_character_reference] = ACTIONS(2283), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_BANG_LBRACK] = ACTIONS(2283), - [anon_sym_DOLLAR] = ACTIONS(2285), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2283), - [aux_sym_pandoc_str_token1] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2283), - [aux_sym__prose_punctuation_token1] = ACTIONS(2285), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2285), - [sym__line_ending] = ACTIONS(2283), - [sym__soft_line_ending] = ACTIONS(2283), - [sym__block_close] = ACTIONS(2283), - [sym__block_quote_start] = ACTIONS(2283), - [sym_atx_h1_marker] = ACTIONS(2283), - [sym_atx_h2_marker] = ACTIONS(2283), - [sym_atx_h3_marker] = ACTIONS(2283), - [sym_atx_h4_marker] = ACTIONS(2283), - [sym_atx_h5_marker] = ACTIONS(2283), - [sym_atx_h6_marker] = ACTIONS(2283), - [sym__thematic_break] = ACTIONS(2283), - [sym__list_marker_minus] = ACTIONS(2283), - [sym__list_marker_plus] = ACTIONS(2283), - [sym__list_marker_star] = ACTIONS(2283), - [sym__list_marker_parenthesis] = ACTIONS(2283), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2283), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2283), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2283), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2283), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(2283), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2283), - [sym__fenced_code_block_start_backtick] = ACTIONS(2283), - [sym_minus_metadata] = ACTIONS(2283), - [sym__pipe_table_start] = ACTIONS(2283), - [sym__fenced_div_start] = ACTIONS(2283), - [sym_ref_id_specifier] = ACTIONS(2283), - [sym__code_span_start] = ACTIONS(2283), - [sym__html_comment] = ACTIONS(2283), - [sym__autolink] = ACTIONS(2283), - [sym__highlight_span_start] = ACTIONS(2283), - [sym__insert_span_start] = ACTIONS(2283), - [sym__delete_span_start] = ACTIONS(2283), - [sym__edit_comment_span_start] = ACTIONS(2283), - [sym__single_quote_span_open] = ACTIONS(2283), - [sym__double_quote_span_open] = ACTIONS(2283), - [sym__shortcode_open_escaped] = ACTIONS(2283), - [sym__shortcode_open] = ACTIONS(2283), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2283), - [sym__cite_author_in_text] = ACTIONS(2283), - [sym__cite_suppress_author] = ACTIONS(2283), - [sym__strikeout_open] = ACTIONS(2283), - [sym__subscript_open] = ACTIONS(2283), - [sym__superscript_open] = ACTIONS(2283), - [sym__inline_note_start_token] = ACTIONS(2283), - [sym__strong_emphasis_open_star] = ACTIONS(2283), - [sym__strong_emphasis_open_underscore] = ACTIONS(2283), - [sym__emphasis_open_star] = ACTIONS(2283), - [sym__emphasis_open_underscore] = ACTIONS(2283), - [sym_inline_note_reference] = ACTIONS(2283), - [sym_html_element] = ACTIONS(2283), + [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), }, [STATE(212)] = { - [sym__inlines] = STATE(3777), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(721), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(721), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2607), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(213)] = { - [sym__inlines] = STATE(3783), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(723), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(723), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2611), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(214)] = { - [sym__inlines] = STATE(3786), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(729), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(729), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2613), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2615), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(215)] = { - [sym__inlines] = STATE(3794), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(730), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(730), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2617), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2619), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(216)] = { - [sym_list_marker_parenthesis] = STATE(13), - [sym__list_item_parenthesis] = STATE(210), - [aux_sym__list_parenthesis_repeat1] = STATE(210), - [anon_sym_COLON] = ACTIONS(2385), - [sym_entity_reference] = ACTIONS(2385), - [sym_numeric_character_reference] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_BANG_LBRACK] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2385), - [aux_sym_pandoc_str_token1] = ACTIONS(2387), - [anon_sym_PIPE] = ACTIONS(2385), - [aux_sym__prose_punctuation_token1] = ACTIONS(2387), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2387), - [sym__line_ending] = ACTIONS(2385), - [sym__soft_line_ending] = ACTIONS(2385), - [sym__block_close] = ACTIONS(2385), - [sym__block_quote_start] = ACTIONS(2385), - [sym_atx_h1_marker] = ACTIONS(2385), - [sym_atx_h2_marker] = ACTIONS(2385), - [sym_atx_h3_marker] = ACTIONS(2385), - [sym_atx_h4_marker] = ACTIONS(2385), - [sym_atx_h5_marker] = ACTIONS(2385), - [sym_atx_h6_marker] = ACTIONS(2385), - [sym__thematic_break] = ACTIONS(2385), - [sym__list_marker_minus] = ACTIONS(2385), - [sym__list_marker_plus] = ACTIONS(2385), - [sym__list_marker_star] = ACTIONS(2385), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(2385), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2385), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2385), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2385), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2385), - [sym__list_marker_example] = ACTIONS(2385), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2385), - [sym__fenced_code_block_start_backtick] = ACTIONS(2385), - [sym_minus_metadata] = ACTIONS(2385), - [sym__pipe_table_start] = ACTIONS(2385), - [sym__fenced_div_start] = ACTIONS(2385), - [sym_ref_id_specifier] = ACTIONS(2385), - [sym__code_span_start] = ACTIONS(2385), - [sym__html_comment] = ACTIONS(2385), - [sym__autolink] = ACTIONS(2385), - [sym__highlight_span_start] = ACTIONS(2385), - [sym__insert_span_start] = ACTIONS(2385), - [sym__delete_span_start] = ACTIONS(2385), - [sym__edit_comment_span_start] = ACTIONS(2385), - [sym__single_quote_span_open] = ACTIONS(2385), - [sym__double_quote_span_open] = ACTIONS(2385), - [sym__shortcode_open_escaped] = ACTIONS(2385), - [sym__shortcode_open] = ACTIONS(2385), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2385), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), - [sym__cite_author_in_text] = ACTIONS(2385), - [sym__cite_suppress_author] = ACTIONS(2385), - [sym__strikeout_open] = ACTIONS(2385), - [sym__subscript_open] = ACTIONS(2385), - [sym__superscript_open] = ACTIONS(2385), - [sym__inline_note_start_token] = ACTIONS(2385), - [sym__strong_emphasis_open_star] = ACTIONS(2385), - [sym__strong_emphasis_open_underscore] = ACTIONS(2385), - [sym__emphasis_open_star] = ACTIONS(2385), - [sym__emphasis_open_underscore] = ACTIONS(2385), - [sym_inline_note_reference] = ACTIONS(2385), - [sym_html_element] = ACTIONS(2385), - }, - [STATE(217)] = { - [sym__atx_heading_content] = STATE(3050), - [sym__inlines] = STATE(3050), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(547), - [sym_pandoc_line_break] = STATE(417), + [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), @@ -44495,346 +44109,410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(27), - [sym__eof] = ACTIONS(2621), - [sym__code_span_start] = ACTIONS(69), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(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(3317), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(651), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(651), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2623), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2625), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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_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), }, [STATE(219)] = { - [sym__inlines] = STATE(3319), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(655), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(655), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2627), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2629), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(220)] = { - [sym__inlines] = STATE(3333), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(656), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(656), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2631), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2633), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(221)] = { - [sym__inlines] = STATE(3335), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(661), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(661), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2635), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2637), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), + [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(222)] = { - [sym__atx_heading_content] = STATE(2789), - [sym__inlines] = STATE(2789), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(549), - [sym_pandoc_line_break] = STATE(417), + [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), @@ -44845,66 +44523,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(27), - [sym__eof] = ACTIONS(2639), - [sym__code_span_start] = ACTIONS(69), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(223)] = { - [sym__atx_heading_content] = STATE(3031), - [sym__inlines] = STATE(3031), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(553), - [sym_pandoc_line_break] = STATE(417), + [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), @@ -44915,766 +44592,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(27), - [sym__eof] = ACTIONS(2641), - [sym__code_span_start] = ACTIONS(69), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(224)] = { - [sym__inlines] = STATE(3475), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(679), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(679), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2643), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2645), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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), }, [STATE(225)] = { - [sym__inlines] = STATE(3478), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(680), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(680), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2647), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2649), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(226)] = { - [sym__inlines] = STATE(3484), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(683), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(683), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2651), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2653), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(227)] = { - [sym__inlines] = STATE(3486), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(684), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(684), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2657), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(228)] = { - [sym_list_marker_example] = STATE(14), - [sym__list_item_example] = STATE(228), - [aux_sym__list_example_repeat1] = STATE(228), - [anon_sym_COLON] = ACTIONS(2452), - [sym_entity_reference] = ACTIONS(2452), - [sym_numeric_character_reference] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_BANG_LBRACK] = ACTIONS(2452), - [anon_sym_DOLLAR] = ACTIONS(2454), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2452), - [aux_sym_pandoc_str_token1] = ACTIONS(2454), - [anon_sym_PIPE] = ACTIONS(2452), - [aux_sym__prose_punctuation_token1] = ACTIONS(2454), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2454), - [sym__line_ending] = ACTIONS(2452), - [sym__soft_line_ending] = ACTIONS(2452), - [sym__block_close] = ACTIONS(2452), - [sym__block_quote_start] = ACTIONS(2452), - [sym_atx_h1_marker] = ACTIONS(2452), - [sym_atx_h2_marker] = ACTIONS(2452), - [sym_atx_h3_marker] = ACTIONS(2452), - [sym_atx_h4_marker] = ACTIONS(2452), - [sym_atx_h5_marker] = ACTIONS(2452), - [sym_atx_h6_marker] = ACTIONS(2452), - [sym__thematic_break] = ACTIONS(2452), - [sym__list_marker_minus] = ACTIONS(2452), - [sym__list_marker_plus] = ACTIONS(2452), - [sym__list_marker_star] = ACTIONS(2452), - [sym__list_marker_parenthesis] = ACTIONS(2452), - [sym__list_marker_dot] = ACTIONS(2452), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_example] = ACTIONS(2456), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2456), - [sym__fenced_code_block_start_backtick] = ACTIONS(2452), - [sym_minus_metadata] = ACTIONS(2452), - [sym__pipe_table_start] = ACTIONS(2452), - [sym__fenced_div_start] = ACTIONS(2452), - [sym_ref_id_specifier] = ACTIONS(2452), - [sym__code_span_start] = ACTIONS(2452), - [sym__html_comment] = ACTIONS(2452), - [sym__autolink] = ACTIONS(2452), - [sym__highlight_span_start] = ACTIONS(2452), - [sym__insert_span_start] = ACTIONS(2452), - [sym__delete_span_start] = ACTIONS(2452), - [sym__edit_comment_span_start] = ACTIONS(2452), - [sym__single_quote_span_open] = ACTIONS(2452), - [sym__double_quote_span_open] = ACTIONS(2452), - [sym__shortcode_open_escaped] = ACTIONS(2452), - [sym__shortcode_open] = ACTIONS(2452), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2452), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2452), - [sym__cite_author_in_text] = ACTIONS(2452), - [sym__cite_suppress_author] = ACTIONS(2452), - [sym__strikeout_open] = ACTIONS(2452), - [sym__subscript_open] = ACTIONS(2452), - [sym__superscript_open] = ACTIONS(2452), - [sym__inline_note_start_token] = ACTIONS(2452), - [sym__strong_emphasis_open_star] = ACTIONS(2452), - [sym__strong_emphasis_open_underscore] = ACTIONS(2452), - [sym__emphasis_open_star] = ACTIONS(2452), - [sym__emphasis_open_underscore] = ACTIONS(2452), - [sym_inline_note_reference] = ACTIONS(2452), - [sym_html_element] = ACTIONS(2452), - }, - [STATE(229)] = { - [sym_list_marker_plus] = STATE(7), - [sym__list_item_plus] = STATE(229), - [aux_sym__list_plus_repeat1] = STATE(229), - [ts_builtin_sym_end] = ACTIONS(2417), - [anon_sym_COLON] = ACTIONS(2417), - [sym_entity_reference] = ACTIONS(2417), - [sym_numeric_character_reference] = ACTIONS(2417), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_BANG_LBRACK] = ACTIONS(2417), - [anon_sym_DOLLAR] = ACTIONS(2419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2417), - [aux_sym_pandoc_str_token1] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2417), - [aux_sym__prose_punctuation_token1] = ACTIONS(2419), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2419), - [sym__line_ending] = ACTIONS(2417), - [sym__soft_line_ending] = ACTIONS(2417), - [sym__block_quote_start] = ACTIONS(2417), - [sym_atx_h1_marker] = ACTIONS(2417), - [sym_atx_h2_marker] = ACTIONS(2417), - [sym_atx_h3_marker] = ACTIONS(2417), - [sym_atx_h4_marker] = ACTIONS(2417), - [sym_atx_h5_marker] = ACTIONS(2417), - [sym_atx_h6_marker] = ACTIONS(2417), - [sym__thematic_break] = ACTIONS(2417), - [sym__list_marker_minus] = ACTIONS(2417), - [sym__list_marker_plus] = ACTIONS(2421), - [sym__list_marker_star] = ACTIONS(2417), - [sym__list_marker_parenthesis] = ACTIONS(2417), - [sym__list_marker_dot] = ACTIONS(2417), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2417), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2421), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2417), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2417), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2417), - [sym__list_marker_example] = ACTIONS(2417), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2417), - [sym__fenced_code_block_start_backtick] = ACTIONS(2417), - [sym_minus_metadata] = ACTIONS(2417), - [sym__pipe_table_start] = ACTIONS(2417), - [sym__fenced_div_start] = ACTIONS(2417), - [sym_ref_id_specifier] = ACTIONS(2417), - [sym__code_span_start] = ACTIONS(2417), - [sym__html_comment] = ACTIONS(2417), - [sym__autolink] = ACTIONS(2417), - [sym__highlight_span_start] = ACTIONS(2417), - [sym__insert_span_start] = ACTIONS(2417), - [sym__delete_span_start] = ACTIONS(2417), - [sym__edit_comment_span_start] = ACTIONS(2417), - [sym__single_quote_span_open] = ACTIONS(2417), - [sym__double_quote_span_open] = ACTIONS(2417), - [sym__shortcode_open_escaped] = ACTIONS(2417), - [sym__shortcode_open] = ACTIONS(2417), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2417), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2417), - [sym__cite_author_in_text] = ACTIONS(2417), - [sym__cite_suppress_author] = ACTIONS(2417), - [sym__strikeout_open] = ACTIONS(2417), - [sym__subscript_open] = ACTIONS(2417), - [sym__superscript_open] = ACTIONS(2417), - [sym__inline_note_start_token] = ACTIONS(2417), - [sym__strong_emphasis_open_star] = ACTIONS(2417), - [sym__strong_emphasis_open_underscore] = ACTIONS(2417), - [sym__emphasis_open_star] = ACTIONS(2417), - [sym__emphasis_open_underscore] = ACTIONS(2417), - [sym_inline_note_reference] = ACTIONS(2417), - [sym_html_element] = ACTIONS(2417), - }, - [STATE(230)] = { - [sym__inlines] = STATE(3592), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(705), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(705), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2659), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2661), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(231)] = { - [sym__inlines] = STATE(3594), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(706), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(706), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2663), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2665), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(232)] = { - [sym__inlines] = STATE(3596), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(710), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(710), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2667), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2669), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(233)] = { - [sym__inlines] = STATE(3598), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(711), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(711), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2673), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(234)] = { - [sym__atx_heading_content] = STATE(3013), - [sym__inlines] = STATE(3013), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(546), - [sym_pandoc_line_break] = STATE(417), + [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), @@ -45685,486 +44730,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(27), - [sym__eof] = ACTIONS(2675), - [sym__code_span_start] = ACTIONS(69), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(235)] = { - [sym_list_marker_minus] = STATE(4), - [sym__list_item_minus] = STATE(235), - [aux_sym__list_minus_repeat1] = STATE(235), - [ts_builtin_sym_end] = ACTIONS(2424), - [anon_sym_COLON] = ACTIONS(2424), - [sym_entity_reference] = ACTIONS(2424), - [sym_numeric_character_reference] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_BANG_LBRACK] = ACTIONS(2424), - [anon_sym_DOLLAR] = ACTIONS(2426), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2424), - [anon_sym_LBRACE] = ACTIONS(2424), - [aux_sym_pandoc_str_token1] = ACTIONS(2426), - [anon_sym_PIPE] = ACTIONS(2424), - [aux_sym__prose_punctuation_token1] = ACTIONS(2426), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2426), - [sym__line_ending] = ACTIONS(2424), - [sym__soft_line_ending] = ACTIONS(2424), - [sym__block_quote_start] = ACTIONS(2424), - [sym_atx_h1_marker] = ACTIONS(2424), - [sym_atx_h2_marker] = ACTIONS(2424), - [sym_atx_h3_marker] = ACTIONS(2424), - [sym_atx_h4_marker] = ACTIONS(2424), - [sym_atx_h5_marker] = ACTIONS(2424), - [sym_atx_h6_marker] = ACTIONS(2424), - [sym__thematic_break] = ACTIONS(2424), - [sym__list_marker_minus] = ACTIONS(2428), - [sym__list_marker_plus] = ACTIONS(2424), - [sym__list_marker_star] = ACTIONS(2424), - [sym__list_marker_parenthesis] = ACTIONS(2424), - [sym__list_marker_dot] = ACTIONS(2424), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2428), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2424), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2424), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2424), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2424), - [sym__list_marker_example] = ACTIONS(2424), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2424), - [sym__fenced_code_block_start_backtick] = ACTIONS(2424), - [sym_minus_metadata] = ACTIONS(2424), - [sym__pipe_table_start] = ACTIONS(2424), - [sym__fenced_div_start] = ACTIONS(2424), - [sym_ref_id_specifier] = ACTIONS(2424), - [sym__code_span_start] = ACTIONS(2424), - [sym__html_comment] = ACTIONS(2424), - [sym__autolink] = ACTIONS(2424), - [sym__highlight_span_start] = ACTIONS(2424), - [sym__insert_span_start] = ACTIONS(2424), - [sym__delete_span_start] = ACTIONS(2424), - [sym__edit_comment_span_start] = ACTIONS(2424), - [sym__single_quote_span_open] = ACTIONS(2424), - [sym__double_quote_span_open] = ACTIONS(2424), - [sym__shortcode_open_escaped] = ACTIONS(2424), - [sym__shortcode_open] = ACTIONS(2424), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2424), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2424), - [sym__cite_author_in_text] = ACTIONS(2424), - [sym__cite_suppress_author] = ACTIONS(2424), - [sym__strikeout_open] = ACTIONS(2424), - [sym__subscript_open] = ACTIONS(2424), - [sym__superscript_open] = ACTIONS(2424), - [sym__inline_note_start_token] = ACTIONS(2424), - [sym__strong_emphasis_open_star] = ACTIONS(2424), - [sym__strong_emphasis_open_underscore] = ACTIONS(2424), - [sym__emphasis_open_star] = ACTIONS(2424), - [sym__emphasis_open_underscore] = ACTIONS(2424), - [sym_inline_note_reference] = ACTIONS(2424), - [sym_html_element] = ACTIONS(2424), - }, - [STATE(236)] = { - [sym__inlines] = STATE(3681), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(724), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(724), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2677), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2679), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(237)] = { - [sym__inlines] = STATE(3683), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(725), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(725), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2683), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(238)] = { - [sym__inlines] = STATE(3688), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(726), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(726), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2685), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2687), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(239)] = { - [sym__inlines] = STATE(3690), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(727), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(727), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2689), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2691), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(240)] = { - [sym_list_marker_star] = STATE(3), - [sym__list_item_star] = STATE(240), - [aux_sym__list_star_repeat1] = STATE(240), - [ts_builtin_sym_end] = ACTIONS(2431), - [anon_sym_COLON] = ACTIONS(2431), - [sym_entity_reference] = ACTIONS(2431), - [sym_numeric_character_reference] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_BANG_LBRACK] = ACTIONS(2431), - [anon_sym_DOLLAR] = ACTIONS(2433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [aux_sym_pandoc_str_token1] = ACTIONS(2433), - [anon_sym_PIPE] = ACTIONS(2431), - [aux_sym__prose_punctuation_token1] = ACTIONS(2433), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2433), - [sym__line_ending] = ACTIONS(2431), - [sym__soft_line_ending] = ACTIONS(2431), - [sym__block_quote_start] = ACTIONS(2431), - [sym_atx_h1_marker] = ACTIONS(2431), - [sym_atx_h2_marker] = ACTIONS(2431), - [sym_atx_h3_marker] = ACTIONS(2431), - [sym_atx_h4_marker] = ACTIONS(2431), - [sym_atx_h5_marker] = ACTIONS(2431), - [sym_atx_h6_marker] = ACTIONS(2431), - [sym__thematic_break] = ACTIONS(2431), - [sym__list_marker_minus] = ACTIONS(2431), - [sym__list_marker_plus] = ACTIONS(2431), - [sym__list_marker_star] = ACTIONS(2435), - [sym__list_marker_parenthesis] = ACTIONS(2431), - [sym__list_marker_dot] = ACTIONS(2431), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2431), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2431), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2435), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2431), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2431), - [sym__list_marker_example] = ACTIONS(2431), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2431), - [sym__fenced_code_block_start_backtick] = ACTIONS(2431), - [sym_minus_metadata] = ACTIONS(2431), - [sym__pipe_table_start] = ACTIONS(2431), - [sym__fenced_div_start] = ACTIONS(2431), - [sym_ref_id_specifier] = ACTIONS(2431), - [sym__code_span_start] = ACTIONS(2431), - [sym__html_comment] = ACTIONS(2431), - [sym__autolink] = ACTIONS(2431), - [sym__highlight_span_start] = ACTIONS(2431), - [sym__insert_span_start] = ACTIONS(2431), - [sym__delete_span_start] = ACTIONS(2431), - [sym__edit_comment_span_start] = ACTIONS(2431), - [sym__single_quote_span_open] = ACTIONS(2431), - [sym__double_quote_span_open] = ACTIONS(2431), - [sym__shortcode_open_escaped] = ACTIONS(2431), - [sym__shortcode_open] = ACTIONS(2431), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2431), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2431), - [sym__cite_author_in_text] = ACTIONS(2431), - [sym__cite_suppress_author] = ACTIONS(2431), - [sym__strikeout_open] = ACTIONS(2431), - [sym__subscript_open] = ACTIONS(2431), - [sym__superscript_open] = ACTIONS(2431), - [sym__inline_note_start_token] = ACTIONS(2431), - [sym__strong_emphasis_open_star] = ACTIONS(2431), - [sym__strong_emphasis_open_underscore] = ACTIONS(2431), - [sym__emphasis_open_star] = ACTIONS(2431), - [sym__emphasis_open_underscore] = ACTIONS(2431), - [sym_inline_note_reference] = ACTIONS(2431), - [sym_html_element] = ACTIONS(2431), - }, - [STATE(241)] = { - [sym__atx_heading_content] = STATE(2779), - [sym__inlines] = STATE(2779), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(489), - [sym_pandoc_line_break] = STATE(417), + [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), @@ -46175,346 +44799,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(27), - [sym__eof] = ACTIONS(2693), - [sym__code_span_start] = ACTIONS(69), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(242)] = { - [sym__inlines] = STATE(3785), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(744), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(744), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2695), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2697), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(243)] = { - [sym__inlines] = STATE(3791), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(745), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(745), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2699), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2701), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(244)] = { - [sym__inlines] = STATE(3793), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(746), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(746), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2705), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(245)] = { - [sym__inlines] = STATE(3795), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(698), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(698), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2707), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2709), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(246)] = { - [sym__atx_heading_content] = STATE(2821), - [sym__inlines] = STATE(2821), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(365), - [sym_pandoc_line_break] = STATE(417), + [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), @@ -46525,7328 +44868,8353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(19), [anon_sym_PIPE] = ACTIONS(21), [aux_sym__prose_punctuation_token1] = ACTIONS(23), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(183), - [sym__eof] = ACTIONS(2711), - [sym__code_span_start] = ACTIONS(69), + [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(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), + [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(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), + }, + [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), + }, + [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), + }, + [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), + }, + [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), + }, + [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), + }, + [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), + }, + [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), + }, + [STATE(236)] = { + [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(2649), + [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__fenced_div_end] = 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(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(238)] = { + [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_continuation] = ACTIONS(2661), + [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(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(240)] = { + [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(2673), + [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), + }, + [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(242)] = { + [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_continuation] = ACTIONS(2685), + [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(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(244)] = { + [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(2697), + [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__fenced_div_end] = 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(245)] = { + [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(2703), + [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__fenced_div_end] = 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(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(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(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(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(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), + [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), + }, + [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(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(247)] = { - [sym__inlines] = STATE(3806), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(704), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(704), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2713), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2715), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(248)] = { - [sym__inlines] = STATE(3905), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(657), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(657), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2717), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2719), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(249)] = { - [sym__inlines] = STATE(3907), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(658), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(658), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2721), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2723), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(250)] = { - [sym__inlines] = STATE(3917), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(659), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(659), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2725), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2727), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(251)] = { - [sym__inlines] = STATE(3921), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(660), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(660), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2729), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2731), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(252)] = { - [sym__inlines] = STATE(3808), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(712), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(712), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2733), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2735), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, [STATE(253)] = { - [sym__inlines] = STATE(3810), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(717), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(717), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2737), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2739), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(254)] = { - [sym__inlines] = STATE(3297), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(671), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(671), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2743), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(255)] = { - [sym__inlines] = STATE(3299), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(672), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(672), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(256)] = { - [sym__inlines] = STATE(3301), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(673), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(673), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(257)] = { - [sym__inlines] = STATE(3303), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(674), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(674), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(258)] = { - [sym__inlines] = STATE(3812), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(650), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(650), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), - }, - [STATE(259)] = { - [sym_list_marker_star] = STATE(11), - [sym__list_item_star] = STATE(292), - [aux_sym__list_star_repeat1] = STATE(292), - [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), - [aux_sym__prose_punctuation_token1] = ACTIONS(2415), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2415), - [sym__line_ending] = ACTIONS(2413), - [sym__soft_line_ending] = ACTIONS(2413), - [sym__block_close] = ACTIONS(2413), - [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(51), - [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(51), - [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__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(260)] = { - [sym__inlines] = STATE(3362), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(685), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(685), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(261)] = { - [sym__inlines] = STATE(3364), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(686), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(686), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(262)] = { - [sym__inlines] = STATE(3366), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(687), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(687), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(263)] = { - [sym__inlines] = STATE(3368), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(688), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(688), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(264)] = { - [sym__inlines] = STATE(3488), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(736), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(736), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(265)] = { - [sym_list_marker_parenthesis] = STATE(5), - [sym__list_item_parenthesis] = STATE(265), - [aux_sym__list_parenthesis_repeat1] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(2445), - [anon_sym_COLON] = ACTIONS(2445), - [sym_entity_reference] = ACTIONS(2445), - [sym_numeric_character_reference] = ACTIONS(2445), + [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(2445), - [anon_sym_DOLLAR] = ACTIONS(2447), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2445), - [anon_sym_LBRACE] = ACTIONS(2445), - [aux_sym_pandoc_str_token1] = ACTIONS(2447), - [anon_sym_PIPE] = ACTIONS(2445), - [aux_sym__prose_punctuation_token1] = ACTIONS(2447), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2447), - [sym__line_ending] = ACTIONS(2445), - [sym__soft_line_ending] = ACTIONS(2445), - [sym__block_quote_start] = ACTIONS(2445), - [sym_atx_h1_marker] = ACTIONS(2445), - [sym_atx_h2_marker] = ACTIONS(2445), - [sym_atx_h3_marker] = ACTIONS(2445), - [sym_atx_h4_marker] = ACTIONS(2445), - [sym_atx_h5_marker] = ACTIONS(2445), - [sym_atx_h6_marker] = ACTIONS(2445), - [sym__thematic_break] = ACTIONS(2445), - [sym__list_marker_minus] = ACTIONS(2445), - [sym__list_marker_plus] = ACTIONS(2445), - [sym__list_marker_star] = ACTIONS(2445), - [sym__list_marker_parenthesis] = ACTIONS(2449), - [sym__list_marker_dot] = ACTIONS(2445), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2445), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2445), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2445), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2449), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2445), - [sym__list_marker_example] = ACTIONS(2445), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2445), - [sym__fenced_code_block_start_backtick] = ACTIONS(2445), - [sym_minus_metadata] = ACTIONS(2445), - [sym__pipe_table_start] = ACTIONS(2445), - [sym__fenced_div_start] = ACTIONS(2445), - [sym_ref_id_specifier] = ACTIONS(2445), - [sym__code_span_start] = ACTIONS(2445), - [sym__html_comment] = ACTIONS(2445), - [sym__autolink] = ACTIONS(2445), - [sym__highlight_span_start] = ACTIONS(2445), - [sym__insert_span_start] = ACTIONS(2445), - [sym__delete_span_start] = ACTIONS(2445), - [sym__edit_comment_span_start] = ACTIONS(2445), - [sym__single_quote_span_open] = ACTIONS(2445), - [sym__double_quote_span_open] = ACTIONS(2445), - [sym__shortcode_open_escaped] = ACTIONS(2445), - [sym__shortcode_open] = ACTIONS(2445), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2445), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2445), - [sym__cite_author_in_text] = ACTIONS(2445), - [sym__cite_suppress_author] = ACTIONS(2445), - [sym__strikeout_open] = ACTIONS(2445), - [sym__subscript_open] = ACTIONS(2445), - [sym__superscript_open] = ACTIONS(2445), - [sym__inline_note_start_token] = ACTIONS(2445), - [sym__strong_emphasis_open_star] = ACTIONS(2445), - [sym__strong_emphasis_open_underscore] = ACTIONS(2445), - [sym__emphasis_open_star] = ACTIONS(2445), - [sym__emphasis_open_underscore] = ACTIONS(2445), - [sym_inline_note_reference] = ACTIONS(2445), - [sym_html_element] = ACTIONS(2445), - }, - [STATE(266)] = { - [sym__inlines] = STATE(3427), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(747), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(747), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(267)] = { - [sym__inlines] = STATE(3429), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(700), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(700), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(268)] = { - [sym__inlines] = STATE(3431), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(701), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(701), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(269)] = { - [sym__inlines] = STATE(3433), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(702), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(702), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(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(270)] = { - [sym_list_marker_example] = STATE(6), - [sym__list_item_example] = STATE(270), - [aux_sym__list_example_repeat1] = STATE(270), - [ts_builtin_sym_end] = ACTIONS(2452), - [anon_sym_COLON] = ACTIONS(2452), - [sym_entity_reference] = ACTIONS(2452), - [sym_numeric_character_reference] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_BANG_LBRACK] = ACTIONS(2452), - [anon_sym_DOLLAR] = ACTIONS(2454), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2452), - [aux_sym_pandoc_str_token1] = ACTIONS(2454), - [anon_sym_PIPE] = ACTIONS(2452), - [aux_sym__prose_punctuation_token1] = ACTIONS(2454), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2454), - [sym__line_ending] = ACTIONS(2452), - [sym__soft_line_ending] = ACTIONS(2452), - [sym__block_quote_start] = ACTIONS(2452), - [sym_atx_h1_marker] = ACTIONS(2452), - [sym_atx_h2_marker] = ACTIONS(2452), - [sym_atx_h3_marker] = ACTIONS(2452), - [sym_atx_h4_marker] = ACTIONS(2452), - [sym_atx_h5_marker] = ACTIONS(2452), - [sym_atx_h6_marker] = ACTIONS(2452), - [sym__thematic_break] = ACTIONS(2452), - [sym__list_marker_minus] = ACTIONS(2452), - [sym__list_marker_plus] = ACTIONS(2452), - [sym__list_marker_star] = ACTIONS(2452), - [sym__list_marker_parenthesis] = ACTIONS(2452), - [sym__list_marker_dot] = ACTIONS(2452), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2452), - [sym__list_marker_example] = ACTIONS(2456), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2456), - [sym__fenced_code_block_start_backtick] = ACTIONS(2452), - [sym_minus_metadata] = ACTIONS(2452), - [sym__pipe_table_start] = ACTIONS(2452), - [sym__fenced_div_start] = ACTIONS(2452), - [sym_ref_id_specifier] = ACTIONS(2452), - [sym__code_span_start] = ACTIONS(2452), - [sym__html_comment] = ACTIONS(2452), - [sym__autolink] = ACTIONS(2452), - [sym__highlight_span_start] = ACTIONS(2452), - [sym__insert_span_start] = ACTIONS(2452), - [sym__delete_span_start] = ACTIONS(2452), - [sym__edit_comment_span_start] = ACTIONS(2452), - [sym__single_quote_span_open] = ACTIONS(2452), - [sym__double_quote_span_open] = ACTIONS(2452), - [sym__shortcode_open_escaped] = ACTIONS(2452), - [sym__shortcode_open] = ACTIONS(2452), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2452), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2452), - [sym__cite_author_in_text] = ACTIONS(2452), - [sym__cite_suppress_author] = ACTIONS(2452), - [sym__strikeout_open] = ACTIONS(2452), - [sym__subscript_open] = ACTIONS(2452), - [sym__superscript_open] = ACTIONS(2452), - [sym__inline_note_start_token] = ACTIONS(2452), - [sym__strong_emphasis_open_star] = ACTIONS(2452), - [sym__strong_emphasis_open_underscore] = ACTIONS(2452), - [sym__emphasis_open_star] = ACTIONS(2452), - [sym__emphasis_open_underscore] = ACTIONS(2452), - [sym_inline_note_reference] = ACTIONS(2452), - [sym_html_element] = ACTIONS(2452), + [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(271)] = { - [sym__atx_heading_content] = STATE(2912), - [sym__inlines] = STATE(2912), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(531), - [sym_pandoc_line_break] = STATE(417), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(27), - [sym__eof] = ACTIONS(2797), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), + [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(272)] = { - [sym__atx_heading_content] = STATE(2829), - [sym__inlines] = STATE(2829), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(371), - [sym_pandoc_line_break] = STATE(417), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(183), - [sym__eof] = ACTIONS(2799), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), + [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(273)] = { - [sym__atx_heading_content] = STATE(2832), - [sym__inlines] = STATE(2832), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(398), - [sym_pandoc_line_break] = STATE(417), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(183), - [sym__eof] = ACTIONS(2801), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), + [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(274)] = { - [sym__atx_heading_content] = STATE(2835), - [sym__inlines] = STATE(2835), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(400), - [sym_pandoc_line_break] = STATE(417), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(183), - [sym__eof] = ACTIONS(2803), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), + [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(275)] = { - [sym_list_marker_minus] = STATE(4), - [sym__list_item_minus] = STATE(235), - [aux_sym__list_minus_repeat1] = STATE(235), - [ts_builtin_sym_end] = ACTIONS(2469), - [anon_sym_COLON] = ACTIONS(2469), - [sym_entity_reference] = ACTIONS(2469), - [sym_numeric_character_reference] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_BANG_LBRACK] = ACTIONS(2469), - [anon_sym_DOLLAR] = ACTIONS(2471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2469), - [anon_sym_LBRACE] = ACTIONS(2469), - [aux_sym_pandoc_str_token1] = ACTIONS(2471), - [anon_sym_PIPE] = ACTIONS(2469), - [aux_sym__prose_punctuation_token1] = ACTIONS(2471), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2471), - [sym__line_ending] = ACTIONS(2469), - [sym__soft_line_ending] = ACTIONS(2469), - [sym__block_quote_start] = ACTIONS(2469), - [sym_atx_h1_marker] = ACTIONS(2469), - [sym_atx_h2_marker] = ACTIONS(2469), - [sym_atx_h3_marker] = ACTIONS(2469), - [sym_atx_h4_marker] = ACTIONS(2469), - [sym_atx_h5_marker] = ACTIONS(2469), - [sym_atx_h6_marker] = ACTIONS(2469), - [sym__thematic_break] = ACTIONS(2469), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(2469), - [sym__list_marker_star] = ACTIONS(2469), - [sym__list_marker_parenthesis] = ACTIONS(2469), - [sym__list_marker_dot] = ACTIONS(2469), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2469), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2469), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2469), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2469), - [sym__list_marker_example] = ACTIONS(2469), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2469), - [sym__fenced_code_block_start_backtick] = ACTIONS(2469), - [sym_minus_metadata] = ACTIONS(2469), - [sym__pipe_table_start] = ACTIONS(2469), - [sym__fenced_div_start] = ACTIONS(2469), - [sym_ref_id_specifier] = ACTIONS(2469), - [sym__code_span_start] = ACTIONS(2469), - [sym__html_comment] = ACTIONS(2469), - [sym__autolink] = ACTIONS(2469), + [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(2469), - [sym__delete_span_start] = ACTIONS(2469), - [sym__edit_comment_span_start] = ACTIONS(2469), - [sym__single_quote_span_open] = ACTIONS(2469), - [sym__double_quote_span_open] = ACTIONS(2469), - [sym__shortcode_open_escaped] = ACTIONS(2469), - [sym__shortcode_open] = ACTIONS(2469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2469), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2469), - [sym__cite_author_in_text] = ACTIONS(2469), - [sym__cite_suppress_author] = ACTIONS(2469), - [sym__strikeout_open] = ACTIONS(2469), - [sym__subscript_open] = ACTIONS(2469), - [sym__superscript_open] = ACTIONS(2469), - [sym__inline_note_start_token] = ACTIONS(2469), - [sym__strong_emphasis_open_star] = ACTIONS(2469), - [sym__strong_emphasis_open_underscore] = ACTIONS(2469), - [sym__emphasis_open_star] = ACTIONS(2469), - [sym__emphasis_open_underscore] = ACTIONS(2469), - [sym_inline_note_reference] = ACTIONS(2469), - [sym_html_element] = 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(276)] = { - [sym_list_marker_star] = STATE(3), - [sym__list_item_star] = STATE(240), - [aux_sym__list_star_repeat1] = STATE(240), - [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), - [aux_sym__prose_punctuation_token1] = ACTIONS(2415), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2415), - [sym__line_ending] = ACTIONS(2413), - [sym__soft_line_ending] = ACTIONS(2413), - [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(51), - [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(51), - [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__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(277)] = { - [sym_list_marker_dot] = STATE(8), - [sym__list_item_dot] = STATE(298), - [aux_sym__list_dot_repeat1] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(2283), - [anon_sym_COLON] = ACTIONS(2283), - [sym_entity_reference] = ACTIONS(2283), - [sym_numeric_character_reference] = ACTIONS(2283), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_BANG_LBRACK] = ACTIONS(2283), - [anon_sym_DOLLAR] = ACTIONS(2285), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2283), - [aux_sym_pandoc_str_token1] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2283), - [aux_sym__prose_punctuation_token1] = ACTIONS(2285), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2285), - [sym__line_ending] = ACTIONS(2283), - [sym__soft_line_ending] = ACTIONS(2283), - [sym__block_quote_start] = ACTIONS(2283), - [sym_atx_h1_marker] = ACTIONS(2283), - [sym_atx_h2_marker] = ACTIONS(2283), - [sym_atx_h3_marker] = ACTIONS(2283), - [sym_atx_h4_marker] = ACTIONS(2283), - [sym_atx_h5_marker] = ACTIONS(2283), - [sym_atx_h6_marker] = ACTIONS(2283), - [sym__thematic_break] = ACTIONS(2283), - [sym__list_marker_minus] = ACTIONS(2283), - [sym__list_marker_plus] = ACTIONS(2283), - [sym__list_marker_star] = ACTIONS(2283), - [sym__list_marker_parenthesis] = ACTIONS(2283), - [sym__list_marker_dot] = ACTIONS(55), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2283), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2283), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2283), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2283), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(55), - [sym__list_marker_example] = ACTIONS(2283), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2283), - [sym__fenced_code_block_start_backtick] = ACTIONS(2283), - [sym_minus_metadata] = ACTIONS(2283), - [sym__pipe_table_start] = ACTIONS(2283), - [sym__fenced_div_start] = ACTIONS(2283), - [sym_ref_id_specifier] = ACTIONS(2283), - [sym__code_span_start] = ACTIONS(2283), - [sym__html_comment] = ACTIONS(2283), - [sym__autolink] = ACTIONS(2283), - [sym__highlight_span_start] = ACTIONS(2283), - [sym__insert_span_start] = ACTIONS(2283), - [sym__delete_span_start] = ACTIONS(2283), - [sym__edit_comment_span_start] = ACTIONS(2283), - [sym__single_quote_span_open] = ACTIONS(2283), - [sym__double_quote_span_open] = ACTIONS(2283), - [sym__shortcode_open_escaped] = ACTIONS(2283), - [sym__shortcode_open] = ACTIONS(2283), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2283), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2283), - [sym__cite_author_in_text] = ACTIONS(2283), - [sym__cite_suppress_author] = ACTIONS(2283), - [sym__strikeout_open] = ACTIONS(2283), - [sym__subscript_open] = ACTIONS(2283), - [sym__superscript_open] = ACTIONS(2283), - [sym__inline_note_start_token] = ACTIONS(2283), - [sym__strong_emphasis_open_star] = ACTIONS(2283), - [sym__strong_emphasis_open_underscore] = ACTIONS(2283), - [sym__emphasis_open_star] = ACTIONS(2283), - [sym__emphasis_open_underscore] = ACTIONS(2283), - [sym_inline_note_reference] = ACTIONS(2283), - [sym_html_element] = ACTIONS(2283), + [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(278)] = { - [sym_list_marker_example] = STATE(14), - [sym__list_item_example] = STATE(228), - [aux_sym__list_example_repeat1] = STATE(228), - [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), - [aux_sym__prose_punctuation_token1] = ACTIONS(2391), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2391), - [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(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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__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(279)] = { - [sym_list_marker_parenthesis] = STATE(5), - [sym__list_item_parenthesis] = STATE(265), - [aux_sym__list_parenthesis_repeat1] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(2385), - [anon_sym_COLON] = ACTIONS(2385), - [sym_entity_reference] = ACTIONS(2385), - [sym_numeric_character_reference] = ACTIONS(2385), - [anon_sym_LBRACK] = ACTIONS(2385), - [anon_sym_BANG_LBRACK] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2387), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2385), - [anon_sym_LBRACE] = ACTIONS(2385), - [aux_sym_pandoc_str_token1] = ACTIONS(2387), - [anon_sym_PIPE] = ACTIONS(2385), - [aux_sym__prose_punctuation_token1] = ACTIONS(2387), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2387), - [sym__line_ending] = ACTIONS(2385), - [sym__soft_line_ending] = ACTIONS(2385), - [sym__block_quote_start] = ACTIONS(2385), - [sym_atx_h1_marker] = ACTIONS(2385), - [sym_atx_h2_marker] = ACTIONS(2385), - [sym_atx_h3_marker] = ACTIONS(2385), - [sym_atx_h4_marker] = ACTIONS(2385), - [sym_atx_h5_marker] = ACTIONS(2385), - [sym_atx_h6_marker] = ACTIONS(2385), - [sym__thematic_break] = ACTIONS(2385), - [sym__list_marker_minus] = ACTIONS(2385), - [sym__list_marker_plus] = ACTIONS(2385), - [sym__list_marker_star] = ACTIONS(2385), - [sym__list_marker_parenthesis] = ACTIONS(53), - [sym__list_marker_dot] = ACTIONS(2385), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2385), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2385), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2385), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(53), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2385), - [sym__list_marker_example] = ACTIONS(2385), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2385), - [sym__fenced_code_block_start_backtick] = ACTIONS(2385), - [sym_minus_metadata] = ACTIONS(2385), - [sym__pipe_table_start] = ACTIONS(2385), - [sym__fenced_div_start] = ACTIONS(2385), - [sym_ref_id_specifier] = ACTIONS(2385), - [sym__code_span_start] = ACTIONS(2385), - [sym__html_comment] = ACTIONS(2385), - [sym__autolink] = ACTIONS(2385), - [sym__highlight_span_start] = ACTIONS(2385), - [sym__insert_span_start] = ACTIONS(2385), - [sym__delete_span_start] = ACTIONS(2385), - [sym__edit_comment_span_start] = ACTIONS(2385), - [sym__single_quote_span_open] = ACTIONS(2385), - [sym__double_quote_span_open] = ACTIONS(2385), - [sym__shortcode_open_escaped] = ACTIONS(2385), - [sym__shortcode_open] = ACTIONS(2385), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2385), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2385), - [sym__cite_author_in_text] = ACTIONS(2385), - [sym__cite_suppress_author] = ACTIONS(2385), - [sym__strikeout_open] = ACTIONS(2385), - [sym__subscript_open] = ACTIONS(2385), - [sym__superscript_open] = ACTIONS(2385), - [sym__inline_note_start_token] = ACTIONS(2385), - [sym__strong_emphasis_open_star] = ACTIONS(2385), - [sym__strong_emphasis_open_underscore] = ACTIONS(2385), - [sym__emphasis_open_star] = ACTIONS(2385), - [sym__emphasis_open_underscore] = ACTIONS(2385), - [sym_inline_note_reference] = ACTIONS(2385), - [sym_html_element] = ACTIONS(2385), + [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(280)] = { - [sym_list_marker_example] = STATE(6), - [sym__list_item_example] = STATE(270), - [aux_sym__list_example_repeat1] = STATE(270), - [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), - [aux_sym__prose_punctuation_token1] = ACTIONS(2391), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2391), - [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(57), - [sym__list_marker_example_dont_interrupt] = ACTIONS(57), - [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__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(281)] = { - [sym_pipe_table_row] = STATE(3254), - [sym_pipe_table_cell] = STATE(2858), - [sym_pandoc_span] = STATE(601), - [sym_pandoc_image] = STATE(601), - [sym_pandoc_math] = STATE(601), - [sym_pandoc_display_math] = STATE(601), - [sym_pandoc_code_span] = STATE(601), - [sym_pandoc_single_quote] = STATE(601), - [sym_pandoc_double_quote] = STATE(601), - [sym_insert] = STATE(601), - [sym_delete] = STATE(601), - [sym_edit_comment] = STATE(601), - [sym_highlight] = STATE(601), - [sym__pandoc_attr_specifier] = STATE(601), - [sym__line_with_maybe_spaces] = STATE(2860), - [sym__inline_element] = STATE(601), - [sym_shortcode_escaped] = STATE(601), - [sym_shortcode] = STATE(601), - [sym_citation] = STATE(601), - [sym_inline_note] = STATE(601), - [sym_pandoc_superscript] = STATE(601), - [sym_pandoc_subscript] = STATE(601), - [sym_pandoc_strikeout] = STATE(601), - [sym_pandoc_emph] = STATE(601), - [sym_pandoc_strong] = STATE(601), - [sym_pandoc_str] = STATE(601), - [sym__prose_punctuation] = STATE(601), - [sym_pandoc_line_break] = STATE(601), - [aux_sym_pipe_table_row_repeat1] = STATE(330), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(601), - [sym_entity_reference] = ACTIONS(2805), - [sym_numeric_character_reference] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(2821), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(2825), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(2805), - [sym__autolink] = ACTIONS(2805), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2805), - [sym_html_element] = ACTIONS(2805), - [sym__pipe_table_delimiter] = ACTIONS(2869), + [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(282)] = { - [sym__inlines] = STATE(3358), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(708), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(708), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2873), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(283)] = { - [sym_list_marker_minus] = STATE(10), - [sym__list_item_minus] = STATE(291), - [aux_sym__list_minus_repeat1] = STATE(291), - [anon_sym_COLON] = ACTIONS(2469), - [sym_entity_reference] = ACTIONS(2469), - [sym_numeric_character_reference] = ACTIONS(2469), - [anon_sym_LBRACK] = ACTIONS(2469), - [anon_sym_BANG_LBRACK] = ACTIONS(2469), - [anon_sym_DOLLAR] = ACTIONS(2471), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2469), - [anon_sym_LBRACE] = ACTIONS(2469), - [aux_sym_pandoc_str_token1] = ACTIONS(2471), - [anon_sym_PIPE] = ACTIONS(2469), - [aux_sym__prose_punctuation_token1] = ACTIONS(2471), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2471), - [sym__line_ending] = ACTIONS(2469), - [sym__soft_line_ending] = ACTIONS(2469), - [sym__block_close] = ACTIONS(2469), - [sym__block_quote_start] = ACTIONS(2469), - [sym_atx_h1_marker] = ACTIONS(2469), - [sym_atx_h2_marker] = ACTIONS(2469), - [sym_atx_h3_marker] = ACTIONS(2469), - [sym_atx_h4_marker] = ACTIONS(2469), - [sym_atx_h5_marker] = ACTIONS(2469), - [sym_atx_h6_marker] = ACTIONS(2469), - [sym__thematic_break] = ACTIONS(2469), - [sym__list_marker_minus] = ACTIONS(47), - [sym__list_marker_plus] = ACTIONS(2469), - [sym__list_marker_star] = ACTIONS(2469), - [sym__list_marker_parenthesis] = ACTIONS(2469), - [sym__list_marker_dot] = ACTIONS(2469), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(47), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2469), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2469), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2469), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2469), - [sym__list_marker_example] = ACTIONS(2469), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2469), - [sym__fenced_code_block_start_backtick] = ACTIONS(2469), - [sym_minus_metadata] = ACTIONS(2469), - [sym__pipe_table_start] = ACTIONS(2469), - [sym__fenced_div_start] = ACTIONS(2469), - [sym_ref_id_specifier] = ACTIONS(2469), - [sym__code_span_start] = ACTIONS(2469), - [sym__html_comment] = ACTIONS(2469), - [sym__autolink] = ACTIONS(2469), + [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(2469), - [sym__delete_span_start] = ACTIONS(2469), - [sym__edit_comment_span_start] = ACTIONS(2469), - [sym__single_quote_span_open] = ACTIONS(2469), - [sym__double_quote_span_open] = ACTIONS(2469), - [sym__shortcode_open_escaped] = ACTIONS(2469), - [sym__shortcode_open] = ACTIONS(2469), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2469), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2469), - [sym__cite_author_in_text] = ACTIONS(2469), - [sym__cite_suppress_author] = ACTIONS(2469), - [sym__strikeout_open] = ACTIONS(2469), - [sym__subscript_open] = ACTIONS(2469), - [sym__superscript_open] = ACTIONS(2469), - [sym__inline_note_start_token] = ACTIONS(2469), - [sym__strong_emphasis_open_star] = ACTIONS(2469), - [sym__strong_emphasis_open_underscore] = ACTIONS(2469), - [sym__emphasis_open_star] = ACTIONS(2469), - [sym__emphasis_open_underscore] = ACTIONS(2469), - [sym_inline_note_reference] = ACTIONS(2469), - [sym_html_element] = 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)] = { - [sym__atx_heading_content] = STATE(2845), - [sym__inlines] = STATE(2845), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(538), - [sym_pandoc_line_break] = STATE(417), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(113), - [sym__eof] = ACTIONS(2875), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), + [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(285)] = { - [sym__atx_heading_content] = STATE(2847), - [sym__inlines] = STATE(2847), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(539), - [sym_pandoc_line_break] = STATE(417), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(113), - [sym__eof] = ACTIONS(2877), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), + [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(286)] = { - [sym__atx_heading_content] = STATE(2849), - [sym__inlines] = STATE(2849), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(540), - [sym_pandoc_line_break] = STATE(417), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(113), - [sym__eof] = ACTIONS(2879), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), + [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(287)] = { - [sym__atx_heading_content] = STATE(2854), - [sym__inlines] = STATE(2854), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(541), - [sym_pandoc_line_break] = STATE(417), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(113), - [sym__eof] = ACTIONS(2881), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), - }, - [STATE(288)] = { - [sym__atx_heading_content] = STATE(2859), - [sym__inlines] = STATE(2859), - [sym_pandoc_span] = STATE(417), - [sym_pandoc_image] = STATE(417), - [sym_pandoc_math] = STATE(417), - [sym_pandoc_display_math] = STATE(417), - [sym_pandoc_code_span] = STATE(417), - [sym_pandoc_single_quote] = STATE(417), - [sym_pandoc_double_quote] = STATE(417), - [sym_insert] = STATE(417), - [sym_delete] = STATE(417), - [sym_edit_comment] = STATE(417), - [sym_highlight] = STATE(417), - [sym__pandoc_attr_specifier] = STATE(417), - [sym__line] = STATE(2633), - [sym__inline_element] = STATE(417), - [sym_shortcode_escaped] = STATE(417), - [sym_shortcode] = STATE(417), - [sym_citation] = STATE(417), - [sym_inline_note] = STATE(417), - [sym_pandoc_superscript] = STATE(417), - [sym_pandoc_subscript] = STATE(417), - [sym_pandoc_strikeout] = STATE(417), - [sym_pandoc_emph] = STATE(417), - [sym_pandoc_strong] = STATE(417), - [sym_pandoc_str] = STATE(417), - [sym__prose_punctuation] = STATE(417), - [sym__newline] = STATE(542), - [sym_pandoc_line_break] = STATE(417), - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(2473), - [sym__line_ending] = ACTIONS(113), - [sym__eof] = ACTIONS(2883), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(7), - [sym__autolink] = ACTIONS(7), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(7), - [sym_html_element] = ACTIONS(7), + [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(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(289)] = { - [sym__inlines] = STATE(4067), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(652), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(652), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(2887), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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(290)] = { - [sym_list_marker_plus] = STATE(9), - [sym__list_item_plus] = STATE(290), - [aux_sym__list_plus_repeat1] = STATE(290), - [anon_sym_COLON] = ACTIONS(2417), - [sym_entity_reference] = ACTIONS(2417), - [sym_numeric_character_reference] = ACTIONS(2417), - [anon_sym_LBRACK] = ACTIONS(2417), - [anon_sym_BANG_LBRACK] = ACTIONS(2417), - [anon_sym_DOLLAR] = ACTIONS(2419), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2417), - [anon_sym_LBRACE] = ACTIONS(2417), - [aux_sym_pandoc_str_token1] = ACTIONS(2419), - [anon_sym_PIPE] = ACTIONS(2417), - [aux_sym__prose_punctuation_token1] = ACTIONS(2419), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2419), - [sym__line_ending] = ACTIONS(2417), - [sym__soft_line_ending] = ACTIONS(2417), - [sym__block_close] = ACTIONS(2417), - [sym__block_quote_start] = ACTIONS(2417), - [sym_atx_h1_marker] = ACTIONS(2417), - [sym_atx_h2_marker] = ACTIONS(2417), - [sym_atx_h3_marker] = ACTIONS(2417), - [sym_atx_h4_marker] = ACTIONS(2417), - [sym_atx_h5_marker] = ACTIONS(2417), - [sym_atx_h6_marker] = ACTIONS(2417), - [sym__thematic_break] = ACTIONS(2417), - [sym__list_marker_minus] = ACTIONS(2417), - [sym__list_marker_plus] = ACTIONS(2421), - [sym__list_marker_star] = ACTIONS(2417), - [sym__list_marker_parenthesis] = ACTIONS(2417), - [sym__list_marker_dot] = ACTIONS(2417), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2417), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2421), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2417), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2417), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2417), - [sym__list_marker_example] = ACTIONS(2417), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2417), - [sym__fenced_code_block_start_backtick] = ACTIONS(2417), - [sym_minus_metadata] = ACTIONS(2417), - [sym__pipe_table_start] = ACTIONS(2417), - [sym__fenced_div_start] = ACTIONS(2417), - [sym_ref_id_specifier] = ACTIONS(2417), - [sym__code_span_start] = ACTIONS(2417), - [sym__html_comment] = ACTIONS(2417), - [sym__autolink] = ACTIONS(2417), - [sym__highlight_span_start] = ACTIONS(2417), - [sym__insert_span_start] = ACTIONS(2417), - [sym__delete_span_start] = ACTIONS(2417), - [sym__edit_comment_span_start] = ACTIONS(2417), - [sym__single_quote_span_open] = ACTIONS(2417), - [sym__double_quote_span_open] = ACTIONS(2417), - [sym__shortcode_open_escaped] = ACTIONS(2417), - [sym__shortcode_open] = ACTIONS(2417), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2417), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2417), - [sym__cite_author_in_text] = ACTIONS(2417), - [sym__cite_suppress_author] = ACTIONS(2417), - [sym__strikeout_open] = ACTIONS(2417), - [sym__subscript_open] = ACTIONS(2417), - [sym__superscript_open] = ACTIONS(2417), - [sym__inline_note_start_token] = ACTIONS(2417), - [sym__strong_emphasis_open_star] = ACTIONS(2417), - [sym__strong_emphasis_open_underscore] = ACTIONS(2417), - [sym__emphasis_open_star] = ACTIONS(2417), - [sym__emphasis_open_underscore] = ACTIONS(2417), - [sym_inline_note_reference] = ACTIONS(2417), - [sym_html_element] = ACTIONS(2417), + [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(291)] = { - [sym_list_marker_minus] = STATE(10), - [sym__list_item_minus] = STATE(291), - [aux_sym__list_minus_repeat1] = STATE(291), - [anon_sym_COLON] = ACTIONS(2424), - [sym_entity_reference] = ACTIONS(2424), - [sym_numeric_character_reference] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_BANG_LBRACK] = ACTIONS(2424), - [anon_sym_DOLLAR] = ACTIONS(2426), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2424), - [anon_sym_LBRACE] = ACTIONS(2424), - [aux_sym_pandoc_str_token1] = ACTIONS(2426), - [anon_sym_PIPE] = ACTIONS(2424), - [aux_sym__prose_punctuation_token1] = ACTIONS(2426), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2426), - [sym__line_ending] = ACTIONS(2424), - [sym__soft_line_ending] = ACTIONS(2424), - [sym__block_close] = ACTIONS(2424), - [sym__block_quote_start] = ACTIONS(2424), - [sym_atx_h1_marker] = ACTIONS(2424), - [sym_atx_h2_marker] = ACTIONS(2424), - [sym_atx_h3_marker] = ACTIONS(2424), - [sym_atx_h4_marker] = ACTIONS(2424), - [sym_atx_h5_marker] = ACTIONS(2424), - [sym_atx_h6_marker] = ACTIONS(2424), - [sym__thematic_break] = ACTIONS(2424), - [sym__list_marker_minus] = ACTIONS(2428), - [sym__list_marker_plus] = ACTIONS(2424), - [sym__list_marker_star] = ACTIONS(2424), - [sym__list_marker_parenthesis] = ACTIONS(2424), - [sym__list_marker_dot] = ACTIONS(2424), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2428), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2424), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2424), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2424), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2424), - [sym__list_marker_example] = ACTIONS(2424), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2424), - [sym__fenced_code_block_start_backtick] = ACTIONS(2424), - [sym_minus_metadata] = ACTIONS(2424), - [sym__pipe_table_start] = ACTIONS(2424), - [sym__fenced_div_start] = ACTIONS(2424), - [sym_ref_id_specifier] = ACTIONS(2424), - [sym__code_span_start] = ACTIONS(2424), - [sym__html_comment] = ACTIONS(2424), - [sym__autolink] = ACTIONS(2424), - [sym__highlight_span_start] = ACTIONS(2424), - [sym__insert_span_start] = ACTIONS(2424), - [sym__delete_span_start] = ACTIONS(2424), - [sym__edit_comment_span_start] = ACTIONS(2424), - [sym__single_quote_span_open] = ACTIONS(2424), - [sym__double_quote_span_open] = ACTIONS(2424), - [sym__shortcode_open_escaped] = ACTIONS(2424), - [sym__shortcode_open] = ACTIONS(2424), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2424), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2424), - [sym__cite_author_in_text] = ACTIONS(2424), - [sym__cite_suppress_author] = ACTIONS(2424), - [sym__strikeout_open] = ACTIONS(2424), - [sym__subscript_open] = ACTIONS(2424), - [sym__superscript_open] = ACTIONS(2424), - [sym__inline_note_start_token] = ACTIONS(2424), - [sym__strong_emphasis_open_star] = ACTIONS(2424), - [sym__strong_emphasis_open_underscore] = ACTIONS(2424), - [sym__emphasis_open_star] = ACTIONS(2424), - [sym__emphasis_open_underscore] = ACTIONS(2424), - [sym_inline_note_reference] = ACTIONS(2424), - [sym_html_element] = ACTIONS(2424), + [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(292)] = { - [sym_list_marker_star] = STATE(11), - [sym__list_item_star] = STATE(292), - [aux_sym__list_star_repeat1] = STATE(292), - [anon_sym_COLON] = ACTIONS(2431), - [sym_entity_reference] = ACTIONS(2431), - [sym_numeric_character_reference] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_BANG_LBRACK] = ACTIONS(2431), - [anon_sym_DOLLAR] = ACTIONS(2433), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [aux_sym_pandoc_str_token1] = ACTIONS(2433), - [anon_sym_PIPE] = ACTIONS(2431), - [aux_sym__prose_punctuation_token1] = ACTIONS(2433), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2433), - [sym__line_ending] = ACTIONS(2431), - [sym__soft_line_ending] = ACTIONS(2431), - [sym__block_close] = ACTIONS(2431), - [sym__block_quote_start] = ACTIONS(2431), - [sym_atx_h1_marker] = ACTIONS(2431), - [sym_atx_h2_marker] = ACTIONS(2431), - [sym_atx_h3_marker] = ACTIONS(2431), - [sym_atx_h4_marker] = ACTIONS(2431), - [sym_atx_h5_marker] = ACTIONS(2431), - [sym_atx_h6_marker] = ACTIONS(2431), - [sym__thematic_break] = ACTIONS(2431), - [sym__list_marker_minus] = ACTIONS(2431), - [sym__list_marker_plus] = ACTIONS(2431), - [sym__list_marker_star] = ACTIONS(2435), - [sym__list_marker_parenthesis] = ACTIONS(2431), - [sym__list_marker_dot] = ACTIONS(2431), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2431), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2431), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2435), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2431), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2431), - [sym__list_marker_example] = ACTIONS(2431), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2431), - [sym__fenced_code_block_start_backtick] = ACTIONS(2431), - [sym_minus_metadata] = ACTIONS(2431), - [sym__pipe_table_start] = ACTIONS(2431), - [sym__fenced_div_start] = ACTIONS(2431), - [sym_ref_id_specifier] = ACTIONS(2431), - [sym__code_span_start] = ACTIONS(2431), - [sym__html_comment] = ACTIONS(2431), - [sym__autolink] = ACTIONS(2431), - [sym__highlight_span_start] = ACTIONS(2431), - [sym__insert_span_start] = ACTIONS(2431), - [sym__delete_span_start] = ACTIONS(2431), - [sym__edit_comment_span_start] = ACTIONS(2431), - [sym__single_quote_span_open] = ACTIONS(2431), - [sym__double_quote_span_open] = ACTIONS(2431), - [sym__shortcode_open_escaped] = ACTIONS(2431), - [sym__shortcode_open] = ACTIONS(2431), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2431), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2431), - [sym__cite_author_in_text] = ACTIONS(2431), - [sym__cite_suppress_author] = ACTIONS(2431), - [sym__strikeout_open] = ACTIONS(2431), - [sym__subscript_open] = ACTIONS(2431), - [sym__superscript_open] = ACTIONS(2431), - [sym__inline_note_start_token] = ACTIONS(2431), - [sym__strong_emphasis_open_star] = ACTIONS(2431), - [sym__strong_emphasis_open_underscore] = ACTIONS(2431), - [sym__emphasis_open_star] = ACTIONS(2431), - [sym__emphasis_open_underscore] = ACTIONS(2431), - [sym_inline_note_reference] = ACTIONS(2431), - [sym_html_element] = ACTIONS(2431), - }, - [STATE(293)] = { - [sym__inlines] = STATE(3415), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(709), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(709), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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)] = { - [sym__inlines] = STATE(3652), - [sym_pandoc_span] = STATE(522), - [sym_pandoc_image] = STATE(522), - [sym_pandoc_math] = STATE(522), - [sym_pandoc_display_math] = STATE(522), - [sym_pandoc_code_span] = STATE(522), - [sym_pandoc_single_quote] = STATE(522), - [sym_pandoc_double_quote] = STATE(522), - [sym_insert] = STATE(522), - [sym_delete] = STATE(522), - [sym_edit_comment] = STATE(522), - [sym_highlight] = STATE(522), - [sym__pandoc_attr_specifier] = STATE(522), - [sym__line] = STATE(2681), - [sym__inline_element] = STATE(522), - [sym_shortcode_escaped] = STATE(522), - [sym_shortcode] = STATE(522), - [sym_citation] = STATE(522), - [sym_inline_note] = STATE(522), - [sym_pandoc_superscript] = STATE(522), - [sym_pandoc_subscript] = STATE(522), - [sym_pandoc_strikeout] = STATE(522), - [sym_pandoc_emph] = STATE(522), - [sym_pandoc_strong] = STATE(522), - [sym_pandoc_str] = STATE(522), - [sym__prose_punctuation] = STATE(522), - [sym__soft_line_break] = STATE(728), - [sym_pandoc_line_break] = STATE(522), - [sym__inline_whitespace] = STATE(728), - [sym_entity_reference] = ACTIONS(2481), - [sym_numeric_character_reference] = ACTIONS(2481), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), + [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(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(2499), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), + [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(2505), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(2481), - [sym__autolink] = ACTIONS(2481), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(2481), - [sym_html_element] = ACTIONS(2481), + [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)] = { + [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(295)] = { - [sym_list_marker_plus] = STATE(9), - [sym__list_item_plus] = STATE(290), - [aux_sym__list_plus_repeat1] = STATE(290), - [anon_sym_COLON] = ACTIONS(2465), - [sym_entity_reference] = ACTIONS(2465), - [sym_numeric_character_reference] = ACTIONS(2465), - [anon_sym_LBRACK] = ACTIONS(2465), - [anon_sym_BANG_LBRACK] = ACTIONS(2465), - [anon_sym_DOLLAR] = ACTIONS(2467), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2465), - [anon_sym_LBRACE] = ACTIONS(2465), - [aux_sym_pandoc_str_token1] = ACTIONS(2467), - [anon_sym_PIPE] = ACTIONS(2465), - [aux_sym__prose_punctuation_token1] = ACTIONS(2467), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2467), - [sym__line_ending] = ACTIONS(2465), + [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__block_close] = ACTIONS(2465), - [sym__block_quote_start] = ACTIONS(2465), - [sym_atx_h1_marker] = ACTIONS(2465), - [sym_atx_h2_marker] = ACTIONS(2465), - [sym_atx_h3_marker] = ACTIONS(2465), - [sym_atx_h4_marker] = ACTIONS(2465), - [sym_atx_h5_marker] = ACTIONS(2465), - [sym_atx_h6_marker] = ACTIONS(2465), - [sym__thematic_break] = ACTIONS(2465), - [sym__list_marker_minus] = ACTIONS(2465), - [sym__list_marker_plus] = ACTIONS(49), - [sym__list_marker_star] = ACTIONS(2465), - [sym__list_marker_parenthesis] = ACTIONS(2465), - [sym__list_marker_dot] = ACTIONS(2465), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2465), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(49), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2465), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2465), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2465), - [sym__list_marker_example] = ACTIONS(2465), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2465), - [sym__fenced_code_block_start_backtick] = ACTIONS(2465), - [sym_minus_metadata] = ACTIONS(2465), - [sym__pipe_table_start] = ACTIONS(2465), - [sym__fenced_div_start] = ACTIONS(2465), - [sym_ref_id_specifier] = ACTIONS(2465), - [sym__code_span_start] = ACTIONS(2465), - [sym__html_comment] = ACTIONS(2465), - [sym__autolink] = ACTIONS(2465), - [sym__highlight_span_start] = ACTIONS(2465), - [sym__insert_span_start] = ACTIONS(2465), - [sym__delete_span_start] = ACTIONS(2465), - [sym__edit_comment_span_start] = ACTIONS(2465), - [sym__single_quote_span_open] = ACTIONS(2465), - [sym__double_quote_span_open] = ACTIONS(2465), - [sym__shortcode_open_escaped] = ACTIONS(2465), - [sym__shortcode_open] = ACTIONS(2465), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2465), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2465), - [sym__cite_author_in_text] = ACTIONS(2465), - [sym__cite_suppress_author] = ACTIONS(2465), - [sym__strikeout_open] = ACTIONS(2465), - [sym__subscript_open] = ACTIONS(2465), - [sym__superscript_open] = ACTIONS(2465), - [sym__inline_note_start_token] = ACTIONS(2465), - [sym__strong_emphasis_open_star] = ACTIONS(2465), - [sym__strong_emphasis_open_underscore] = ACTIONS(2465), - [sym__emphasis_open_star] = ACTIONS(2465), - [sym__emphasis_open_underscore] = ACTIONS(2465), - [sym_inline_note_reference] = ACTIONS(2465), - [sym_html_element] = 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)] = { - [sym_pipe_table_row] = STATE(3161), - [sym_pipe_table_cell] = STATE(2858), - [sym_pandoc_span] = STATE(601), - [sym_pandoc_image] = STATE(601), - [sym_pandoc_math] = STATE(601), - [sym_pandoc_display_math] = STATE(601), - [sym_pandoc_code_span] = STATE(601), - [sym_pandoc_single_quote] = STATE(601), - [sym_pandoc_double_quote] = STATE(601), - [sym_insert] = STATE(601), - [sym_delete] = STATE(601), - [sym_edit_comment] = STATE(601), - [sym_highlight] = STATE(601), - [sym__pandoc_attr_specifier] = STATE(601), - [sym__line_with_maybe_spaces] = STATE(2860), - [sym__inline_element] = STATE(601), - [sym_shortcode_escaped] = STATE(601), - [sym_shortcode] = STATE(601), - [sym_citation] = STATE(601), - [sym_inline_note] = STATE(601), - [sym_pandoc_superscript] = STATE(601), - [sym_pandoc_subscript] = STATE(601), - [sym_pandoc_strikeout] = STATE(601), - [sym_pandoc_emph] = STATE(601), - [sym_pandoc_strong] = STATE(601), - [sym_pandoc_str] = STATE(601), - [sym__prose_punctuation] = STATE(601), - [sym_pandoc_line_break] = STATE(601), - [aux_sym_pipe_table_row_repeat1] = STATE(330), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(601), - [sym_entity_reference] = ACTIONS(2805), - [sym_numeric_character_reference] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(2821), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(2825), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(2805), - [sym__autolink] = ACTIONS(2805), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2805), - [sym_html_element] = ACTIONS(2805), - [sym__pipe_table_delimiter] = ACTIONS(2869), + [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(297)] = { - [sym_pipe_table_row] = STATE(3121), - [sym_pipe_table_cell] = STATE(2858), - [sym_pandoc_span] = STATE(601), - [sym_pandoc_image] = STATE(601), - [sym_pandoc_math] = STATE(601), - [sym_pandoc_display_math] = STATE(601), - [sym_pandoc_code_span] = STATE(601), - [sym_pandoc_single_quote] = STATE(601), - [sym_pandoc_double_quote] = STATE(601), - [sym_insert] = STATE(601), - [sym_delete] = STATE(601), - [sym_edit_comment] = STATE(601), - [sym_highlight] = STATE(601), - [sym__pandoc_attr_specifier] = STATE(601), - [sym__line_with_maybe_spaces] = STATE(2860), - [sym__inline_element] = STATE(601), - [sym_shortcode_escaped] = STATE(601), - [sym_shortcode] = STATE(601), - [sym_citation] = STATE(601), - [sym_inline_note] = STATE(601), - [sym_pandoc_superscript] = STATE(601), - [sym_pandoc_subscript] = STATE(601), - [sym_pandoc_strikeout] = STATE(601), - [sym_pandoc_emph] = STATE(601), - [sym_pandoc_strong] = STATE(601), - [sym_pandoc_str] = STATE(601), - [sym__prose_punctuation] = STATE(601), - [sym_pandoc_line_break] = STATE(601), - [aux_sym_pipe_table_row_repeat1] = STATE(330), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(601), - [sym_entity_reference] = ACTIONS(2805), - [sym_numeric_character_reference] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(2821), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(2825), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(2805), - [sym__autolink] = ACTIONS(2805), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2805), - [sym_html_element] = ACTIONS(2805), - [sym__pipe_table_delimiter] = ACTIONS(2869), + [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(298)] = { - [sym_list_marker_dot] = STATE(8), - [sym__list_item_dot] = STATE(298), - [aux_sym__list_dot_repeat1] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(2438), - [anon_sym_COLON] = ACTIONS(2438), - [sym_entity_reference] = ACTIONS(2438), - [sym_numeric_character_reference] = ACTIONS(2438), - [anon_sym_LBRACK] = ACTIONS(2438), - [anon_sym_BANG_LBRACK] = ACTIONS(2438), - [anon_sym_DOLLAR] = ACTIONS(2440), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2438), - [anon_sym_LBRACE] = ACTIONS(2438), - [aux_sym_pandoc_str_token1] = ACTIONS(2440), - [anon_sym_PIPE] = ACTIONS(2438), - [aux_sym__prose_punctuation_token1] = ACTIONS(2440), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2440), - [sym__line_ending] = ACTIONS(2438), - [sym__soft_line_ending] = ACTIONS(2438), - [sym__block_quote_start] = ACTIONS(2438), - [sym_atx_h1_marker] = ACTIONS(2438), - [sym_atx_h2_marker] = ACTIONS(2438), - [sym_atx_h3_marker] = ACTIONS(2438), - [sym_atx_h4_marker] = ACTIONS(2438), - [sym_atx_h5_marker] = ACTIONS(2438), - [sym_atx_h6_marker] = ACTIONS(2438), - [sym__thematic_break] = ACTIONS(2438), - [sym__list_marker_minus] = ACTIONS(2438), - [sym__list_marker_plus] = ACTIONS(2438), - [sym__list_marker_star] = ACTIONS(2438), - [sym__list_marker_parenthesis] = ACTIONS(2438), - [sym__list_marker_dot] = ACTIONS(2442), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2438), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2438), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2438), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2438), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2442), - [sym__list_marker_example] = ACTIONS(2438), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2438), - [sym__fenced_code_block_start_backtick] = ACTIONS(2438), - [sym_minus_metadata] = ACTIONS(2438), - [sym__pipe_table_start] = ACTIONS(2438), - [sym__fenced_div_start] = ACTIONS(2438), - [sym_ref_id_specifier] = ACTIONS(2438), - [sym__code_span_start] = ACTIONS(2438), - [sym__html_comment] = ACTIONS(2438), - [sym__autolink] = ACTIONS(2438), - [sym__highlight_span_start] = ACTIONS(2438), - [sym__insert_span_start] = ACTIONS(2438), - [sym__delete_span_start] = ACTIONS(2438), - [sym__edit_comment_span_start] = ACTIONS(2438), - [sym__single_quote_span_open] = ACTIONS(2438), - [sym__double_quote_span_open] = ACTIONS(2438), - [sym__shortcode_open_escaped] = ACTIONS(2438), - [sym__shortcode_open] = ACTIONS(2438), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2438), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2438), - [sym__cite_author_in_text] = ACTIONS(2438), - [sym__cite_suppress_author] = ACTIONS(2438), - [sym__strikeout_open] = ACTIONS(2438), - [sym__subscript_open] = ACTIONS(2438), - [sym__superscript_open] = ACTIONS(2438), - [sym__inline_note_start_token] = ACTIONS(2438), - [sym__strong_emphasis_open_star] = ACTIONS(2438), - [sym__strong_emphasis_open_underscore] = ACTIONS(2438), - [sym__emphasis_open_star] = ACTIONS(2438), - [sym__emphasis_open_underscore] = ACTIONS(2438), - [sym_inline_note_reference] = ACTIONS(2438), - [sym_html_element] = ACTIONS(2438), + [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(299)] = { - [sym__inlines] = STATE(2604), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(809), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(809), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(2917), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), + [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(300)] = { - [sym_pipe_table_cell] = STATE(2946), - [sym_pandoc_span] = STATE(601), - [sym_pandoc_image] = STATE(601), - [sym_pandoc_math] = STATE(601), - [sym_pandoc_display_math] = STATE(601), - [sym_pandoc_code_span] = STATE(601), - [sym_pandoc_single_quote] = STATE(601), - [sym_pandoc_double_quote] = STATE(601), - [sym_insert] = STATE(601), - [sym_delete] = STATE(601), - [sym_edit_comment] = STATE(601), - [sym_highlight] = STATE(601), - [sym__pandoc_attr_specifier] = STATE(601), - [sym__line_with_maybe_spaces] = STATE(2860), - [sym__inline_element] = STATE(601), - [sym_shortcode_escaped] = STATE(601), - [sym_shortcode] = STATE(601), - [sym_citation] = STATE(601), - [sym_inline_note] = STATE(601), - [sym_pandoc_superscript] = STATE(601), - [sym_pandoc_subscript] = STATE(601), - [sym_pandoc_strikeout] = STATE(601), - [sym_pandoc_emph] = STATE(601), - [sym_pandoc_strong] = STATE(601), - [sym_pandoc_str] = STATE(601), - [sym__prose_punctuation] = STATE(601), - [sym_pandoc_line_break] = STATE(601), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(601), - [sym_entity_reference] = ACTIONS(2805), - [sym_numeric_character_reference] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(2821), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(2961), - [sym__line_ending] = ACTIONS(2399), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(2805), - [sym__autolink] = ACTIONS(2805), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2805), - [sym_html_element] = ACTIONS(2805), - [sym__pipe_table_delimiter] = ACTIONS(2963), + [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(301)] = { - [sym_pipe_table_cell] = STATE(2946), - [sym_pandoc_span] = STATE(601), - [sym_pandoc_image] = STATE(601), - [sym_pandoc_math] = STATE(601), - [sym_pandoc_display_math] = STATE(601), - [sym_pandoc_code_span] = STATE(601), - [sym_pandoc_single_quote] = STATE(601), - [sym_pandoc_double_quote] = STATE(601), - [sym_insert] = STATE(601), - [sym_delete] = STATE(601), - [sym_edit_comment] = STATE(601), - [sym_highlight] = STATE(601), - [sym__pandoc_attr_specifier] = STATE(601), - [sym__line_with_maybe_spaces] = STATE(2860), - [sym__inline_element] = STATE(601), - [sym_shortcode_escaped] = STATE(601), - [sym_shortcode] = STATE(601), - [sym_citation] = STATE(601), - [sym_inline_note] = STATE(601), - [sym_pandoc_superscript] = STATE(601), - [sym_pandoc_subscript] = STATE(601), - [sym_pandoc_strikeout] = STATE(601), - [sym_pandoc_emph] = STATE(601), - [sym_pandoc_strong] = STATE(601), - [sym_pandoc_str] = STATE(601), - [sym__prose_punctuation] = STATE(601), - [sym_pandoc_line_break] = STATE(601), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(601), - [sym_entity_reference] = ACTIONS(2805), - [sym_numeric_character_reference] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(2821), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(2961), - [sym__line_ending] = ACTIONS(2395), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(2805), - [sym__autolink] = ACTIONS(2805), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2805), - [sym_html_element] = ACTIONS(2805), - [sym__pipe_table_delimiter] = ACTIONS(2963), + [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(302)] = { - [sym_pipe_table_cell] = STATE(2950), - [sym_pandoc_span] = STATE(601), - [sym_pandoc_image] = STATE(601), - [sym_pandoc_math] = STATE(601), - [sym_pandoc_display_math] = STATE(601), - [sym_pandoc_code_span] = STATE(601), - [sym_pandoc_single_quote] = STATE(601), - [sym_pandoc_double_quote] = STATE(601), - [sym_insert] = STATE(601), - [sym_delete] = STATE(601), - [sym_edit_comment] = STATE(601), - [sym_highlight] = STATE(601), - [sym__pandoc_attr_specifier] = STATE(601), - [sym__line_with_maybe_spaces] = STATE(2860), - [sym__inline_element] = STATE(601), - [sym_shortcode_escaped] = STATE(601), - [sym_shortcode] = STATE(601), - [sym_citation] = STATE(601), - [sym_inline_note] = STATE(601), - [sym_pandoc_superscript] = STATE(601), - [sym_pandoc_subscript] = STATE(601), - [sym_pandoc_strikeout] = STATE(601), - [sym_pandoc_emph] = STATE(601), - [sym_pandoc_strong] = STATE(601), - [sym_pandoc_str] = STATE(601), - [sym__prose_punctuation] = STATE(601), - [sym_pandoc_line_break] = STATE(601), - [aux_sym_pipe_table_row_repeat1] = STATE(328), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(601), - [sym_entity_reference] = ACTIONS(2805), - [sym_numeric_character_reference] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(2821), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(2965), - [sym__line_ending] = ACTIONS(2399), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(2805), - [sym__autolink] = ACTIONS(2805), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2805), - [sym_html_element] = ACTIONS(2805), + [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(303)] = { - [anon_sym_COLON] = ACTIONS(2967), - [sym_entity_reference] = ACTIONS(2967), - [sym_numeric_character_reference] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_BANG_LBRACK] = ACTIONS(2967), - [anon_sym_DOLLAR] = ACTIONS(2969), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [aux_sym_pandoc_str_token1] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2967), - [aux_sym__prose_punctuation_token1] = ACTIONS(2969), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2969), - [sym__line_ending] = ACTIONS(2967), - [sym__soft_line_ending] = ACTIONS(2967), - [sym__block_close] = ACTIONS(2967), - [sym_block_continuation] = ACTIONS(2971), - [sym__block_quote_start] = ACTIONS(2967), - [sym_atx_h1_marker] = ACTIONS(2967), - [sym_atx_h2_marker] = ACTIONS(2967), - [sym_atx_h3_marker] = ACTIONS(2967), - [sym_atx_h4_marker] = ACTIONS(2967), - [sym_atx_h5_marker] = ACTIONS(2967), - [sym_atx_h6_marker] = ACTIONS(2967), - [sym__thematic_break] = ACTIONS(2967), - [sym__list_marker_minus] = ACTIONS(2967), - [sym__list_marker_plus] = ACTIONS(2967), - [sym__list_marker_star] = ACTIONS(2967), - [sym__list_marker_parenthesis] = ACTIONS(2967), - [sym__list_marker_dot] = ACTIONS(2967), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_example] = ACTIONS(2967), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2967), - [sym__fenced_code_block_start_backtick] = ACTIONS(2967), - [sym_minus_metadata] = ACTIONS(2967), - [sym__pipe_table_start] = ACTIONS(2967), - [sym__fenced_div_start] = ACTIONS(2967), - [sym__fenced_div_end] = ACTIONS(2967), - [sym_ref_id_specifier] = ACTIONS(2967), - [sym__code_span_start] = ACTIONS(2967), - [sym__html_comment] = ACTIONS(2967), - [sym__autolink] = ACTIONS(2967), - [sym__highlight_span_start] = ACTIONS(2967), - [sym__insert_span_start] = ACTIONS(2967), - [sym__delete_span_start] = ACTIONS(2967), - [sym__edit_comment_span_start] = ACTIONS(2967), - [sym__single_quote_span_open] = ACTIONS(2967), - [sym__double_quote_span_open] = ACTIONS(2967), - [sym__shortcode_open_escaped] = ACTIONS(2967), - [sym__shortcode_open] = ACTIONS(2967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2967), - [sym__cite_author_in_text] = ACTIONS(2967), - [sym__cite_suppress_author] = ACTIONS(2967), - [sym__strikeout_open] = ACTIONS(2967), - [sym__subscript_open] = ACTIONS(2967), - [sym__superscript_open] = ACTIONS(2967), - [sym__inline_note_start_token] = ACTIONS(2967), - [sym__strong_emphasis_open_star] = ACTIONS(2967), - [sym__strong_emphasis_open_underscore] = ACTIONS(2967), - [sym__emphasis_open_star] = ACTIONS(2967), - [sym__emphasis_open_underscore] = ACTIONS(2967), - [sym_inline_note_reference] = ACTIONS(2967), - [sym_html_element] = ACTIONS(2967), + [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(304)] = { - [sym_pandoc_span] = STATE(306), - [sym_pandoc_image] = STATE(306), - [sym_pandoc_math] = STATE(306), - [sym_pandoc_display_math] = STATE(306), - [sym_pandoc_code_span] = STATE(306), - [sym_pandoc_single_quote] = STATE(306), - [sym_pandoc_double_quote] = STATE(306), - [sym_insert] = STATE(306), - [sym_delete] = STATE(306), - [sym_edit_comment] = STATE(306), - [sym_highlight] = STATE(306), - [sym__pandoc_attr_specifier] = STATE(306), - [sym__inline_element] = STATE(306), - [sym_shortcode_escaped] = STATE(306), - [sym_shortcode] = STATE(306), - [sym_citation] = STATE(306), - [sym_inline_note] = STATE(306), - [sym_pandoc_superscript] = STATE(306), - [sym_pandoc_subscript] = STATE(306), - [sym_pandoc_strikeout] = STATE(306), - [sym_pandoc_emph] = STATE(306), - [sym_pandoc_strong] = STATE(306), - [sym_pandoc_str] = STATE(306), - [sym__prose_punctuation] = STATE(306), - [sym_pandoc_line_break] = STATE(306), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(306), - [sym_entity_reference] = ACTIONS(2973), - [sym_numeric_character_reference] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2975), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(2393), - [sym__line_ending] = ACTIONS(2977), - [sym__eof] = ACTIONS(2977), - [sym__pipe_table_line_ending] = ACTIONS(2977), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(2973), - [sym__autolink] = ACTIONS(2973), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(2973), - [sym_html_element] = ACTIONS(2973), - [sym__pipe_table_delimiter] = ACTIONS(2977), + [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(305)] = { - [anon_sym_COLON] = ACTIONS(2979), - [sym_entity_reference] = ACTIONS(2979), - [sym_numeric_character_reference] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_BANG_LBRACK] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2981), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2979), - [aux_sym_pandoc_str_token1] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2979), - [aux_sym__prose_punctuation_token1] = ACTIONS(2981), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2981), - [sym__line_ending] = ACTIONS(2979), - [sym__soft_line_ending] = ACTIONS(2979), - [sym__block_close] = ACTIONS(2979), - [sym_block_continuation] = ACTIONS(2983), - [sym__block_quote_start] = ACTIONS(2979), - [sym_atx_h1_marker] = ACTIONS(2979), - [sym_atx_h2_marker] = ACTIONS(2979), - [sym_atx_h3_marker] = ACTIONS(2979), - [sym_atx_h4_marker] = ACTIONS(2979), - [sym_atx_h5_marker] = ACTIONS(2979), - [sym_atx_h6_marker] = ACTIONS(2979), - [sym__thematic_break] = ACTIONS(2979), - [sym__list_marker_minus] = ACTIONS(2979), - [sym__list_marker_plus] = ACTIONS(2979), - [sym__list_marker_star] = ACTIONS(2979), - [sym__list_marker_parenthesis] = ACTIONS(2979), - [sym__list_marker_dot] = ACTIONS(2979), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_example] = ACTIONS(2979), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2979), - [sym__fenced_code_block_start_backtick] = ACTIONS(2979), - [sym_minus_metadata] = ACTIONS(2979), - [sym__pipe_table_start] = ACTIONS(2979), - [sym__fenced_div_start] = ACTIONS(2979), - [sym__fenced_div_end] = ACTIONS(2979), - [sym_ref_id_specifier] = ACTIONS(2979), - [sym__code_span_start] = ACTIONS(2979), - [sym__html_comment] = ACTIONS(2979), - [sym__autolink] = ACTIONS(2979), - [sym__highlight_span_start] = ACTIONS(2979), - [sym__insert_span_start] = ACTIONS(2979), - [sym__delete_span_start] = ACTIONS(2979), - [sym__edit_comment_span_start] = ACTIONS(2979), - [sym__single_quote_span_open] = ACTIONS(2979), - [sym__double_quote_span_open] = ACTIONS(2979), - [sym__shortcode_open_escaped] = ACTIONS(2979), - [sym__shortcode_open] = ACTIONS(2979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2979), - [sym__cite_author_in_text] = ACTIONS(2979), - [sym__cite_suppress_author] = ACTIONS(2979), - [sym__strikeout_open] = ACTIONS(2979), - [sym__subscript_open] = ACTIONS(2979), - [sym__superscript_open] = ACTIONS(2979), - [sym__inline_note_start_token] = ACTIONS(2979), - [sym__strong_emphasis_open_star] = ACTIONS(2979), - [sym__strong_emphasis_open_underscore] = ACTIONS(2979), - [sym__emphasis_open_star] = ACTIONS(2979), - [sym__emphasis_open_underscore] = ACTIONS(2979), - [sym_inline_note_reference] = ACTIONS(2979), - [sym_html_element] = ACTIONS(2979), + [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), + [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), }, [STATE(306)] = { - [sym_pandoc_span] = STATE(306), - [sym_pandoc_image] = STATE(306), - [sym_pandoc_math] = STATE(306), - [sym_pandoc_display_math] = STATE(306), - [sym_pandoc_code_span] = STATE(306), - [sym_pandoc_single_quote] = STATE(306), - [sym_pandoc_double_quote] = STATE(306), - [sym_insert] = STATE(306), - [sym_delete] = STATE(306), - [sym_edit_comment] = STATE(306), - [sym_highlight] = STATE(306), - [sym__pandoc_attr_specifier] = STATE(306), - [sym__inline_element] = STATE(306), - [sym_shortcode_escaped] = STATE(306), - [sym_shortcode] = STATE(306), - [sym_citation] = STATE(306), - [sym_inline_note] = STATE(306), - [sym_pandoc_superscript] = STATE(306), - [sym_pandoc_subscript] = STATE(306), - [sym_pandoc_strikeout] = STATE(306), - [sym_pandoc_emph] = STATE(306), - [sym_pandoc_strong] = STATE(306), - [sym_pandoc_str] = STATE(306), - [sym__prose_punctuation] = STATE(306), - [sym_pandoc_line_break] = STATE(306), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(306), - [sym_entity_reference] = ACTIONS(2985), - [sym_numeric_character_reference] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_BANG_LBRACK] = ACTIONS(2991), - [anon_sym_DOLLAR] = ACTIONS(2994), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(3000), - [aux_sym_pandoc_str_token1] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3006), - [aux_sym__prose_punctuation_token1] = ACTIONS(3009), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3012), - [sym__whitespace] = ACTIONS(3015), - [sym__line_ending] = ACTIONS(3018), - [sym__eof] = ACTIONS(3018), - [sym__pipe_table_line_ending] = ACTIONS(3018), - [sym__code_span_start] = ACTIONS(3020), - [sym__html_comment] = ACTIONS(2985), - [sym__autolink] = ACTIONS(2985), - [sym__highlight_span_start] = ACTIONS(3023), - [sym__insert_span_start] = ACTIONS(3026), - [sym__delete_span_start] = ACTIONS(3029), - [sym__edit_comment_span_start] = ACTIONS(3032), - [sym__single_quote_span_open] = ACTIONS(3035), - [sym__double_quote_span_open] = ACTIONS(3038), - [sym__shortcode_open_escaped] = ACTIONS(3041), - [sym__shortcode_open] = ACTIONS(3044), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3047), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3050), - [sym__cite_author_in_text] = ACTIONS(3053), - [sym__cite_suppress_author] = ACTIONS(3056), - [sym__strikeout_open] = ACTIONS(3059), - [sym__subscript_open] = ACTIONS(3062), - [sym__superscript_open] = ACTIONS(3065), - [sym__inline_note_start_token] = ACTIONS(3068), - [sym__strong_emphasis_open_star] = ACTIONS(3071), - [sym__strong_emphasis_open_underscore] = ACTIONS(3074), - [sym__emphasis_open_star] = ACTIONS(3077), - [sym__emphasis_open_underscore] = ACTIONS(3080), - [sym_inline_note_reference] = ACTIONS(2985), - [sym_html_element] = ACTIONS(2985), - [sym__pipe_table_delimiter] = ACTIONS(3018), + [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(307)] = { - [sym_pipe_table_cell] = STATE(2867), - [sym_pandoc_span] = STATE(601), - [sym_pandoc_image] = STATE(601), - [sym_pandoc_math] = STATE(601), - [sym_pandoc_display_math] = STATE(601), - [sym_pandoc_code_span] = STATE(601), - [sym_pandoc_single_quote] = STATE(601), - [sym_pandoc_double_quote] = STATE(601), - [sym_insert] = STATE(601), - [sym_delete] = STATE(601), - [sym_edit_comment] = STATE(601), - [sym_highlight] = STATE(601), - [sym__pandoc_attr_specifier] = STATE(601), - [sym__line_with_maybe_spaces] = STATE(2860), - [sym__inline_element] = STATE(601), - [sym_shortcode_escaped] = STATE(601), - [sym_shortcode] = STATE(601), - [sym_citation] = STATE(601), - [sym_inline_note] = STATE(601), - [sym_pandoc_superscript] = STATE(601), - [sym_pandoc_subscript] = STATE(601), - [sym_pandoc_strikeout] = STATE(601), - [sym_pandoc_emph] = STATE(601), - [sym_pandoc_strong] = STATE(601), - [sym_pandoc_str] = STATE(601), - [sym__prose_punctuation] = STATE(601), - [sym_pandoc_line_break] = STATE(601), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(601), - [sym_entity_reference] = ACTIONS(2805), - [sym_numeric_character_reference] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(2821), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(2961), - [sym__line_ending] = ACTIONS(2403), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(2805), - [sym__autolink] = ACTIONS(2805), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2805), - [sym_html_element] = ACTIONS(2805), - [sym__pipe_table_delimiter] = ACTIONS(2963), + [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(308)] = { - [anon_sym_COLON] = ACTIONS(3083), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_BANG_LBRACK] = ACTIONS(3083), - [anon_sym_DOLLAR] = ACTIONS(3085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3083), - [aux_sym_pandoc_str_token1] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3083), - [aux_sym__prose_punctuation_token1] = ACTIONS(3085), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3085), - [sym__line_ending] = ACTIONS(3083), - [sym__soft_line_ending] = ACTIONS(3083), - [sym__block_close] = ACTIONS(3083), - [sym_block_continuation] = ACTIONS(3087), - [sym__block_quote_start] = ACTIONS(3083), - [sym_atx_h1_marker] = ACTIONS(3083), - [sym_atx_h2_marker] = ACTIONS(3083), - [sym_atx_h3_marker] = ACTIONS(3083), - [sym_atx_h4_marker] = ACTIONS(3083), - [sym_atx_h5_marker] = ACTIONS(3083), - [sym_atx_h6_marker] = ACTIONS(3083), - [sym__thematic_break] = ACTIONS(3083), - [sym__list_marker_minus] = ACTIONS(3083), - [sym__list_marker_plus] = ACTIONS(3083), - [sym__list_marker_star] = ACTIONS(3083), - [sym__list_marker_parenthesis] = ACTIONS(3083), - [sym__list_marker_dot] = ACTIONS(3083), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_example] = ACTIONS(3083), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3083), - [sym__fenced_code_block_start_backtick] = ACTIONS(3083), - [sym_minus_metadata] = ACTIONS(3083), - [sym__pipe_table_start] = ACTIONS(3083), - [sym__fenced_div_start] = ACTIONS(3083), - [sym__fenced_div_end] = ACTIONS(3083), - [sym_ref_id_specifier] = ACTIONS(3083), - [sym__code_span_start] = ACTIONS(3083), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3083), - [sym__insert_span_start] = ACTIONS(3083), - [sym__delete_span_start] = ACTIONS(3083), - [sym__edit_comment_span_start] = ACTIONS(3083), - [sym__single_quote_span_open] = ACTIONS(3083), - [sym__double_quote_span_open] = ACTIONS(3083), - [sym__shortcode_open_escaped] = ACTIONS(3083), - [sym__shortcode_open] = ACTIONS(3083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3083), - [sym__cite_author_in_text] = ACTIONS(3083), - [sym__cite_suppress_author] = ACTIONS(3083), - [sym__strikeout_open] = ACTIONS(3083), - [sym__subscript_open] = ACTIONS(3083), - [sym__superscript_open] = ACTIONS(3083), - [sym__inline_note_start_token] = ACTIONS(3083), - [sym__strong_emphasis_open_star] = ACTIONS(3083), - [sym__strong_emphasis_open_underscore] = ACTIONS(3083), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3083), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), + [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(309)] = { - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3091), - [sym__line_ending] = ACTIONS(3089), - [sym__soft_line_ending] = ACTIONS(3089), - [sym__block_close] = ACTIONS(3089), - [sym_block_continuation] = ACTIONS(3093), - [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_minus_metadata] = ACTIONS(3089), - [sym__pipe_table_start] = ACTIONS(3089), - [sym__fenced_div_start] = ACTIONS(3089), - [sym__fenced_div_end] = 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__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(310)] = { - [anon_sym_COLON] = ACTIONS(3095), - [sym_entity_reference] = ACTIONS(3095), - [sym_numeric_character_reference] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3095), - [aux_sym__prose_punctuation_token1] = ACTIONS(3097), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3097), - [sym__line_ending] = ACTIONS(3095), - [sym__soft_line_ending] = ACTIONS(3095), - [sym__block_close] = ACTIONS(3095), - [sym_block_continuation] = ACTIONS(3099), - [sym__block_quote_start] = ACTIONS(3095), - [sym_atx_h1_marker] = ACTIONS(3095), - [sym_atx_h2_marker] = ACTIONS(3095), - [sym_atx_h3_marker] = ACTIONS(3095), - [sym_atx_h4_marker] = ACTIONS(3095), - [sym_atx_h5_marker] = ACTIONS(3095), - [sym_atx_h6_marker] = ACTIONS(3095), - [sym__thematic_break] = ACTIONS(3095), - [sym__list_marker_minus] = ACTIONS(3095), - [sym__list_marker_plus] = ACTIONS(3095), - [sym__list_marker_star] = ACTIONS(3095), - [sym__list_marker_parenthesis] = ACTIONS(3095), - [sym__list_marker_dot] = ACTIONS(3095), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_example] = ACTIONS(3095), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3095), - [sym__fenced_code_block_start_backtick] = ACTIONS(3095), - [sym_minus_metadata] = ACTIONS(3095), - [sym__pipe_table_start] = ACTIONS(3095), - [sym__fenced_div_start] = ACTIONS(3095), - [sym__fenced_div_end] = ACTIONS(3095), - [sym_ref_id_specifier] = ACTIONS(3095), - [sym__code_span_start] = ACTIONS(3095), - [sym__html_comment] = ACTIONS(3095), - [sym__autolink] = ACTIONS(3095), - [sym__highlight_span_start] = ACTIONS(3095), - [sym__insert_span_start] = ACTIONS(3095), - [sym__delete_span_start] = ACTIONS(3095), - [sym__edit_comment_span_start] = ACTIONS(3095), - [sym__single_quote_span_open] = ACTIONS(3095), - [sym__double_quote_span_open] = ACTIONS(3095), - [sym__shortcode_open_escaped] = ACTIONS(3095), - [sym__shortcode_open] = ACTIONS(3095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3095), - [sym__cite_author_in_text] = ACTIONS(3095), - [sym__cite_suppress_author] = ACTIONS(3095), - [sym__strikeout_open] = ACTIONS(3095), - [sym__subscript_open] = ACTIONS(3095), - [sym__superscript_open] = ACTIONS(3095), - [sym__inline_note_start_token] = ACTIONS(3095), - [sym__strong_emphasis_open_star] = ACTIONS(3095), - [sym__strong_emphasis_open_underscore] = ACTIONS(3095), - [sym__emphasis_open_star] = ACTIONS(3095), - [sym__emphasis_open_underscore] = ACTIONS(3095), - [sym_inline_note_reference] = ACTIONS(3095), - [sym_html_element] = ACTIONS(3095), + [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)] = { - [anon_sym_COLON] = ACTIONS(3101), - [sym_entity_reference] = ACTIONS(3101), - [sym_numeric_character_reference] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_BANG_LBRACK] = ACTIONS(3101), - [anon_sym_DOLLAR] = ACTIONS(3103), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [aux_sym_pandoc_str_token1] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3101), - [aux_sym__prose_punctuation_token1] = ACTIONS(3103), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3103), - [sym__line_ending] = ACTIONS(3101), - [sym__soft_line_ending] = ACTIONS(3101), - [sym__block_close] = ACTIONS(3101), - [sym_block_continuation] = ACTIONS(3105), - [sym__block_quote_start] = ACTIONS(3101), - [sym_atx_h1_marker] = ACTIONS(3101), - [sym_atx_h2_marker] = ACTIONS(3101), - [sym_atx_h3_marker] = ACTIONS(3101), - [sym_atx_h4_marker] = ACTIONS(3101), - [sym_atx_h5_marker] = ACTIONS(3101), - [sym_atx_h6_marker] = ACTIONS(3101), - [sym__thematic_break] = ACTIONS(3101), - [sym__list_marker_minus] = ACTIONS(3101), - [sym__list_marker_plus] = ACTIONS(3101), - [sym__list_marker_star] = ACTIONS(3101), - [sym__list_marker_parenthesis] = ACTIONS(3101), - [sym__list_marker_dot] = ACTIONS(3101), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_example] = ACTIONS(3101), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3101), - [sym__fenced_code_block_start_backtick] = ACTIONS(3101), - [sym_minus_metadata] = ACTIONS(3101), - [sym__pipe_table_start] = ACTIONS(3101), - [sym__fenced_div_start] = ACTIONS(3101), - [sym__fenced_div_end] = ACTIONS(3101), - [sym_ref_id_specifier] = ACTIONS(3101), - [sym__code_span_start] = ACTIONS(3101), - [sym__html_comment] = ACTIONS(3101), - [sym__autolink] = ACTIONS(3101), - [sym__highlight_span_start] = ACTIONS(3101), - [sym__insert_span_start] = ACTIONS(3101), - [sym__delete_span_start] = ACTIONS(3101), - [sym__edit_comment_span_start] = ACTIONS(3101), - [sym__single_quote_span_open] = ACTIONS(3101), - [sym__double_quote_span_open] = ACTIONS(3101), - [sym__shortcode_open_escaped] = ACTIONS(3101), - [sym__shortcode_open] = ACTIONS(3101), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3101), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3101), - [sym__cite_author_in_text] = ACTIONS(3101), - [sym__cite_suppress_author] = ACTIONS(3101), - [sym__strikeout_open] = ACTIONS(3101), - [sym__subscript_open] = ACTIONS(3101), - [sym__superscript_open] = ACTIONS(3101), - [sym__inline_note_start_token] = ACTIONS(3101), - [sym__strong_emphasis_open_star] = ACTIONS(3101), - [sym__strong_emphasis_open_underscore] = ACTIONS(3101), - [sym__emphasis_open_star] = ACTIONS(3101), - [sym__emphasis_open_underscore] = ACTIONS(3101), - [sym_inline_note_reference] = ACTIONS(3101), - [sym_html_element] = ACTIONS(3101), + [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)] = { - [anon_sym_COLON] = ACTIONS(3107), - [sym_entity_reference] = ACTIONS(3107), - [sym_numeric_character_reference] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_BANG_LBRACK] = ACTIONS(3107), - [anon_sym_DOLLAR] = ACTIONS(3109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [aux_sym_pandoc_str_token1] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3109), - [sym__line_ending] = ACTIONS(3107), - [sym__soft_line_ending] = ACTIONS(3107), - [sym__block_close] = ACTIONS(3107), - [sym_block_continuation] = ACTIONS(3111), - [sym__block_quote_start] = ACTIONS(3107), - [sym_atx_h1_marker] = ACTIONS(3107), - [sym_atx_h2_marker] = ACTIONS(3107), - [sym_atx_h3_marker] = ACTIONS(3107), - [sym_atx_h4_marker] = ACTIONS(3107), - [sym_atx_h5_marker] = ACTIONS(3107), - [sym_atx_h6_marker] = ACTIONS(3107), - [sym__thematic_break] = ACTIONS(3107), - [sym__list_marker_minus] = ACTIONS(3107), - [sym__list_marker_plus] = ACTIONS(3107), - [sym__list_marker_star] = ACTIONS(3107), - [sym__list_marker_parenthesis] = ACTIONS(3107), - [sym__list_marker_dot] = ACTIONS(3107), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_example] = ACTIONS(3107), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3107), - [sym__fenced_code_block_start_backtick] = ACTIONS(3107), - [sym_minus_metadata] = ACTIONS(3107), - [sym__pipe_table_start] = ACTIONS(3107), - [sym__fenced_div_start] = ACTIONS(3107), - [sym__fenced_div_end] = ACTIONS(3107), - [sym_ref_id_specifier] = ACTIONS(3107), - [sym__code_span_start] = ACTIONS(3107), - [sym__html_comment] = ACTIONS(3107), - [sym__autolink] = ACTIONS(3107), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3107), - [sym__delete_span_start] = ACTIONS(3107), - [sym__edit_comment_span_start] = ACTIONS(3107), - [sym__single_quote_span_open] = ACTIONS(3107), - [sym__double_quote_span_open] = ACTIONS(3107), - [sym__shortcode_open_escaped] = ACTIONS(3107), - [sym__shortcode_open] = ACTIONS(3107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3107), - [sym__cite_author_in_text] = ACTIONS(3107), - [sym__cite_suppress_author] = ACTIONS(3107), - [sym__strikeout_open] = ACTIONS(3107), - [sym__subscript_open] = ACTIONS(3107), - [sym__superscript_open] = ACTIONS(3107), - [sym__inline_note_start_token] = ACTIONS(3107), - [sym__strong_emphasis_open_star] = ACTIONS(3107), - [sym__strong_emphasis_open_underscore] = ACTIONS(3107), - [sym__emphasis_open_star] = ACTIONS(3107), - [sym__emphasis_open_underscore] = ACTIONS(3107), - [sym_inline_note_reference] = ACTIONS(3107), - [sym_html_element] = ACTIONS(3107), + [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(313)] = { - [anon_sym_COLON] = ACTIONS(3113), - [sym_entity_reference] = ACTIONS(3113), - [sym_numeric_character_reference] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3113), - [anon_sym_BANG_LBRACK] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3113), - [aux_sym_pandoc_str_token1] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3113), - [aux_sym__prose_punctuation_token1] = ACTIONS(3115), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3115), - [sym__line_ending] = ACTIONS(3113), - [sym__soft_line_ending] = ACTIONS(3113), - [sym__block_close] = ACTIONS(3113), - [sym_block_continuation] = ACTIONS(3117), - [sym__block_quote_start] = ACTIONS(3113), - [sym_atx_h1_marker] = ACTIONS(3113), - [sym_atx_h2_marker] = ACTIONS(3113), - [sym_atx_h3_marker] = ACTIONS(3113), - [sym_atx_h4_marker] = ACTIONS(3113), - [sym_atx_h5_marker] = ACTIONS(3113), - [sym_atx_h6_marker] = ACTIONS(3113), - [sym__thematic_break] = ACTIONS(3113), - [sym__list_marker_minus] = ACTIONS(3113), - [sym__list_marker_plus] = ACTIONS(3113), - [sym__list_marker_star] = ACTIONS(3113), - [sym__list_marker_parenthesis] = ACTIONS(3113), - [sym__list_marker_dot] = ACTIONS(3113), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_example] = ACTIONS(3113), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3113), - [sym__fenced_code_block_start_backtick] = ACTIONS(3113), - [sym_minus_metadata] = ACTIONS(3113), - [sym__pipe_table_start] = ACTIONS(3113), - [sym__fenced_div_start] = ACTIONS(3113), - [sym__fenced_div_end] = ACTIONS(3113), - [sym_ref_id_specifier] = ACTIONS(3113), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3113), - [sym__autolink] = ACTIONS(3113), - [sym__highlight_span_start] = ACTIONS(3113), - [sym__insert_span_start] = ACTIONS(3113), - [sym__delete_span_start] = ACTIONS(3113), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3113), - [sym__double_quote_span_open] = ACTIONS(3113), - [sym__shortcode_open_escaped] = ACTIONS(3113), - [sym__shortcode_open] = ACTIONS(3113), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3113), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3113), - [sym__cite_author_in_text] = ACTIONS(3113), - [sym__cite_suppress_author] = ACTIONS(3113), - [sym__strikeout_open] = ACTIONS(3113), - [sym__subscript_open] = ACTIONS(3113), - [sym__superscript_open] = ACTIONS(3113), - [sym__inline_note_start_token] = ACTIONS(3113), - [sym__strong_emphasis_open_star] = ACTIONS(3113), - [sym__strong_emphasis_open_underscore] = ACTIONS(3113), - [sym__emphasis_open_star] = ACTIONS(3113), - [sym__emphasis_open_underscore] = ACTIONS(3113), - [sym_inline_note_reference] = ACTIONS(3113), - [sym_html_element] = ACTIONS(3113), + [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(314)] = { - [anon_sym_COLON] = ACTIONS(3119), - [sym_entity_reference] = ACTIONS(3119), - [sym_numeric_character_reference] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_BANG_LBRACK] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3119), - [aux_sym_pandoc_str_token1] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3119), - [aux_sym__prose_punctuation_token1] = ACTIONS(3121), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3121), - [sym__line_ending] = ACTIONS(3119), - [sym__soft_line_ending] = ACTIONS(3119), - [sym__block_close] = ACTIONS(3119), - [sym_block_continuation] = ACTIONS(3123), - [sym__block_quote_start] = ACTIONS(3119), - [sym_atx_h1_marker] = ACTIONS(3119), - [sym_atx_h2_marker] = ACTIONS(3119), - [sym_atx_h3_marker] = ACTIONS(3119), - [sym_atx_h4_marker] = ACTIONS(3119), - [sym_atx_h5_marker] = ACTIONS(3119), - [sym_atx_h6_marker] = ACTIONS(3119), - [sym__thematic_break] = ACTIONS(3119), - [sym__list_marker_minus] = ACTIONS(3119), - [sym__list_marker_plus] = ACTIONS(3119), - [sym__list_marker_star] = ACTIONS(3119), - [sym__list_marker_parenthesis] = ACTIONS(3119), - [sym__list_marker_dot] = ACTIONS(3119), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_example] = ACTIONS(3119), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3119), - [sym__fenced_code_block_start_backtick] = ACTIONS(3119), - [sym_minus_metadata] = ACTIONS(3119), - [sym__pipe_table_start] = ACTIONS(3119), - [sym__fenced_div_start] = ACTIONS(3119), - [sym__fenced_div_end] = ACTIONS(3119), - [sym_ref_id_specifier] = ACTIONS(3119), - [sym__code_span_start] = ACTIONS(3119), - [sym__html_comment] = ACTIONS(3119), - [sym__autolink] = ACTIONS(3119), - [sym__highlight_span_start] = ACTIONS(3119), - [sym__insert_span_start] = ACTIONS(3119), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3119), - [sym__single_quote_span_open] = ACTIONS(3119), - [sym__double_quote_span_open] = ACTIONS(3119), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3119), - [sym__cite_author_in_text] = ACTIONS(3119), - [sym__cite_suppress_author] = ACTIONS(3119), - [sym__strikeout_open] = ACTIONS(3119), - [sym__subscript_open] = ACTIONS(3119), - [sym__superscript_open] = ACTIONS(3119), - [sym__inline_note_start_token] = ACTIONS(3119), - [sym__strong_emphasis_open_star] = ACTIONS(3119), - [sym__strong_emphasis_open_underscore] = ACTIONS(3119), - [sym__emphasis_open_star] = ACTIONS(3119), - [sym__emphasis_open_underscore] = ACTIONS(3119), - [sym_inline_note_reference] = ACTIONS(3119), - [sym_html_element] = ACTIONS(3119), - }, - [STATE(315)] = { - [anon_sym_COLON] = ACTIONS(3125), - [sym_entity_reference] = ACTIONS(3125), - [sym_numeric_character_reference] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_BANG_LBRACK] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [aux_sym_pandoc_str_token1] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3125), - [aux_sym__prose_punctuation_token1] = ACTIONS(3127), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3127), - [sym__line_ending] = ACTIONS(3125), - [sym__soft_line_ending] = ACTIONS(3125), - [sym__block_close] = ACTIONS(3125), - [sym_block_continuation] = ACTIONS(3129), - [sym__block_quote_start] = ACTIONS(3125), - [sym_atx_h1_marker] = ACTIONS(3125), - [sym_atx_h2_marker] = ACTIONS(3125), - [sym_atx_h3_marker] = ACTIONS(3125), - [sym_atx_h4_marker] = ACTIONS(3125), - [sym_atx_h5_marker] = ACTIONS(3125), - [sym_atx_h6_marker] = ACTIONS(3125), - [sym__thematic_break] = ACTIONS(3125), - [sym__list_marker_minus] = ACTIONS(3125), - [sym__list_marker_plus] = ACTIONS(3125), - [sym__list_marker_star] = ACTIONS(3125), - [sym__list_marker_parenthesis] = ACTIONS(3125), - [sym__list_marker_dot] = ACTIONS(3125), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_example] = ACTIONS(3125), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3125), - [sym__fenced_code_block_start_backtick] = ACTIONS(3125), - [sym_minus_metadata] = ACTIONS(3125), - [sym__pipe_table_start] = ACTIONS(3125), - [sym__fenced_div_start] = ACTIONS(3125), - [sym__fenced_div_end] = ACTIONS(3125), - [sym_ref_id_specifier] = ACTIONS(3125), - [sym__code_span_start] = ACTIONS(3125), - [sym__html_comment] = ACTIONS(3125), - [sym__autolink] = ACTIONS(3125), - [sym__highlight_span_start] = ACTIONS(3125), - [sym__insert_span_start] = ACTIONS(3125), - [sym__delete_span_start] = ACTIONS(3125), - [sym__edit_comment_span_start] = ACTIONS(3125), - [sym__single_quote_span_open] = ACTIONS(3125), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3125), - [sym__shortcode_open] = ACTIONS(3125), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3125), - [sym__cite_suppress_author] = ACTIONS(3125), - [sym__strikeout_open] = ACTIONS(3125), - [sym__subscript_open] = ACTIONS(3125), - [sym__superscript_open] = ACTIONS(3125), - [sym__inline_note_start_token] = ACTIONS(3125), - [sym__strong_emphasis_open_star] = ACTIONS(3125), - [sym__strong_emphasis_open_underscore] = ACTIONS(3125), - [sym__emphasis_open_star] = ACTIONS(3125), - [sym__emphasis_open_underscore] = ACTIONS(3125), - [sym_inline_note_reference] = ACTIONS(3125), - [sym_html_element] = ACTIONS(3125), - }, - [STATE(316)] = { - [anon_sym_COLON] = ACTIONS(3131), - [sym_entity_reference] = ACTIONS(3131), - [sym_numeric_character_reference] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_BANG_LBRACK] = ACTIONS(3131), - [anon_sym_DOLLAR] = ACTIONS(3133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [aux_sym_pandoc_str_token1] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [aux_sym__prose_punctuation_token1] = ACTIONS(3133), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3133), - [sym__line_ending] = ACTIONS(3131), - [sym__soft_line_ending] = ACTIONS(3131), - [sym__block_close] = ACTIONS(3131), - [sym_block_continuation] = ACTIONS(3135), - [sym__block_quote_start] = ACTIONS(3131), - [sym_atx_h1_marker] = ACTIONS(3131), - [sym_atx_h2_marker] = ACTIONS(3131), - [sym_atx_h3_marker] = ACTIONS(3131), - [sym_atx_h4_marker] = ACTIONS(3131), - [sym_atx_h5_marker] = ACTIONS(3131), - [sym_atx_h6_marker] = ACTIONS(3131), - [sym__thematic_break] = ACTIONS(3131), - [sym__list_marker_minus] = ACTIONS(3131), - [sym__list_marker_plus] = ACTIONS(3131), - [sym__list_marker_star] = ACTIONS(3131), - [sym__list_marker_parenthesis] = ACTIONS(3131), - [sym__list_marker_dot] = ACTIONS(3131), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_example] = ACTIONS(3131), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3131), - [sym__fenced_code_block_start_backtick] = ACTIONS(3131), - [sym_minus_metadata] = ACTIONS(3131), - [sym__pipe_table_start] = ACTIONS(3131), - [sym__fenced_div_start] = ACTIONS(3131), - [sym__fenced_div_end] = ACTIONS(3131), - [sym_ref_id_specifier] = ACTIONS(3131), - [sym__code_span_start] = ACTIONS(3131), - [sym__html_comment] = ACTIONS(3131), - [sym__autolink] = ACTIONS(3131), - [sym__highlight_span_start] = ACTIONS(3131), - [sym__insert_span_start] = ACTIONS(3131), - [sym__delete_span_start] = ACTIONS(3131), - [sym__edit_comment_span_start] = ACTIONS(3131), - [sym__single_quote_span_open] = ACTIONS(3131), - [sym__double_quote_span_open] = ACTIONS(3131), - [sym__shortcode_open_escaped] = ACTIONS(3131), - [sym__shortcode_open] = ACTIONS(3131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3131), - [sym__cite_author_in_text] = ACTIONS(3131), - [sym__cite_suppress_author] = ACTIONS(3131), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3131), - [sym__superscript_open] = ACTIONS(3131), - [sym__inline_note_start_token] = ACTIONS(3131), - [sym__strong_emphasis_open_star] = ACTIONS(3131), - [sym__strong_emphasis_open_underscore] = ACTIONS(3131), - [sym__emphasis_open_star] = ACTIONS(3131), - [sym__emphasis_open_underscore] = ACTIONS(3131), - [sym_inline_note_reference] = ACTIONS(3131), - [sym_html_element] = ACTIONS(3131), - }, - [STATE(317)] = { - [anon_sym_COLON] = ACTIONS(3137), - [sym_entity_reference] = ACTIONS(3137), - [sym_numeric_character_reference] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_BANG_LBRACK] = ACTIONS(3137), - [anon_sym_DOLLAR] = ACTIONS(3139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [aux_sym_pandoc_str_token1] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3137), - [aux_sym__prose_punctuation_token1] = ACTIONS(3139), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3139), - [sym__line_ending] = ACTIONS(3137), - [sym__soft_line_ending] = ACTIONS(3137), - [sym__block_close] = ACTIONS(3137), - [sym_block_continuation] = ACTIONS(3141), - [sym__block_quote_start] = ACTIONS(3137), - [sym_atx_h1_marker] = ACTIONS(3137), - [sym_atx_h2_marker] = ACTIONS(3137), - [sym_atx_h3_marker] = ACTIONS(3137), - [sym_atx_h4_marker] = ACTIONS(3137), - [sym_atx_h5_marker] = ACTIONS(3137), - [sym_atx_h6_marker] = ACTIONS(3137), - [sym__thematic_break] = ACTIONS(3137), - [sym__list_marker_minus] = ACTIONS(3137), - [sym__list_marker_plus] = ACTIONS(3137), - [sym__list_marker_star] = ACTIONS(3137), - [sym__list_marker_parenthesis] = ACTIONS(3137), - [sym__list_marker_dot] = ACTIONS(3137), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_example] = ACTIONS(3137), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3137), - [sym__fenced_code_block_start_backtick] = ACTIONS(3137), - [sym_minus_metadata] = ACTIONS(3137), - [sym__pipe_table_start] = ACTIONS(3137), - [sym__fenced_div_start] = ACTIONS(3137), - [sym__fenced_div_end] = ACTIONS(3137), - [sym_ref_id_specifier] = ACTIONS(3137), - [sym__code_span_start] = ACTIONS(3137), - [sym__html_comment] = ACTIONS(3137), - [sym__autolink] = ACTIONS(3137), - [sym__highlight_span_start] = ACTIONS(3137), - [sym__insert_span_start] = ACTIONS(3137), - [sym__delete_span_start] = ACTIONS(3137), - [sym__edit_comment_span_start] = ACTIONS(3137), - [sym__single_quote_span_open] = ACTIONS(3137), - [sym__double_quote_span_open] = ACTIONS(3137), - [sym__shortcode_open_escaped] = ACTIONS(3137), - [sym__shortcode_open] = ACTIONS(3137), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3137), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3137), - [sym__cite_author_in_text] = ACTIONS(3137), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3137), - [sym__subscript_open] = ACTIONS(3137), - [sym__superscript_open] = ACTIONS(3137), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3137), - [sym__strong_emphasis_open_underscore] = ACTIONS(3137), - [sym__emphasis_open_star] = ACTIONS(3137), - [sym__emphasis_open_underscore] = ACTIONS(3137), - [sym_inline_note_reference] = ACTIONS(3137), - [sym_html_element] = ACTIONS(3137), - }, - [STATE(318)] = { - [anon_sym_COLON] = ACTIONS(3143), - [sym_entity_reference] = ACTIONS(3143), - [sym_numeric_character_reference] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_BANG_LBRACK] = ACTIONS(3143), - [anon_sym_DOLLAR] = ACTIONS(3145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3143), - [aux_sym_pandoc_str_token1] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3143), - [aux_sym__prose_punctuation_token1] = ACTIONS(3145), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3145), - [sym__line_ending] = ACTIONS(3143), - [sym__soft_line_ending] = ACTIONS(3143), - [sym__block_close] = ACTIONS(3143), - [sym_block_continuation] = ACTIONS(3147), - [sym__block_quote_start] = ACTIONS(3143), - [sym_atx_h1_marker] = ACTIONS(3143), - [sym_atx_h2_marker] = ACTIONS(3143), - [sym_atx_h3_marker] = ACTIONS(3143), - [sym_atx_h4_marker] = ACTIONS(3143), - [sym_atx_h5_marker] = ACTIONS(3143), - [sym_atx_h6_marker] = ACTIONS(3143), - [sym__thematic_break] = ACTIONS(3143), - [sym__list_marker_minus] = ACTIONS(3143), - [sym__list_marker_plus] = ACTIONS(3143), - [sym__list_marker_star] = ACTIONS(3143), - [sym__list_marker_parenthesis] = ACTIONS(3143), - [sym__list_marker_dot] = ACTIONS(3143), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_example] = ACTIONS(3143), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3143), - [sym__fenced_code_block_start_backtick] = ACTIONS(3143), - [sym_minus_metadata] = ACTIONS(3143), - [sym__pipe_table_start] = ACTIONS(3143), - [sym__fenced_div_start] = ACTIONS(3143), - [sym__fenced_div_end] = ACTIONS(3143), - [sym_ref_id_specifier] = ACTIONS(3143), - [sym__code_span_start] = ACTIONS(3143), - [sym__html_comment] = ACTIONS(3143), - [sym__autolink] = ACTIONS(3143), - [sym__highlight_span_start] = ACTIONS(3143), - [sym__insert_span_start] = ACTIONS(3143), - [sym__delete_span_start] = ACTIONS(3143), - [sym__edit_comment_span_start] = ACTIONS(3143), - [sym__single_quote_span_open] = ACTIONS(3143), - [sym__double_quote_span_open] = ACTIONS(3143), - [sym__shortcode_open_escaped] = ACTIONS(3143), - [sym__shortcode_open] = ACTIONS(3143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3143), - [sym__cite_author_in_text] = ACTIONS(3143), - [sym__cite_suppress_author] = ACTIONS(3143), - [sym__strikeout_open] = ACTIONS(3143), - [sym__subscript_open] = ACTIONS(3143), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3143), - [sym__strong_emphasis_open_star] = ACTIONS(3143), - [sym__strong_emphasis_open_underscore] = ACTIONS(3143), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3143), - [sym_inline_note_reference] = ACTIONS(3143), - [sym_html_element] = ACTIONS(3143), - }, - [STATE(319)] = { - [sym__inlines] = STATE(2644), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(872), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(872), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3149), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), - }, - [STATE(320)] = { - [anon_sym_COLON] = ACTIONS(3151), - [sym_entity_reference] = ACTIONS(3151), - [sym_numeric_character_reference] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_BANG_LBRACK] = ACTIONS(3151), - [anon_sym_DOLLAR] = ACTIONS(3153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [aux_sym_pandoc_str_token1] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3151), - [aux_sym__prose_punctuation_token1] = ACTIONS(3153), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3153), - [sym__line_ending] = ACTIONS(3151), - [sym__soft_line_ending] = ACTIONS(3151), - [sym__block_close] = ACTIONS(3151), - [sym_block_continuation] = ACTIONS(3155), - [sym__block_quote_start] = ACTIONS(3151), - [sym_atx_h1_marker] = ACTIONS(3151), - [sym_atx_h2_marker] = ACTIONS(3151), - [sym_atx_h3_marker] = ACTIONS(3151), - [sym_atx_h4_marker] = ACTIONS(3151), - [sym_atx_h5_marker] = ACTIONS(3151), - [sym_atx_h6_marker] = ACTIONS(3151), - [sym__thematic_break] = ACTIONS(3151), - [sym__list_marker_minus] = ACTIONS(3151), - [sym__list_marker_plus] = ACTIONS(3151), - [sym__list_marker_star] = ACTIONS(3151), - [sym__list_marker_parenthesis] = ACTIONS(3151), - [sym__list_marker_dot] = ACTIONS(3151), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_example] = ACTIONS(3151), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3151), - [sym__fenced_code_block_start_backtick] = ACTIONS(3151), - [sym_minus_metadata] = ACTIONS(3151), - [sym__pipe_table_start] = ACTIONS(3151), - [sym__fenced_div_start] = ACTIONS(3151), - [sym__fenced_div_end] = ACTIONS(3151), - [sym_ref_id_specifier] = ACTIONS(3151), - [sym__code_span_start] = ACTIONS(3151), - [sym__html_comment] = ACTIONS(3151), - [sym__autolink] = ACTIONS(3151), - [sym__highlight_span_start] = ACTIONS(3151), - [sym__insert_span_start] = ACTIONS(3151), - [sym__delete_span_start] = ACTIONS(3151), - [sym__edit_comment_span_start] = ACTIONS(3151), - [sym__single_quote_span_open] = ACTIONS(3151), - [sym__double_quote_span_open] = ACTIONS(3151), - [sym__shortcode_open_escaped] = ACTIONS(3151), - [sym__shortcode_open] = ACTIONS(3151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3151), - [sym__cite_author_in_text] = ACTIONS(3151), - [sym__cite_suppress_author] = ACTIONS(3151), - [sym__strikeout_open] = ACTIONS(3151), - [sym__subscript_open] = ACTIONS(3151), - [sym__superscript_open] = ACTIONS(3151), - [sym__inline_note_start_token] = ACTIONS(3151), - [sym__strong_emphasis_open_star] = ACTIONS(3151), - [sym__strong_emphasis_open_underscore] = ACTIONS(3151), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3151), - [sym_inline_note_reference] = ACTIONS(3151), - [sym_html_element] = ACTIONS(3151), - }, - [STATE(321)] = { - [anon_sym_COLON] = ACTIONS(3157), - [sym_entity_reference] = ACTIONS(3157), - [sym_numeric_character_reference] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_BANG_LBRACK] = ACTIONS(3157), - [anon_sym_DOLLAR] = ACTIONS(3159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [aux_sym_pandoc_str_token1] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3157), - [aux_sym__prose_punctuation_token1] = ACTIONS(3159), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3159), - [sym__line_ending] = ACTIONS(3157), - [sym__soft_line_ending] = ACTIONS(3157), - [sym__block_close] = ACTIONS(3157), - [sym_block_continuation] = ACTIONS(3161), - [sym__block_quote_start] = ACTIONS(3157), - [sym_atx_h1_marker] = ACTIONS(3157), - [sym_atx_h2_marker] = ACTIONS(3157), - [sym_atx_h3_marker] = ACTIONS(3157), - [sym_atx_h4_marker] = ACTIONS(3157), - [sym_atx_h5_marker] = ACTIONS(3157), - [sym_atx_h6_marker] = ACTIONS(3157), - [sym__thematic_break] = ACTIONS(3157), - [sym__list_marker_minus] = ACTIONS(3157), - [sym__list_marker_plus] = ACTIONS(3157), - [sym__list_marker_star] = ACTIONS(3157), - [sym__list_marker_parenthesis] = ACTIONS(3157), - [sym__list_marker_dot] = ACTIONS(3157), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_example] = ACTIONS(3157), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3157), - [sym__fenced_code_block_start_backtick] = ACTIONS(3157), - [sym_minus_metadata] = ACTIONS(3157), - [sym__pipe_table_start] = ACTIONS(3157), - [sym__fenced_div_start] = ACTIONS(3157), - [sym__fenced_div_end] = ACTIONS(3157), - [sym_ref_id_specifier] = ACTIONS(3157), - [sym__code_span_start] = ACTIONS(3157), - [sym__html_comment] = ACTIONS(3157), - [sym__autolink] = ACTIONS(3157), - [sym__highlight_span_start] = ACTIONS(3157), - [sym__insert_span_start] = ACTIONS(3157), - [sym__delete_span_start] = ACTIONS(3157), - [sym__edit_comment_span_start] = ACTIONS(3157), - [sym__single_quote_span_open] = ACTIONS(3157), - [sym__double_quote_span_open] = ACTIONS(3157), - [sym__shortcode_open_escaped] = ACTIONS(3157), - [sym__shortcode_open] = ACTIONS(3157), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3157), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3157), - [sym__cite_author_in_text] = ACTIONS(3157), - [sym__cite_suppress_author] = ACTIONS(3157), - [sym__strikeout_open] = ACTIONS(3157), - [sym__subscript_open] = ACTIONS(3157), - [sym__superscript_open] = ACTIONS(3157), - [sym__inline_note_start_token] = ACTIONS(3157), - [sym__strong_emphasis_open_star] = ACTIONS(3157), - [sym__strong_emphasis_open_underscore] = ACTIONS(3157), - [sym__emphasis_open_star] = ACTIONS(3157), - [sym__emphasis_open_underscore] = ACTIONS(3157), - [sym_inline_note_reference] = ACTIONS(3157), - [sym_html_element] = ACTIONS(3157), - }, - [STATE(322)] = { - [anon_sym_COLON] = ACTIONS(3163), - [sym_entity_reference] = ACTIONS(3163), - [sym_numeric_character_reference] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_BANG_LBRACK] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [aux_sym_pandoc_str_token1] = ACTIONS(3165), - [anon_sym_PIPE] = ACTIONS(3163), - [aux_sym__prose_punctuation_token1] = ACTIONS(3165), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3165), - [sym__line_ending] = ACTIONS(3163), - [sym__soft_line_ending] = ACTIONS(3163), - [sym__block_close] = ACTIONS(3163), - [sym_block_continuation] = ACTIONS(3167), - [sym__block_quote_start] = ACTIONS(3163), - [sym_atx_h1_marker] = ACTIONS(3163), - [sym_atx_h2_marker] = ACTIONS(3163), - [sym_atx_h3_marker] = ACTIONS(3163), - [sym_atx_h4_marker] = ACTIONS(3163), - [sym_atx_h5_marker] = ACTIONS(3163), - [sym_atx_h6_marker] = ACTIONS(3163), - [sym__thematic_break] = ACTIONS(3163), - [sym__list_marker_minus] = ACTIONS(3163), - [sym__list_marker_plus] = ACTIONS(3163), - [sym__list_marker_star] = ACTIONS(3163), - [sym__list_marker_parenthesis] = ACTIONS(3163), - [sym__list_marker_dot] = ACTIONS(3163), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_example] = ACTIONS(3163), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3163), - [sym__fenced_code_block_start_backtick] = ACTIONS(3163), - [sym_minus_metadata] = ACTIONS(3163), - [sym__pipe_table_start] = ACTIONS(3163), - [sym__fenced_div_start] = ACTIONS(3163), - [sym__fenced_div_end] = ACTIONS(3163), - [sym_ref_id_specifier] = ACTIONS(3163), - [sym__code_span_start] = ACTIONS(3163), - [sym__html_comment] = ACTIONS(3163), - [sym__autolink] = ACTIONS(3163), - [sym__highlight_span_start] = ACTIONS(3163), - [sym__insert_span_start] = ACTIONS(3163), - [sym__delete_span_start] = ACTIONS(3163), - [sym__edit_comment_span_start] = ACTIONS(3163), - [sym__single_quote_span_open] = ACTIONS(3163), - [sym__double_quote_span_open] = ACTIONS(3163), - [sym__shortcode_open_escaped] = ACTIONS(3163), - [sym__shortcode_open] = ACTIONS(3163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3163), - [sym__cite_author_in_text] = ACTIONS(3163), - [sym__cite_suppress_author] = ACTIONS(3163), - [sym__strikeout_open] = ACTIONS(3163), - [sym__subscript_open] = ACTIONS(3163), - [sym__superscript_open] = ACTIONS(3163), - [sym__inline_note_start_token] = ACTIONS(3163), - [sym__strong_emphasis_open_star] = ACTIONS(3163), - [sym__strong_emphasis_open_underscore] = ACTIONS(3163), - [sym__emphasis_open_star] = ACTIONS(3163), - [sym__emphasis_open_underscore] = ACTIONS(3163), - [sym_inline_note_reference] = ACTIONS(3163), - [sym_html_element] = ACTIONS(3163), - }, - [STATE(323)] = { - [sym__inlines] = STATE(2596), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(759), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(759), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3169), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), - }, - [STATE(324)] = { - [sym_pipe_table_cell] = STATE(2994), - [sym_pandoc_span] = STATE(601), - [sym_pandoc_image] = STATE(601), - [sym_pandoc_math] = STATE(601), - [sym_pandoc_display_math] = STATE(601), - [sym_pandoc_code_span] = STATE(601), - [sym_pandoc_single_quote] = STATE(601), - [sym_pandoc_double_quote] = STATE(601), - [sym_insert] = STATE(601), - [sym_delete] = STATE(601), - [sym_edit_comment] = STATE(601), - [sym_highlight] = STATE(601), - [sym__pandoc_attr_specifier] = STATE(601), - [sym__line_with_maybe_spaces] = STATE(2860), - [sym__inline_element] = STATE(601), - [sym_shortcode_escaped] = STATE(601), - [sym_shortcode] = STATE(601), - [sym_citation] = STATE(601), - [sym_inline_note] = STATE(601), - [sym_pandoc_superscript] = STATE(601), - [sym_pandoc_subscript] = STATE(601), - [sym_pandoc_strikeout] = STATE(601), - [sym_pandoc_emph] = STATE(601), - [sym_pandoc_strong] = STATE(601), - [sym_pandoc_str] = STATE(601), - [sym__prose_punctuation] = STATE(601), - [sym_pandoc_line_break] = STATE(601), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(601), - [sym_entity_reference] = ACTIONS(2805), - [sym_numeric_character_reference] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(2821), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(2961), - [sym__line_ending] = ACTIONS(2395), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(2805), - [sym__autolink] = ACTIONS(2805), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2805), - [sym_html_element] = ACTIONS(2805), - [sym__pipe_table_delimiter] = ACTIONS(2963), - }, - [STATE(325)] = { - [sym_pipe_table_cell] = STATE(3005), - [sym_pandoc_span] = STATE(601), - [sym_pandoc_image] = STATE(601), - [sym_pandoc_math] = STATE(601), - [sym_pandoc_display_math] = STATE(601), - [sym_pandoc_code_span] = STATE(601), - [sym_pandoc_single_quote] = STATE(601), - [sym_pandoc_double_quote] = STATE(601), - [sym_insert] = STATE(601), - [sym_delete] = STATE(601), - [sym_edit_comment] = STATE(601), - [sym_highlight] = STATE(601), - [sym__pandoc_attr_specifier] = STATE(601), - [sym__line_with_maybe_spaces] = STATE(2860), - [sym__inline_element] = STATE(601), - [sym_shortcode_escaped] = STATE(601), - [sym_shortcode] = STATE(601), - [sym_citation] = STATE(601), - [sym_inline_note] = STATE(601), - [sym_pandoc_superscript] = STATE(601), - [sym_pandoc_subscript] = STATE(601), - [sym_pandoc_strikeout] = STATE(601), - [sym_pandoc_emph] = STATE(601), - [sym_pandoc_strong] = STATE(601), - [sym_pandoc_str] = STATE(601), - [sym__prose_punctuation] = STATE(601), - [sym_pandoc_line_break] = STATE(601), - [aux_sym_pipe_table_row_repeat1] = STATE(328), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(601), - [sym_entity_reference] = ACTIONS(2805), - [sym_numeric_character_reference] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(2821), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(3171), - [sym__line_ending] = ACTIONS(2407), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(2805), - [sym__autolink] = ACTIONS(2805), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2805), - [sym_html_element] = ACTIONS(2805), - }, + [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(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(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(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(318)] = { + [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__fenced_div_end] = 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(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(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(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), + [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__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__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__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] = 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)] = { - [sym_pipe_table_cell] = STATE(3005), - [sym_pandoc_span] = STATE(601), - [sym_pandoc_image] = STATE(601), - [sym_pandoc_math] = STATE(601), - [sym_pandoc_display_math] = STATE(601), - [sym_pandoc_code_span] = STATE(601), - [sym_pandoc_single_quote] = STATE(601), - [sym_pandoc_double_quote] = STATE(601), - [sym_insert] = STATE(601), - [sym_delete] = STATE(601), - [sym_edit_comment] = STATE(601), - [sym_highlight] = STATE(601), - [sym__pandoc_attr_specifier] = STATE(601), - [sym__line_with_maybe_spaces] = STATE(2860), - [sym__inline_element] = STATE(601), - [sym_shortcode_escaped] = STATE(601), - [sym_shortcode] = STATE(601), - [sym_citation] = STATE(601), - [sym_inline_note] = STATE(601), - [sym_pandoc_superscript] = STATE(601), - [sym_pandoc_subscript] = STATE(601), - [sym_pandoc_strikeout] = STATE(601), - [sym_pandoc_emph] = STATE(601), - [sym_pandoc_strong] = STATE(601), - [sym_pandoc_str] = STATE(601), - [sym__prose_punctuation] = STATE(601), - [sym_pandoc_line_break] = STATE(601), - [aux_sym_pipe_table_row_repeat1] = STATE(302), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(601), - [sym_entity_reference] = ACTIONS(2805), - [sym_numeric_character_reference] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(2821), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(3173), - [sym__line_ending] = ACTIONS(2411), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(2805), - [sym__autolink] = ACTIONS(2805), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2805), - [sym_html_element] = ACTIONS(2805), + [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_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)] = { - [sym_pipe_table_cell] = STATE(2994), - [sym_pandoc_span] = STATE(601), - [sym_pandoc_image] = STATE(601), - [sym_pandoc_math] = STATE(601), - [sym_pandoc_display_math] = STATE(601), - [sym_pandoc_code_span] = STATE(601), - [sym_pandoc_single_quote] = STATE(601), - [sym_pandoc_double_quote] = STATE(601), - [sym_insert] = STATE(601), - [sym_delete] = STATE(601), - [sym_edit_comment] = STATE(601), - [sym_highlight] = STATE(601), - [sym__pandoc_attr_specifier] = STATE(601), - [sym__line_with_maybe_spaces] = STATE(2860), - [sym__inline_element] = STATE(601), - [sym_shortcode_escaped] = STATE(601), - [sym_shortcode] = STATE(601), - [sym_citation] = STATE(601), - [sym_inline_note] = STATE(601), - [sym_pandoc_superscript] = STATE(601), - [sym_pandoc_subscript] = STATE(601), - [sym_pandoc_strikeout] = STATE(601), - [sym_pandoc_emph] = STATE(601), - [sym_pandoc_strong] = STATE(601), - [sym_pandoc_str] = STATE(601), - [sym__prose_punctuation] = STATE(601), - [sym_pandoc_line_break] = STATE(601), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(601), - [sym_entity_reference] = ACTIONS(2805), - [sym_numeric_character_reference] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(2821), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(2961), - [sym__line_ending] = ACTIONS(2407), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(2805), - [sym__autolink] = ACTIONS(2805), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2805), - [sym_html_element] = ACTIONS(2805), - [sym__pipe_table_delimiter] = ACTIONS(2963), + [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_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)] = { - [sym_pipe_table_cell] = STATE(3222), - [sym_pandoc_span] = STATE(742), - [sym_pandoc_image] = STATE(742), - [sym_pandoc_math] = STATE(742), - [sym_pandoc_display_math] = STATE(742), - [sym_pandoc_code_span] = STATE(742), - [sym_pandoc_single_quote] = STATE(742), - [sym_pandoc_double_quote] = STATE(742), - [sym_insert] = STATE(742), - [sym_delete] = STATE(742), - [sym_edit_comment] = STATE(742), - [sym_highlight] = STATE(742), - [sym__pandoc_attr_specifier] = STATE(742), - [sym__line_with_maybe_spaces] = STATE(3118), - [sym__inline_element] = STATE(742), - [sym_shortcode_escaped] = STATE(742), - [sym_shortcode] = STATE(742), - [sym_citation] = STATE(742), - [sym_inline_note] = STATE(742), - [sym_pandoc_superscript] = STATE(742), - [sym_pandoc_subscript] = STATE(742), - [sym_pandoc_strikeout] = STATE(742), - [sym_pandoc_emph] = STATE(742), - [sym_pandoc_strong] = STATE(742), - [sym_pandoc_str] = STATE(742), - [sym__prose_punctuation] = STATE(742), - [sym_pandoc_line_break] = STATE(742), - [aux_sym_pipe_table_row_repeat1] = STATE(328), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(742), - [sym_entity_reference] = ACTIONS(2287), - [sym_numeric_character_reference] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2290), - [anon_sym_BANG_LBRACK] = ACTIONS(2293), - [anon_sym_DOLLAR] = ACTIONS(2296), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2302), - [aux_sym_pandoc_str_token1] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2308), - [aux_sym__prose_punctuation_token1] = ACTIONS(2311), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2314), - [sym__whitespace] = ACTIONS(3175), - [sym__line_ending] = ACTIONS(2320), - [sym__code_span_start] = ACTIONS(2322), - [sym__html_comment] = ACTIONS(2287), - [sym__autolink] = ACTIONS(2287), - [sym__highlight_span_start] = ACTIONS(2325), - [sym__insert_span_start] = ACTIONS(2328), - [sym__delete_span_start] = ACTIONS(2331), - [sym__edit_comment_span_start] = ACTIONS(2334), - [sym__single_quote_span_open] = ACTIONS(2337), - [sym__double_quote_span_open] = ACTIONS(2340), - [sym__shortcode_open_escaped] = ACTIONS(2343), - [sym__shortcode_open] = ACTIONS(2346), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2349), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2352), - [sym__cite_author_in_text] = ACTIONS(2355), - [sym__cite_suppress_author] = ACTIONS(2358), - [sym__strikeout_open] = ACTIONS(2361), - [sym__subscript_open] = ACTIONS(2364), - [sym__superscript_open] = ACTIONS(2367), - [sym__inline_note_start_token] = ACTIONS(2370), - [sym__strong_emphasis_open_star] = ACTIONS(2373), - [sym__strong_emphasis_open_underscore] = ACTIONS(2376), - [sym__emphasis_open_star] = ACTIONS(2379), - [sym__emphasis_open_underscore] = ACTIONS(2382), - [sym_inline_note_reference] = ACTIONS(2287), - [sym_html_element] = ACTIONS(2287), + [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__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)] = { - [sym_pipe_table_cell] = STATE(2812), - [sym_pandoc_span] = STATE(601), - [sym_pandoc_image] = STATE(601), - [sym_pandoc_math] = STATE(601), - [sym_pandoc_display_math] = STATE(601), - [sym_pandoc_code_span] = STATE(601), - [sym_pandoc_single_quote] = STATE(601), - [sym_pandoc_double_quote] = STATE(601), - [sym_insert] = STATE(601), - [sym_delete] = STATE(601), - [sym_edit_comment] = STATE(601), - [sym_highlight] = STATE(601), - [sym__pandoc_attr_specifier] = STATE(601), - [sym__line_with_maybe_spaces] = STATE(2860), - [sym__inline_element] = STATE(601), - [sym_shortcode_escaped] = STATE(601), - [sym_shortcode] = STATE(601), - [sym_citation] = STATE(601), - [sym_inline_note] = STATE(601), - [sym_pandoc_superscript] = STATE(601), - [sym_pandoc_subscript] = STATE(601), - [sym_pandoc_strikeout] = STATE(601), - [sym_pandoc_emph] = STATE(601), - [sym_pandoc_strong] = STATE(601), - [sym_pandoc_str] = STATE(601), - [sym__prose_punctuation] = STATE(601), - [sym_pandoc_line_break] = STATE(601), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(601), - [sym_entity_reference] = ACTIONS(2805), - [sym_numeric_character_reference] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(2821), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(2961), - [sym__line_ending] = ACTIONS(2395), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(2805), - [sym__autolink] = ACTIONS(2805), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2805), - [sym_html_element] = ACTIONS(2805), - [sym__pipe_table_delimiter] = ACTIONS(3178), + [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__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)] = { - [sym_pipe_table_cell] = STATE(2798), - [sym_pandoc_span] = STATE(601), - [sym_pandoc_image] = STATE(601), - [sym_pandoc_math] = STATE(601), - [sym_pandoc_display_math] = STATE(601), - [sym_pandoc_code_span] = STATE(601), - [sym_pandoc_single_quote] = STATE(601), - [sym_pandoc_double_quote] = STATE(601), - [sym_insert] = STATE(601), - [sym_delete] = STATE(601), - [sym_edit_comment] = STATE(601), - [sym_highlight] = STATE(601), - [sym__pandoc_attr_specifier] = STATE(601), - [sym__line_with_maybe_spaces] = STATE(2860), - [sym__inline_element] = STATE(601), - [sym_shortcode_escaped] = STATE(601), - [sym_shortcode] = STATE(601), - [sym_citation] = STATE(601), - [sym_inline_note] = STATE(601), - [sym_pandoc_superscript] = STATE(601), - [sym_pandoc_subscript] = STATE(601), - [sym_pandoc_strikeout] = STATE(601), - [sym_pandoc_emph] = STATE(601), - [sym_pandoc_strong] = STATE(601), - [sym_pandoc_str] = STATE(601), - [sym__prose_punctuation] = STATE(601), - [sym_pandoc_line_break] = STATE(601), - [aux_sym_pipe_table_row_repeat1] = STATE(328), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(601), - [sym_entity_reference] = ACTIONS(2805), - [sym_numeric_character_reference] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(2821), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(3180), - [sym__line_ending] = ACTIONS(2463), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(2805), - [sym__autolink] = ACTIONS(2805), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2805), - [sym_html_element] = ACTIONS(2805), + [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_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)] = { - [sym__inlines] = STATE(2652), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(769), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(769), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3182), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), + [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_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(3017), + [sym_html_element] = ACTIONS(3017), + [sym__pandoc_line_break] = ACTIONS(3017), }, [STATE(332)] = { - [sym__inlines] = STATE(2649), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(749), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(749), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3184), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), + [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)] = { - [sym__inlines] = STATE(2665), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(777), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(777), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3186), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), + [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)] = { - [sym__inlines] = STATE(2588), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(785), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(785), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3188), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), + [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)] = { - [sym__inlines] = STATE(2593), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(793), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(793), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3190), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), + [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)] = { - [sym__inlines] = STATE(2601), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(801), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(801), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3192), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), + [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)] = { - [sym__inlines] = STATE(2610), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(817), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(817), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3194), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), + [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)] = { - [sym__inlines] = STATE(2615), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(825), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(825), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3196), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), + [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)] = { - [sym__inlines] = STATE(2620), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(833), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(833), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3198), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), + [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)] = { - [sym__inlines] = STATE(2628), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(841), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(841), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3200), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), + [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)] = { - [sym__inlines] = STATE(2634), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(849), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(849), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3202), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), + [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)] = { - [sym__inlines] = STATE(2637), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(857), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(857), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3204), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), + [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)] = { - [sym__inlines] = STATE(2641), - [sym_pandoc_span] = STATE(590), - [sym_pandoc_image] = STATE(590), - [sym_pandoc_math] = STATE(590), - [sym_pandoc_display_math] = STATE(590), - [sym_pandoc_code_span] = STATE(590), - [sym_pandoc_single_quote] = STATE(590), - [sym_pandoc_double_quote] = STATE(590), - [sym_insert] = STATE(590), - [sym_delete] = STATE(590), - [sym_edit_comment] = STATE(590), - [sym_highlight] = STATE(590), - [sym__pandoc_attr_specifier] = STATE(590), - [sym__line] = STATE(2613), - [sym__inline_element] = STATE(590), - [sym_shortcode_escaped] = STATE(590), - [sym_shortcode] = STATE(590), - [sym_citation] = STATE(590), - [sym_inline_note] = STATE(590), - [sym_pandoc_superscript] = STATE(590), - [sym_pandoc_subscript] = STATE(590), - [sym_pandoc_strikeout] = STATE(590), - [sym_pandoc_emph] = STATE(590), - [sym_pandoc_strong] = STATE(590), - [sym_pandoc_str] = STATE(590), - [sym__prose_punctuation] = STATE(590), - [sym__soft_line_break] = STATE(865), - [sym_pandoc_line_break] = STATE(590), - [sym__inline_whitespace] = STATE(865), - [sym_entity_reference] = ACTIONS(2897), - [sym_numeric_character_reference] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(2913), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(3206), - [sym__soft_line_ending] = ACTIONS(2505), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(2897), - [sym__autolink] = ACTIONS(2897), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(2897), - [sym_html_element] = ACTIONS(2897), + [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(3208), - [sym_entity_reference] = ACTIONS(3208), - [sym_numeric_character_reference] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_BANG_LBRACK] = ACTIONS(3208), - [anon_sym_DOLLAR] = ACTIONS(3210), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3208), - [aux_sym_pandoc_str_token1] = ACTIONS(3210), - [anon_sym_PIPE] = ACTIONS(3208), - [aux_sym__prose_punctuation_token1] = ACTIONS(3210), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3210), - [sym__line_ending] = ACTIONS(3208), - [sym__soft_line_ending] = ACTIONS(3208), - [sym__block_close] = ACTIONS(3208), - [sym_block_continuation] = ACTIONS(3212), - [sym__block_quote_start] = ACTIONS(3208), - [sym_atx_h1_marker] = ACTIONS(3208), - [sym_atx_h2_marker] = ACTIONS(3208), - [sym_atx_h3_marker] = ACTIONS(3208), - [sym_atx_h4_marker] = ACTIONS(3208), - [sym_atx_h5_marker] = ACTIONS(3208), - [sym_atx_h6_marker] = ACTIONS(3208), - [sym__thematic_break] = ACTIONS(3208), - [sym__list_marker_minus] = ACTIONS(3208), - [sym__list_marker_plus] = ACTIONS(3208), - [sym__list_marker_star] = ACTIONS(3208), - [sym__list_marker_parenthesis] = ACTIONS(3208), - [sym__list_marker_dot] = ACTIONS(3208), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_example] = ACTIONS(3208), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3208), - [sym__fenced_code_block_start_backtick] = ACTIONS(3208), - [sym_minus_metadata] = ACTIONS(3208), - [sym__pipe_table_start] = ACTIONS(3208), - [sym__fenced_div_start] = ACTIONS(3208), - [sym__fenced_div_end] = ACTIONS(3208), - [sym_ref_id_specifier] = ACTIONS(3208), - [sym__code_span_start] = ACTIONS(3208), - [sym__html_comment] = ACTIONS(3208), - [sym__autolink] = ACTIONS(3208), - [sym__highlight_span_start] = ACTIONS(3208), - [sym__insert_span_start] = ACTIONS(3208), - [sym__delete_span_start] = ACTIONS(3208), - [sym__edit_comment_span_start] = ACTIONS(3208), - [sym__single_quote_span_open] = ACTIONS(3208), - [sym__double_quote_span_open] = ACTIONS(3208), - [sym__shortcode_open_escaped] = ACTIONS(3208), - [sym__shortcode_open] = ACTIONS(3208), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3208), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3208), - [sym__cite_author_in_text] = ACTIONS(3208), - [sym__cite_suppress_author] = ACTIONS(3208), - [sym__strikeout_open] = ACTIONS(3208), - [sym__subscript_open] = ACTIONS(3208), - [sym__superscript_open] = ACTIONS(3208), - [sym__inline_note_start_token] = ACTIONS(3208), - [sym__strong_emphasis_open_star] = ACTIONS(3208), - [sym__strong_emphasis_open_underscore] = ACTIONS(3208), - [sym__emphasis_open_star] = ACTIONS(3208), - [sym__emphasis_open_underscore] = ACTIONS(3208), - [sym_inline_note_reference] = ACTIONS(3208), - [sym_html_element] = ACTIONS(3208), + [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(3125), - [sym_entity_reference] = ACTIONS(3125), - [sym_numeric_character_reference] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_BANG_LBRACK] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [aux_sym_pandoc_str_token1] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3125), - [aux_sym__prose_punctuation_token1] = ACTIONS(3127), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3127), - [sym__line_ending] = ACTIONS(3125), - [sym__soft_line_ending] = ACTIONS(3125), - [sym__block_close] = ACTIONS(3125), - [sym_block_continuation] = ACTIONS(3214), - [sym__block_quote_start] = ACTIONS(3125), - [sym_atx_h1_marker] = ACTIONS(3125), - [sym_atx_h2_marker] = ACTIONS(3125), - [sym_atx_h3_marker] = ACTIONS(3125), - [sym_atx_h4_marker] = ACTIONS(3125), - [sym_atx_h5_marker] = ACTIONS(3125), - [sym_atx_h6_marker] = ACTIONS(3125), - [sym__thematic_break] = ACTIONS(3125), - [sym__list_marker_minus] = ACTIONS(3125), - [sym__list_marker_plus] = ACTIONS(3125), - [sym__list_marker_star] = ACTIONS(3125), - [sym__list_marker_parenthesis] = ACTIONS(3125), - [sym__list_marker_dot] = ACTIONS(3125), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_example] = ACTIONS(3125), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3125), - [sym__fenced_code_block_start_backtick] = ACTIONS(3125), - [sym_minus_metadata] = ACTIONS(3125), - [sym__pipe_table_start] = ACTIONS(3125), - [sym__fenced_div_start] = ACTIONS(3125), - [sym_ref_id_specifier] = ACTIONS(3125), - [sym__code_span_start] = ACTIONS(3125), - [sym__html_comment] = ACTIONS(3125), - [sym__autolink] = ACTIONS(3125), - [sym__highlight_span_start] = ACTIONS(3125), - [sym__insert_span_start] = ACTIONS(3125), - [sym__delete_span_start] = ACTIONS(3125), - [sym__edit_comment_span_start] = ACTIONS(3125), - [sym__single_quote_span_open] = ACTIONS(3125), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3125), - [sym__shortcode_open] = ACTIONS(3125), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3125), - [sym__cite_suppress_author] = ACTIONS(3125), - [sym__strikeout_open] = ACTIONS(3125), - [sym__subscript_open] = ACTIONS(3125), - [sym__superscript_open] = ACTIONS(3125), - [sym__inline_note_start_token] = ACTIONS(3125), - [sym__strong_emphasis_open_star] = ACTIONS(3125), - [sym__strong_emphasis_open_underscore] = ACTIONS(3125), - [sym__emphasis_open_star] = ACTIONS(3125), - [sym__emphasis_open_underscore] = ACTIONS(3125), - [sym_inline_note_reference] = ACTIONS(3125), - [sym_html_element] = ACTIONS(3125), + [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), }, [STATE(346)] = { - [anon_sym_COLON] = ACTIONS(3216), - [sym_entity_reference] = ACTIONS(3216), - [sym_numeric_character_reference] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_BANG_LBRACK] = ACTIONS(3216), - [anon_sym_DOLLAR] = ACTIONS(3218), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [aux_sym_pandoc_str_token1] = ACTIONS(3218), - [anon_sym_PIPE] = ACTIONS(3216), - [aux_sym__prose_punctuation_token1] = ACTIONS(3218), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3218), - [sym__line_ending] = ACTIONS(3216), - [sym__soft_line_ending] = ACTIONS(3216), - [sym__block_close] = ACTIONS(3216), - [sym__block_quote_start] = ACTIONS(3216), - [sym_atx_h1_marker] = ACTIONS(3216), - [sym_atx_h2_marker] = ACTIONS(3216), - [sym_atx_h3_marker] = ACTIONS(3216), - [sym_atx_h4_marker] = ACTIONS(3216), - [sym_atx_h5_marker] = ACTIONS(3216), - [sym_atx_h6_marker] = ACTIONS(3216), - [sym__thematic_break] = ACTIONS(3216), - [sym__list_marker_minus] = ACTIONS(3216), - [sym__list_marker_plus] = ACTIONS(3216), - [sym__list_marker_star] = ACTIONS(3216), - [sym__list_marker_parenthesis] = ACTIONS(3216), - [sym__list_marker_dot] = ACTIONS(3216), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_example] = ACTIONS(3216), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3216), - [sym__fenced_code_block_start_backtick] = ACTIONS(3216), - [sym_minus_metadata] = ACTIONS(3216), - [sym__pipe_table_start] = ACTIONS(3216), - [sym__fenced_div_start] = ACTIONS(3216), - [sym__fenced_div_end] = ACTIONS(3216), - [sym_ref_id_specifier] = ACTIONS(3216), - [sym__code_span_start] = ACTIONS(3216), - [sym__html_comment] = ACTIONS(3216), - [sym__autolink] = ACTIONS(3216), - [sym__highlight_span_start] = ACTIONS(3216), - [sym__insert_span_start] = ACTIONS(3216), - [sym__delete_span_start] = ACTIONS(3216), - [sym__edit_comment_span_start] = ACTIONS(3216), - [sym__single_quote_span_open] = ACTIONS(3216), - [sym__double_quote_span_open] = ACTIONS(3216), - [sym__shortcode_open_escaped] = ACTIONS(3216), - [sym__shortcode_open] = ACTIONS(3216), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3216), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3216), - [sym__cite_author_in_text] = ACTIONS(3216), - [sym__cite_suppress_author] = ACTIONS(3216), - [sym__strikeout_open] = ACTIONS(3216), - [sym__subscript_open] = ACTIONS(3216), - [sym__superscript_open] = ACTIONS(3216), - [sym__inline_note_start_token] = ACTIONS(3216), - [sym__strong_emphasis_open_star] = ACTIONS(3216), - [sym__strong_emphasis_open_underscore] = ACTIONS(3216), - [sym__emphasis_open_star] = ACTIONS(3216), - [sym__emphasis_open_underscore] = ACTIONS(3216), - [sym_inline_note_reference] = ACTIONS(3216), - [sym_html_element] = ACTIONS(3216), + [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), }, [STATE(347)] = { - [anon_sym_COLON] = ACTIONS(3220), - [sym_entity_reference] = ACTIONS(3220), - [sym_numeric_character_reference] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_BANG_LBRACK] = ACTIONS(3220), - [anon_sym_DOLLAR] = ACTIONS(3222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3220), - [aux_sym_pandoc_str_token1] = ACTIONS(3222), - [anon_sym_PIPE] = ACTIONS(3220), - [aux_sym__prose_punctuation_token1] = ACTIONS(3222), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3222), - [sym__line_ending] = ACTIONS(3220), - [sym__soft_line_ending] = ACTIONS(3220), - [sym__block_close] = ACTIONS(3220), - [sym__block_quote_start] = ACTIONS(3220), - [sym_atx_h1_marker] = ACTIONS(3220), - [sym_atx_h2_marker] = ACTIONS(3220), - [sym_atx_h3_marker] = ACTIONS(3220), - [sym_atx_h4_marker] = ACTIONS(3220), - [sym_atx_h5_marker] = ACTIONS(3220), - [sym_atx_h6_marker] = ACTIONS(3220), - [sym__thematic_break] = ACTIONS(3220), - [sym__list_marker_minus] = ACTIONS(3220), - [sym__list_marker_plus] = ACTIONS(3220), - [sym__list_marker_star] = ACTIONS(3220), - [sym__list_marker_parenthesis] = ACTIONS(3220), - [sym__list_marker_dot] = ACTIONS(3220), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3220), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3220), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3220), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3220), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3220), - [sym__list_marker_example] = ACTIONS(3220), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3220), - [sym__fenced_code_block_start_backtick] = ACTIONS(3220), - [sym_minus_metadata] = ACTIONS(3220), - [sym__pipe_table_start] = ACTIONS(3220), - [sym__fenced_div_start] = ACTIONS(3220), - [sym__fenced_div_end] = ACTIONS(3220), - [sym_ref_id_specifier] = ACTIONS(3220), - [sym__code_span_start] = ACTIONS(3220), - [sym__html_comment] = ACTIONS(3220), - [sym__autolink] = ACTIONS(3220), - [sym__highlight_span_start] = ACTIONS(3220), - [sym__insert_span_start] = ACTIONS(3220), - [sym__delete_span_start] = ACTIONS(3220), - [sym__edit_comment_span_start] = ACTIONS(3220), - [sym__single_quote_span_open] = ACTIONS(3220), - [sym__double_quote_span_open] = ACTIONS(3220), - [sym__shortcode_open_escaped] = ACTIONS(3220), - [sym__shortcode_open] = ACTIONS(3220), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3220), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3220), - [sym__cite_author_in_text] = ACTIONS(3220), - [sym__cite_suppress_author] = ACTIONS(3220), - [sym__strikeout_open] = ACTIONS(3220), - [sym__subscript_open] = ACTIONS(3220), - [sym__superscript_open] = ACTIONS(3220), - [sym__inline_note_start_token] = ACTIONS(3220), - [sym__strong_emphasis_open_star] = ACTIONS(3220), - [sym__strong_emphasis_open_underscore] = ACTIONS(3220), - [sym__emphasis_open_star] = ACTIONS(3220), - [sym__emphasis_open_underscore] = ACTIONS(3220), - [sym_inline_note_reference] = ACTIONS(3220), - [sym_html_element] = ACTIONS(3220), + [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), }, [STATE(348)] = { - [anon_sym_COLON] = ACTIONS(3224), - [sym_entity_reference] = ACTIONS(3224), - [sym_numeric_character_reference] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_BANG_LBRACK] = ACTIONS(3224), - [anon_sym_DOLLAR] = ACTIONS(3226), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3224), - [aux_sym_pandoc_str_token1] = ACTIONS(3226), - [anon_sym_PIPE] = ACTIONS(3224), - [aux_sym__prose_punctuation_token1] = ACTIONS(3226), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3226), - [sym__line_ending] = ACTIONS(3224), - [sym__soft_line_ending] = ACTIONS(3224), - [sym__block_close] = ACTIONS(3224), - [sym__block_quote_start] = ACTIONS(3224), - [sym_atx_h1_marker] = ACTIONS(3224), - [sym_atx_h2_marker] = ACTIONS(3224), - [sym_atx_h3_marker] = ACTIONS(3224), - [sym_atx_h4_marker] = ACTIONS(3224), - [sym_atx_h5_marker] = ACTIONS(3224), - [sym_atx_h6_marker] = ACTIONS(3224), - [sym__thematic_break] = ACTIONS(3224), - [sym__list_marker_minus] = ACTIONS(3224), - [sym__list_marker_plus] = ACTIONS(3224), - [sym__list_marker_star] = ACTIONS(3224), - [sym__list_marker_parenthesis] = ACTIONS(3224), - [sym__list_marker_dot] = ACTIONS(3224), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_example] = ACTIONS(3224), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3224), - [sym__fenced_code_block_start_backtick] = ACTIONS(3224), - [sym_minus_metadata] = ACTIONS(3224), - [sym__pipe_table_start] = ACTIONS(3224), - [sym__fenced_div_start] = ACTIONS(3224), - [sym__fenced_div_end] = ACTIONS(3224), - [sym_ref_id_specifier] = ACTIONS(3224), - [sym__code_span_start] = ACTIONS(3224), - [sym__html_comment] = ACTIONS(3224), - [sym__autolink] = ACTIONS(3224), - [sym__highlight_span_start] = ACTIONS(3224), - [sym__insert_span_start] = ACTIONS(3224), - [sym__delete_span_start] = ACTIONS(3224), - [sym__edit_comment_span_start] = ACTIONS(3224), - [sym__single_quote_span_open] = ACTIONS(3224), - [sym__double_quote_span_open] = ACTIONS(3224), - [sym__shortcode_open_escaped] = ACTIONS(3224), - [sym__shortcode_open] = ACTIONS(3224), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3224), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3224), - [sym__cite_author_in_text] = ACTIONS(3224), - [sym__cite_suppress_author] = ACTIONS(3224), - [sym__strikeout_open] = ACTIONS(3224), - [sym__subscript_open] = ACTIONS(3224), - [sym__superscript_open] = ACTIONS(3224), - [sym__inline_note_start_token] = ACTIONS(3224), - [sym__strong_emphasis_open_star] = ACTIONS(3224), - [sym__strong_emphasis_open_underscore] = ACTIONS(3224), - [sym__emphasis_open_star] = ACTIONS(3224), - [sym__emphasis_open_underscore] = ACTIONS(3224), - [sym_inline_note_reference] = ACTIONS(3224), - [sym_html_element] = ACTIONS(3224), + [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), }, [STATE(349)] = { - [ts_builtin_sym_end] = ACTIONS(3113), - [anon_sym_COLON] = ACTIONS(3113), - [sym_entity_reference] = ACTIONS(3113), - [sym_numeric_character_reference] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3113), - [anon_sym_BANG_LBRACK] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3113), - [aux_sym_pandoc_str_token1] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3113), - [aux_sym__prose_punctuation_token1] = ACTIONS(3115), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3115), - [sym__line_ending] = ACTIONS(3113), - [sym__soft_line_ending] = ACTIONS(3113), - [sym_block_continuation] = ACTIONS(3228), - [sym__block_quote_start] = ACTIONS(3113), - [sym_atx_h1_marker] = ACTIONS(3113), - [sym_atx_h2_marker] = ACTIONS(3113), - [sym_atx_h3_marker] = ACTIONS(3113), - [sym_atx_h4_marker] = ACTIONS(3113), - [sym_atx_h5_marker] = ACTIONS(3113), - [sym_atx_h6_marker] = ACTIONS(3113), - [sym__thematic_break] = ACTIONS(3113), - [sym__list_marker_minus] = ACTIONS(3113), - [sym__list_marker_plus] = ACTIONS(3113), - [sym__list_marker_star] = ACTIONS(3113), - [sym__list_marker_parenthesis] = ACTIONS(3113), - [sym__list_marker_dot] = ACTIONS(3113), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_example] = ACTIONS(3113), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3113), - [sym__fenced_code_block_start_backtick] = ACTIONS(3113), - [sym_minus_metadata] = ACTIONS(3113), - [sym__pipe_table_start] = ACTIONS(3113), - [sym__fenced_div_start] = ACTIONS(3113), - [sym_ref_id_specifier] = ACTIONS(3113), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3113), - [sym__autolink] = ACTIONS(3113), - [sym__highlight_span_start] = ACTIONS(3113), - [sym__insert_span_start] = ACTIONS(3113), - [sym__delete_span_start] = ACTIONS(3113), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3113), - [sym__double_quote_span_open] = ACTIONS(3113), - [sym__shortcode_open_escaped] = ACTIONS(3113), - [sym__shortcode_open] = ACTIONS(3113), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3113), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3113), - [sym__cite_author_in_text] = ACTIONS(3113), - [sym__cite_suppress_author] = ACTIONS(3113), - [sym__strikeout_open] = ACTIONS(3113), - [sym__subscript_open] = ACTIONS(3113), - [sym__superscript_open] = ACTIONS(3113), - [sym__inline_note_start_token] = ACTIONS(3113), - [sym__strong_emphasis_open_star] = ACTIONS(3113), - [sym__strong_emphasis_open_underscore] = ACTIONS(3113), - [sym__emphasis_open_star] = ACTIONS(3113), - [sym__emphasis_open_underscore] = ACTIONS(3113), - [sym_inline_note_reference] = ACTIONS(3113), - [sym_html_element] = ACTIONS(3113), - }, - [STATE(350)] = { - [ts_builtin_sym_end] = ACTIONS(3119), - [anon_sym_COLON] = ACTIONS(3119), - [sym_entity_reference] = ACTIONS(3119), - [sym_numeric_character_reference] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_BANG_LBRACK] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3119), - [aux_sym_pandoc_str_token1] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3119), - [aux_sym__prose_punctuation_token1] = ACTIONS(3121), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3121), - [sym__line_ending] = ACTIONS(3119), - [sym__soft_line_ending] = ACTIONS(3119), - [sym_block_continuation] = ACTIONS(3230), - [sym__block_quote_start] = ACTIONS(3119), - [sym_atx_h1_marker] = ACTIONS(3119), - [sym_atx_h2_marker] = ACTIONS(3119), - [sym_atx_h3_marker] = ACTIONS(3119), - [sym_atx_h4_marker] = ACTIONS(3119), - [sym_atx_h5_marker] = ACTIONS(3119), - [sym_atx_h6_marker] = ACTIONS(3119), - [sym__thematic_break] = ACTIONS(3119), - [sym__list_marker_minus] = ACTIONS(3119), - [sym__list_marker_plus] = ACTIONS(3119), - [sym__list_marker_star] = ACTIONS(3119), - [sym__list_marker_parenthesis] = ACTIONS(3119), - [sym__list_marker_dot] = ACTIONS(3119), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_example] = ACTIONS(3119), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3119), - [sym__fenced_code_block_start_backtick] = ACTIONS(3119), - [sym_minus_metadata] = ACTIONS(3119), - [sym__pipe_table_start] = ACTIONS(3119), - [sym__fenced_div_start] = ACTIONS(3119), - [sym_ref_id_specifier] = ACTIONS(3119), - [sym__code_span_start] = ACTIONS(3119), - [sym__html_comment] = ACTIONS(3119), - [sym__autolink] = ACTIONS(3119), - [sym__highlight_span_start] = ACTIONS(3119), - [sym__insert_span_start] = ACTIONS(3119), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3119), - [sym__single_quote_span_open] = ACTIONS(3119), - [sym__double_quote_span_open] = ACTIONS(3119), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3119), - [sym__cite_author_in_text] = ACTIONS(3119), - [sym__cite_suppress_author] = ACTIONS(3119), - [sym__strikeout_open] = ACTIONS(3119), - [sym__subscript_open] = ACTIONS(3119), - [sym__superscript_open] = ACTIONS(3119), - [sym__inline_note_start_token] = ACTIONS(3119), - [sym__strong_emphasis_open_star] = ACTIONS(3119), - [sym__strong_emphasis_open_underscore] = ACTIONS(3119), - [sym__emphasis_open_star] = ACTIONS(3119), - [sym__emphasis_open_underscore] = ACTIONS(3119), - [sym_inline_note_reference] = ACTIONS(3119), - [sym_html_element] = ACTIONS(3119), - }, - [STATE(351)] = { - [ts_builtin_sym_end] = ACTIONS(3083), - [anon_sym_COLON] = ACTIONS(3083), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_BANG_LBRACK] = ACTIONS(3083), - [anon_sym_DOLLAR] = ACTIONS(3085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3083), - [aux_sym_pandoc_str_token1] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3083), - [aux_sym__prose_punctuation_token1] = ACTIONS(3085), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3085), - [sym__line_ending] = ACTIONS(3083), - [sym__soft_line_ending] = ACTIONS(3083), - [sym_block_continuation] = ACTIONS(3232), - [sym__block_quote_start] = ACTIONS(3083), - [sym_atx_h1_marker] = ACTIONS(3083), - [sym_atx_h2_marker] = ACTIONS(3083), - [sym_atx_h3_marker] = ACTIONS(3083), - [sym_atx_h4_marker] = ACTIONS(3083), - [sym_atx_h5_marker] = ACTIONS(3083), - [sym_atx_h6_marker] = ACTIONS(3083), - [sym__thematic_break] = ACTIONS(3083), - [sym__list_marker_minus] = ACTIONS(3083), - [sym__list_marker_plus] = ACTIONS(3083), - [sym__list_marker_star] = ACTIONS(3083), - [sym__list_marker_parenthesis] = ACTIONS(3083), - [sym__list_marker_dot] = ACTIONS(3083), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_example] = ACTIONS(3083), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3083), - [sym__fenced_code_block_start_backtick] = ACTIONS(3083), - [sym_minus_metadata] = ACTIONS(3083), - [sym__pipe_table_start] = ACTIONS(3083), - [sym__fenced_div_start] = ACTIONS(3083), - [sym_ref_id_specifier] = ACTIONS(3083), - [sym__code_span_start] = ACTIONS(3083), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3083), - [sym__insert_span_start] = ACTIONS(3083), - [sym__delete_span_start] = ACTIONS(3083), - [sym__edit_comment_span_start] = ACTIONS(3083), - [sym__single_quote_span_open] = ACTIONS(3083), - [sym__double_quote_span_open] = ACTIONS(3083), - [sym__shortcode_open_escaped] = ACTIONS(3083), - [sym__shortcode_open] = ACTIONS(3083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3083), - [sym__cite_author_in_text] = ACTIONS(3083), - [sym__cite_suppress_author] = ACTIONS(3083), - [sym__strikeout_open] = ACTIONS(3083), - [sym__subscript_open] = ACTIONS(3083), - [sym__superscript_open] = ACTIONS(3083), - [sym__inline_note_start_token] = ACTIONS(3083), - [sym__strong_emphasis_open_star] = ACTIONS(3083), - [sym__strong_emphasis_open_underscore] = ACTIONS(3083), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3083), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), - }, - [STATE(352)] = { - [ts_builtin_sym_end] = ACTIONS(3089), [anon_sym_COLON] = ACTIONS(3089), [sym_entity_reference] = ACTIONS(3089), [sym_numeric_character_reference] = ACTIONS(3089), @@ -53858,10 +53226,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_pandoc_str_token1] = ACTIONS(3091), [anon_sym_PIPE] = ACTIONS(3089), [aux_sym__prose_punctuation_token1] = ACTIONS(3091), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3091), [sym__line_ending] = ACTIONS(3089), [sym__soft_line_ending] = ACTIONS(3089), - [sym_block_continuation] = ACTIONS(3234), + [sym_block_continuation] = ACTIONS(3089), [sym__block_quote_start] = ACTIONS(3089), [sym_atx_h1_marker] = ACTIONS(3089), [sym_atx_h2_marker] = ACTIONS(3089), @@ -53883,6 +53250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), @@ -53912,19919 +53280,17735 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__emphasis_open_underscore] = ACTIONS(3089), [sym_inline_note_reference] = ACTIONS(3089), [sym_html_element] = ACTIONS(3089), + [sym__pandoc_line_break] = ACTIONS(3089), + }, + [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), + }, + [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)] = { - [anon_sym_COLON] = ACTIONS(3236), - [sym_entity_reference] = ACTIONS(3236), - [sym_numeric_character_reference] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_BANG_LBRACK] = ACTIONS(3236), - [anon_sym_DOLLAR] = ACTIONS(3238), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(3236), - [aux_sym_pandoc_str_token1] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3236), - [aux_sym__prose_punctuation_token1] = ACTIONS(3238), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3238), - [sym__line_ending] = ACTIONS(3236), - [sym__soft_line_ending] = ACTIONS(3236), - [sym__block_close] = ACTIONS(3236), - [sym__block_quote_start] = ACTIONS(3236), - [sym_atx_h1_marker] = ACTIONS(3236), - [sym_atx_h2_marker] = ACTIONS(3236), - [sym_atx_h3_marker] = ACTIONS(3236), - [sym_atx_h4_marker] = ACTIONS(3236), - [sym_atx_h5_marker] = ACTIONS(3236), - [sym_atx_h6_marker] = ACTIONS(3236), - [sym__thematic_break] = ACTIONS(3236), - [sym__list_marker_minus] = ACTIONS(3236), - [sym__list_marker_plus] = ACTIONS(3236), - [sym__list_marker_star] = ACTIONS(3236), - [sym__list_marker_parenthesis] = ACTIONS(3236), - [sym__list_marker_dot] = ACTIONS(3236), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_example] = ACTIONS(3236), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3236), - [sym__fenced_code_block_start_backtick] = ACTIONS(3236), - [sym_minus_metadata] = ACTIONS(3236), - [sym__pipe_table_start] = ACTIONS(3236), - [sym__fenced_div_start] = ACTIONS(3236), - [sym__fenced_div_end] = ACTIONS(3236), - [sym_ref_id_specifier] = ACTIONS(3236), - [sym__code_span_start] = ACTIONS(3236), - [sym__html_comment] = ACTIONS(3236), - [sym__autolink] = ACTIONS(3236), - [sym__highlight_span_start] = ACTIONS(3236), - [sym__insert_span_start] = ACTIONS(3236), - [sym__delete_span_start] = ACTIONS(3236), - [sym__edit_comment_span_start] = ACTIONS(3236), - [sym__single_quote_span_open] = ACTIONS(3236), - [sym__double_quote_span_open] = ACTIONS(3236), - [sym__shortcode_open_escaped] = ACTIONS(3236), - [sym__shortcode_open] = ACTIONS(3236), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3236), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3236), - [sym__cite_author_in_text] = ACTIONS(3236), - [sym__cite_suppress_author] = ACTIONS(3236), - [sym__strikeout_open] = ACTIONS(3236), - [sym__subscript_open] = ACTIONS(3236), - [sym__superscript_open] = ACTIONS(3236), - [sym__inline_note_start_token] = ACTIONS(3236), - [sym__strong_emphasis_open_star] = ACTIONS(3236), - [sym__strong_emphasis_open_underscore] = ACTIONS(3236), - [sym__emphasis_open_star] = ACTIONS(3236), - [sym__emphasis_open_underscore] = ACTIONS(3236), - [sym_inline_note_reference] = ACTIONS(3236), - [sym_html_element] = ACTIONS(3236), + [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(3095), - [anon_sym_COLON] = ACTIONS(3095), - [sym_entity_reference] = ACTIONS(3095), - [sym_numeric_character_reference] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3095), - [aux_sym__prose_punctuation_token1] = ACTIONS(3097), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3097), - [sym__line_ending] = ACTIONS(3095), - [sym__soft_line_ending] = ACTIONS(3095), - [sym_block_continuation] = ACTIONS(3240), - [sym__block_quote_start] = ACTIONS(3095), - [sym_atx_h1_marker] = ACTIONS(3095), - [sym_atx_h2_marker] = ACTIONS(3095), - [sym_atx_h3_marker] = ACTIONS(3095), - [sym_atx_h4_marker] = ACTIONS(3095), - [sym_atx_h5_marker] = ACTIONS(3095), - [sym_atx_h6_marker] = ACTIONS(3095), - [sym__thematic_break] = ACTIONS(3095), - [sym__list_marker_minus] = ACTIONS(3095), - [sym__list_marker_plus] = ACTIONS(3095), - [sym__list_marker_star] = ACTIONS(3095), - [sym__list_marker_parenthesis] = ACTIONS(3095), - [sym__list_marker_dot] = ACTIONS(3095), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_example] = ACTIONS(3095), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3095), - [sym__fenced_code_block_start_backtick] = ACTIONS(3095), - [sym_minus_metadata] = ACTIONS(3095), - [sym__pipe_table_start] = ACTIONS(3095), - [sym__fenced_div_start] = ACTIONS(3095), - [sym_ref_id_specifier] = ACTIONS(3095), - [sym__code_span_start] = ACTIONS(3095), - [sym__html_comment] = ACTIONS(3095), - [sym__autolink] = ACTIONS(3095), - [sym__highlight_span_start] = ACTIONS(3095), - [sym__insert_span_start] = ACTIONS(3095), - [sym__delete_span_start] = ACTIONS(3095), - [sym__edit_comment_span_start] = ACTIONS(3095), - [sym__single_quote_span_open] = ACTIONS(3095), - [sym__double_quote_span_open] = ACTIONS(3095), - [sym__shortcode_open_escaped] = ACTIONS(3095), - [sym__shortcode_open] = ACTIONS(3095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3095), - [sym__cite_author_in_text] = ACTIONS(3095), - [sym__cite_suppress_author] = ACTIONS(3095), - [sym__strikeout_open] = ACTIONS(3095), - [sym__subscript_open] = ACTIONS(3095), - [sym__superscript_open] = ACTIONS(3095), - [sym__inline_note_start_token] = ACTIONS(3095), - [sym__strong_emphasis_open_star] = ACTIONS(3095), - [sym__strong_emphasis_open_underscore] = ACTIONS(3095), - [sym__emphasis_open_star] = ACTIONS(3095), - [sym__emphasis_open_underscore] = ACTIONS(3095), - [sym_inline_note_reference] = ACTIONS(3095), - [sym_html_element] = ACTIONS(3095), + [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)] = { - [sym_pipe_table_cell] = STATE(3132), - [sym_pandoc_span] = STATE(742), - [sym_pandoc_image] = STATE(742), - [sym_pandoc_math] = STATE(742), - [sym_pandoc_display_math] = STATE(742), - [sym_pandoc_code_span] = STATE(742), - [sym_pandoc_single_quote] = STATE(742), - [sym_pandoc_double_quote] = STATE(742), - [sym_insert] = STATE(742), - [sym_delete] = STATE(742), - [sym_edit_comment] = STATE(742), - [sym_highlight] = STATE(742), - [sym__pandoc_attr_specifier] = STATE(742), - [sym__line_with_maybe_spaces] = STATE(3118), - [sym__inline_element] = STATE(742), - [sym_shortcode_escaped] = STATE(742), - [sym_shortcode] = STATE(742), - [sym_citation] = STATE(742), - [sym_inline_note] = STATE(742), - [sym_pandoc_superscript] = STATE(742), - [sym_pandoc_subscript] = STATE(742), - [sym_pandoc_strikeout] = STATE(742), - [sym_pandoc_emph] = STATE(742), - [sym_pandoc_strong] = STATE(742), - [sym_pandoc_str] = STATE(742), - [sym__prose_punctuation] = STATE(742), - [sym_pandoc_line_break] = STATE(742), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(742), - [sym_entity_reference] = ACTIONS(3242), - [sym_numeric_character_reference] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_BANG_LBRACK] = ACTIONS(3246), - [anon_sym_DOLLAR] = ACTIONS(3248), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3252), - [aux_sym_pandoc_str_token1] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3256), - [aux_sym__prose_punctuation_token1] = ACTIONS(3258), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3260), - [sym__whitespace] = ACTIONS(3262), - [sym__code_span_start] = ACTIONS(3264), - [sym__html_comment] = ACTIONS(3242), - [sym__autolink] = ACTIONS(3242), - [sym__highlight_span_start] = ACTIONS(3266), - [sym__insert_span_start] = ACTIONS(3268), - [sym__delete_span_start] = ACTIONS(3270), - [sym__edit_comment_span_start] = ACTIONS(3272), - [sym__single_quote_span_open] = ACTIONS(3274), - [sym__double_quote_span_open] = ACTIONS(3276), - [sym__shortcode_open_escaped] = ACTIONS(3278), - [sym__shortcode_open] = ACTIONS(3280), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3282), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3284), - [sym__cite_author_in_text] = ACTIONS(3286), - [sym__cite_suppress_author] = ACTIONS(3288), - [sym__strikeout_open] = ACTIONS(3290), - [sym__subscript_open] = ACTIONS(3292), - [sym__superscript_open] = ACTIONS(3294), - [sym__inline_note_start_token] = ACTIONS(3296), - [sym__strong_emphasis_open_star] = ACTIONS(3298), - [sym__strong_emphasis_open_underscore] = ACTIONS(3300), - [sym__emphasis_open_star] = ACTIONS(3302), - [sym__emphasis_open_underscore] = ACTIONS(3304), - [sym_inline_note_reference] = ACTIONS(3242), - [sym_html_element] = ACTIONS(3242), - [sym__pipe_table_delimiter] = ACTIONS(2963), + [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)] = { - [anon_sym_COLON] = ACTIONS(3119), - [sym_entity_reference] = ACTIONS(3119), - [sym_numeric_character_reference] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_BANG_LBRACK] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3119), - [aux_sym_pandoc_str_token1] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3119), - [aux_sym__prose_punctuation_token1] = ACTIONS(3121), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3121), - [sym__line_ending] = ACTIONS(3119), - [sym__soft_line_ending] = ACTIONS(3119), - [sym__block_close] = ACTIONS(3119), - [sym__block_quote_start] = ACTIONS(3119), - [sym_atx_h1_marker] = ACTIONS(3119), - [sym_atx_h2_marker] = ACTIONS(3119), - [sym_atx_h3_marker] = ACTIONS(3119), - [sym_atx_h4_marker] = ACTIONS(3119), - [sym_atx_h5_marker] = ACTIONS(3119), - [sym_atx_h6_marker] = ACTIONS(3119), - [sym__thematic_break] = ACTIONS(3119), - [sym__list_marker_minus] = ACTIONS(3119), - [sym__list_marker_plus] = ACTIONS(3119), - [sym__list_marker_star] = ACTIONS(3119), - [sym__list_marker_parenthesis] = ACTIONS(3119), - [sym__list_marker_dot] = ACTIONS(3119), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_example] = ACTIONS(3119), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3119), - [sym__fenced_code_block_start_backtick] = ACTIONS(3119), - [sym_minus_metadata] = ACTIONS(3119), - [sym__pipe_table_start] = ACTIONS(3119), - [sym__fenced_div_start] = ACTIONS(3119), - [sym__fenced_div_end] = ACTIONS(3119), - [sym_ref_id_specifier] = ACTIONS(3119), - [sym__code_span_start] = ACTIONS(3119), - [sym__html_comment] = ACTIONS(3119), - [sym__autolink] = ACTIONS(3119), - [sym__highlight_span_start] = ACTIONS(3119), - [sym__insert_span_start] = ACTIONS(3119), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3119), - [sym__single_quote_span_open] = ACTIONS(3119), - [sym__double_quote_span_open] = ACTIONS(3119), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3119), - [sym__cite_author_in_text] = ACTIONS(3119), - [sym__cite_suppress_author] = ACTIONS(3119), - [sym__strikeout_open] = ACTIONS(3119), - [sym__subscript_open] = ACTIONS(3119), - [sym__superscript_open] = ACTIONS(3119), - [sym__inline_note_start_token] = ACTIONS(3119), - [sym__strong_emphasis_open_star] = ACTIONS(3119), - [sym__strong_emphasis_open_underscore] = ACTIONS(3119), - [sym__emphasis_open_star] = ACTIONS(3119), - [sym__emphasis_open_underscore] = ACTIONS(3119), - [sym_inline_note_reference] = ACTIONS(3119), - [sym_html_element] = ACTIONS(3119), + [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)] = { - [sym__inlines] = STATE(3010), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(973), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3306), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2067), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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)] = { - [anon_sym_COLON] = ACTIONS(3308), - [sym_entity_reference] = ACTIONS(3308), - [sym_numeric_character_reference] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_BANG_LBRACK] = ACTIONS(3308), - [anon_sym_DOLLAR] = ACTIONS(3310), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3308), - [aux_sym_pandoc_str_token1] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3308), - [aux_sym__prose_punctuation_token1] = ACTIONS(3310), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3310), - [sym__line_ending] = ACTIONS(3308), - [sym__soft_line_ending] = ACTIONS(3308), - [sym__block_close] = ACTIONS(3308), - [sym__block_quote_start] = ACTIONS(3308), - [sym_atx_h1_marker] = ACTIONS(3308), - [sym_atx_h2_marker] = ACTIONS(3308), - [sym_atx_h3_marker] = ACTIONS(3308), - [sym_atx_h4_marker] = ACTIONS(3308), - [sym_atx_h5_marker] = ACTIONS(3308), - [sym_atx_h6_marker] = ACTIONS(3308), - [sym__thematic_break] = ACTIONS(3308), - [sym__list_marker_minus] = ACTIONS(3308), - [sym__list_marker_plus] = ACTIONS(3308), - [sym__list_marker_star] = ACTIONS(3308), - [sym__list_marker_parenthesis] = ACTIONS(3308), - [sym__list_marker_dot] = ACTIONS(3308), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_example] = ACTIONS(3308), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3308), - [sym__fenced_code_block_start_backtick] = ACTIONS(3308), - [sym_minus_metadata] = ACTIONS(3308), - [sym__pipe_table_start] = ACTIONS(3308), - [sym__fenced_div_start] = ACTIONS(3308), - [sym__fenced_div_end] = ACTIONS(3308), - [sym_ref_id_specifier] = ACTIONS(3308), - [sym__code_span_start] = ACTIONS(3308), - [sym__html_comment] = ACTIONS(3308), - [sym__autolink] = ACTIONS(3308), - [sym__highlight_span_start] = ACTIONS(3308), - [sym__insert_span_start] = ACTIONS(3308), - [sym__delete_span_start] = ACTIONS(3308), - [sym__edit_comment_span_start] = ACTIONS(3308), - [sym__single_quote_span_open] = ACTIONS(3308), - [sym__double_quote_span_open] = ACTIONS(3308), - [sym__shortcode_open_escaped] = ACTIONS(3308), - [sym__shortcode_open] = ACTIONS(3308), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3308), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3308), - [sym__cite_author_in_text] = ACTIONS(3308), - [sym__cite_suppress_author] = ACTIONS(3308), - [sym__strikeout_open] = ACTIONS(3308), - [sym__subscript_open] = ACTIONS(3308), - [sym__superscript_open] = ACTIONS(3308), - [sym__inline_note_start_token] = ACTIONS(3308), - [sym__strong_emphasis_open_star] = ACTIONS(3308), - [sym__strong_emphasis_open_underscore] = ACTIONS(3308), - [sym__emphasis_open_star] = ACTIONS(3308), - [sym__emphasis_open_underscore] = ACTIONS(3308), - [sym_inline_note_reference] = ACTIONS(3308), - [sym_html_element] = ACTIONS(3308), + [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)] = { - [anon_sym_COLON] = ACTIONS(3312), - [sym_entity_reference] = ACTIONS(3312), - [sym_numeric_character_reference] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_BANG_LBRACK] = ACTIONS(3312), - [anon_sym_DOLLAR] = ACTIONS(3314), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3312), - [aux_sym_pandoc_str_token1] = ACTIONS(3314), - [anon_sym_PIPE] = ACTIONS(3312), - [aux_sym__prose_punctuation_token1] = ACTIONS(3314), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3314), - [sym__line_ending] = ACTIONS(3312), - [sym__soft_line_ending] = ACTIONS(3312), - [sym__block_close] = ACTIONS(3312), - [sym__block_quote_start] = ACTIONS(3312), - [sym_atx_h1_marker] = ACTIONS(3312), - [sym_atx_h2_marker] = ACTIONS(3312), - [sym_atx_h3_marker] = ACTIONS(3312), - [sym_atx_h4_marker] = ACTIONS(3312), - [sym_atx_h5_marker] = ACTIONS(3312), - [sym_atx_h6_marker] = ACTIONS(3312), - [sym__thematic_break] = ACTIONS(3312), - [sym__list_marker_minus] = ACTIONS(3312), - [sym__list_marker_plus] = ACTIONS(3312), - [sym__list_marker_star] = ACTIONS(3312), - [sym__list_marker_parenthesis] = ACTIONS(3312), - [sym__list_marker_dot] = ACTIONS(3312), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_example] = ACTIONS(3312), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3312), - [sym__fenced_code_block_start_backtick] = ACTIONS(3312), - [sym_minus_metadata] = ACTIONS(3312), - [sym__pipe_table_start] = ACTIONS(3312), - [sym__fenced_div_start] = ACTIONS(3312), - [sym__fenced_div_end] = ACTIONS(3312), - [sym_ref_id_specifier] = ACTIONS(3312), - [sym__code_span_start] = ACTIONS(3312), - [sym__html_comment] = ACTIONS(3312), - [sym__autolink] = ACTIONS(3312), - [sym__highlight_span_start] = ACTIONS(3312), - [sym__insert_span_start] = ACTIONS(3312), - [sym__delete_span_start] = ACTIONS(3312), - [sym__edit_comment_span_start] = ACTIONS(3312), - [sym__single_quote_span_open] = ACTIONS(3312), - [sym__double_quote_span_open] = ACTIONS(3312), - [sym__shortcode_open_escaped] = ACTIONS(3312), - [sym__shortcode_open] = ACTIONS(3312), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3312), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3312), - [sym__cite_author_in_text] = ACTIONS(3312), - [sym__cite_suppress_author] = ACTIONS(3312), - [sym__strikeout_open] = ACTIONS(3312), - [sym__subscript_open] = ACTIONS(3312), - [sym__superscript_open] = ACTIONS(3312), - [sym__inline_note_start_token] = ACTIONS(3312), - [sym__strong_emphasis_open_star] = ACTIONS(3312), - [sym__strong_emphasis_open_underscore] = ACTIONS(3312), - [sym__emphasis_open_star] = ACTIONS(3312), - [sym__emphasis_open_underscore] = ACTIONS(3312), - [sym_inline_note_reference] = ACTIONS(3312), - [sym_html_element] = ACTIONS(3312), + [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(3316), - [sym_entity_reference] = ACTIONS(3316), - [sym_numeric_character_reference] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_BANG_LBRACK] = ACTIONS(3316), - [anon_sym_DOLLAR] = ACTIONS(3318), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3316), - [aux_sym_pandoc_str_token1] = ACTIONS(3318), - [anon_sym_PIPE] = ACTIONS(3316), - [aux_sym__prose_punctuation_token1] = ACTIONS(3318), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3318), - [sym__line_ending] = ACTIONS(3316), - [sym__soft_line_ending] = ACTIONS(3316), - [sym__block_close] = ACTIONS(3316), - [sym__block_quote_start] = ACTIONS(3316), - [sym_atx_h1_marker] = ACTIONS(3316), - [sym_atx_h2_marker] = ACTIONS(3316), - [sym_atx_h3_marker] = ACTIONS(3316), - [sym_atx_h4_marker] = ACTIONS(3316), - [sym_atx_h5_marker] = ACTIONS(3316), - [sym_atx_h6_marker] = ACTIONS(3316), - [sym__thematic_break] = ACTIONS(3316), - [sym__list_marker_minus] = ACTIONS(3316), - [sym__list_marker_plus] = ACTIONS(3316), - [sym__list_marker_star] = ACTIONS(3316), - [sym__list_marker_parenthesis] = ACTIONS(3316), - [sym__list_marker_dot] = ACTIONS(3316), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_example] = ACTIONS(3316), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3316), - [sym__fenced_code_block_start_backtick] = ACTIONS(3316), - [sym_minus_metadata] = ACTIONS(3316), - [sym__pipe_table_start] = ACTIONS(3316), - [sym__fenced_div_start] = ACTIONS(3316), - [sym__fenced_div_end] = ACTIONS(3316), - [sym_ref_id_specifier] = ACTIONS(3316), - [sym__code_span_start] = ACTIONS(3316), - [sym__html_comment] = ACTIONS(3316), - [sym__autolink] = ACTIONS(3316), - [sym__highlight_span_start] = ACTIONS(3316), - [sym__insert_span_start] = ACTIONS(3316), - [sym__delete_span_start] = ACTIONS(3316), - [sym__edit_comment_span_start] = ACTIONS(3316), - [sym__single_quote_span_open] = ACTIONS(3316), - [sym__double_quote_span_open] = ACTIONS(3316), - [sym__shortcode_open_escaped] = ACTIONS(3316), - [sym__shortcode_open] = ACTIONS(3316), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3316), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3316), - [sym__cite_author_in_text] = ACTIONS(3316), - [sym__cite_suppress_author] = ACTIONS(3316), - [sym__strikeout_open] = ACTIONS(3316), - [sym__subscript_open] = ACTIONS(3316), - [sym__superscript_open] = ACTIONS(3316), - [sym__inline_note_start_token] = ACTIONS(3316), - [sym__strong_emphasis_open_star] = ACTIONS(3316), - [sym__strong_emphasis_open_underscore] = ACTIONS(3316), - [sym__emphasis_open_star] = ACTIONS(3316), - [sym__emphasis_open_underscore] = ACTIONS(3316), - [sym_inline_note_reference] = ACTIONS(3316), - [sym_html_element] = ACTIONS(3316), + [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)] = { - [sym__inlines] = STATE(3040), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(977), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3320), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2067), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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_continuation] = ACTIONS(3183), + [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(362)] = { - [anon_sym_COLON] = ACTIONS(3125), - [sym_entity_reference] = ACTIONS(3125), - [sym_numeric_character_reference] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_BANG_LBRACK] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [aux_sym_pandoc_str_token1] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3125), - [aux_sym__prose_punctuation_token1] = ACTIONS(3127), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3127), - [sym__line_ending] = ACTIONS(3125), - [sym__soft_line_ending] = ACTIONS(3125), - [sym__block_close] = ACTIONS(3125), - [sym__block_quote_start] = ACTIONS(3125), - [sym_atx_h1_marker] = ACTIONS(3125), - [sym_atx_h2_marker] = ACTIONS(3125), - [sym_atx_h3_marker] = ACTIONS(3125), - [sym_atx_h4_marker] = ACTIONS(3125), - [sym_atx_h5_marker] = ACTIONS(3125), - [sym_atx_h6_marker] = ACTIONS(3125), - [sym__thematic_break] = ACTIONS(3125), - [sym__list_marker_minus] = ACTIONS(3125), - [sym__list_marker_plus] = ACTIONS(3125), - [sym__list_marker_star] = ACTIONS(3125), - [sym__list_marker_parenthesis] = ACTIONS(3125), - [sym__list_marker_dot] = ACTIONS(3125), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_example] = ACTIONS(3125), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3125), - [sym__fenced_code_block_start_backtick] = ACTIONS(3125), - [sym_minus_metadata] = ACTIONS(3125), - [sym__pipe_table_start] = ACTIONS(3125), - [sym__fenced_div_start] = ACTIONS(3125), - [sym__fenced_div_end] = ACTIONS(3125), - [sym_ref_id_specifier] = ACTIONS(3125), - [sym__code_span_start] = ACTIONS(3125), - [sym__html_comment] = ACTIONS(3125), - [sym__autolink] = ACTIONS(3125), - [sym__highlight_span_start] = ACTIONS(3125), - [sym__insert_span_start] = ACTIONS(3125), - [sym__delete_span_start] = ACTIONS(3125), - [sym__edit_comment_span_start] = ACTIONS(3125), - [sym__single_quote_span_open] = ACTIONS(3125), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3125), - [sym__shortcode_open] = ACTIONS(3125), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3125), - [sym__cite_suppress_author] = ACTIONS(3125), - [sym__strikeout_open] = ACTIONS(3125), - [sym__subscript_open] = ACTIONS(3125), - [sym__superscript_open] = ACTIONS(3125), - [sym__inline_note_start_token] = ACTIONS(3125), - [sym__strong_emphasis_open_star] = ACTIONS(3125), - [sym__strong_emphasis_open_underscore] = ACTIONS(3125), - [sym__emphasis_open_star] = ACTIONS(3125), - [sym__emphasis_open_underscore] = ACTIONS(3125), - [sym_inline_note_reference] = ACTIONS(3125), - [sym_html_element] = ACTIONS(3125), + [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(3101), - [anon_sym_COLON] = ACTIONS(3101), - [sym_entity_reference] = ACTIONS(3101), - [sym_numeric_character_reference] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_BANG_LBRACK] = ACTIONS(3101), - [anon_sym_DOLLAR] = ACTIONS(3103), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [aux_sym_pandoc_str_token1] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3101), - [aux_sym__prose_punctuation_token1] = ACTIONS(3103), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3103), - [sym__line_ending] = ACTIONS(3101), - [sym__soft_line_ending] = ACTIONS(3101), - [sym_block_continuation] = ACTIONS(3322), - [sym__block_quote_start] = ACTIONS(3101), - [sym_atx_h1_marker] = ACTIONS(3101), - [sym_atx_h2_marker] = ACTIONS(3101), - [sym_atx_h3_marker] = ACTIONS(3101), - [sym_atx_h4_marker] = ACTIONS(3101), - [sym_atx_h5_marker] = ACTIONS(3101), - [sym_atx_h6_marker] = ACTIONS(3101), - [sym__thematic_break] = ACTIONS(3101), - [sym__list_marker_minus] = ACTIONS(3101), - [sym__list_marker_plus] = ACTIONS(3101), - [sym__list_marker_star] = ACTIONS(3101), - [sym__list_marker_parenthesis] = ACTIONS(3101), - [sym__list_marker_dot] = ACTIONS(3101), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_example] = ACTIONS(3101), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3101), - [sym__fenced_code_block_start_backtick] = ACTIONS(3101), - [sym_minus_metadata] = ACTIONS(3101), - [sym__pipe_table_start] = ACTIONS(3101), - [sym__fenced_div_start] = ACTIONS(3101), - [sym_ref_id_specifier] = ACTIONS(3101), - [sym__code_span_start] = ACTIONS(3101), - [sym__html_comment] = ACTIONS(3101), - [sym__autolink] = ACTIONS(3101), - [sym__highlight_span_start] = ACTIONS(3101), - [sym__insert_span_start] = ACTIONS(3101), - [sym__delete_span_start] = ACTIONS(3101), - [sym__edit_comment_span_start] = ACTIONS(3101), - [sym__single_quote_span_open] = ACTIONS(3101), - [sym__double_quote_span_open] = ACTIONS(3101), - [sym__shortcode_open_escaped] = ACTIONS(3101), - [sym__shortcode_open] = ACTIONS(3101), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3101), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3101), - [sym__cite_author_in_text] = ACTIONS(3101), - [sym__cite_suppress_author] = ACTIONS(3101), - [sym__strikeout_open] = ACTIONS(3101), - [sym__subscript_open] = ACTIONS(3101), - [sym__superscript_open] = ACTIONS(3101), - [sym__inline_note_start_token] = ACTIONS(3101), - [sym__strong_emphasis_open_star] = ACTIONS(3101), - [sym__strong_emphasis_open_underscore] = ACTIONS(3101), - [sym__emphasis_open_star] = ACTIONS(3101), - [sym__emphasis_open_underscore] = ACTIONS(3101), - [sym_inline_note_reference] = ACTIONS(3101), - [sym_html_element] = ACTIONS(3101), + [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)] = { - [anon_sym_COLON] = ACTIONS(3131), - [sym_entity_reference] = ACTIONS(3131), - [sym_numeric_character_reference] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_BANG_LBRACK] = ACTIONS(3131), - [anon_sym_DOLLAR] = ACTIONS(3133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [aux_sym_pandoc_str_token1] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [aux_sym__prose_punctuation_token1] = ACTIONS(3133), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3133), - [sym__line_ending] = ACTIONS(3131), - [sym__soft_line_ending] = ACTIONS(3131), - [sym__block_close] = ACTIONS(3131), - [sym__block_quote_start] = ACTIONS(3131), - [sym_atx_h1_marker] = ACTIONS(3131), - [sym_atx_h2_marker] = ACTIONS(3131), - [sym_atx_h3_marker] = ACTIONS(3131), - [sym_atx_h4_marker] = ACTIONS(3131), - [sym_atx_h5_marker] = ACTIONS(3131), - [sym_atx_h6_marker] = ACTIONS(3131), - [sym__thematic_break] = ACTIONS(3131), - [sym__list_marker_minus] = ACTIONS(3131), - [sym__list_marker_plus] = ACTIONS(3131), - [sym__list_marker_star] = ACTIONS(3131), - [sym__list_marker_parenthesis] = ACTIONS(3131), - [sym__list_marker_dot] = ACTIONS(3131), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_example] = ACTIONS(3131), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3131), - [sym__fenced_code_block_start_backtick] = ACTIONS(3131), - [sym_minus_metadata] = ACTIONS(3131), - [sym__pipe_table_start] = ACTIONS(3131), - [sym__fenced_div_start] = ACTIONS(3131), - [sym__fenced_div_end] = ACTIONS(3131), - [sym_ref_id_specifier] = ACTIONS(3131), - [sym__code_span_start] = ACTIONS(3131), - [sym__html_comment] = ACTIONS(3131), - [sym__autolink] = ACTIONS(3131), - [sym__highlight_span_start] = ACTIONS(3131), - [sym__insert_span_start] = ACTIONS(3131), - [sym__delete_span_start] = ACTIONS(3131), - [sym__edit_comment_span_start] = ACTIONS(3131), - [sym__single_quote_span_open] = ACTIONS(3131), - [sym__double_quote_span_open] = ACTIONS(3131), - [sym__shortcode_open_escaped] = ACTIONS(3131), - [sym__shortcode_open] = ACTIONS(3131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3131), - [sym__cite_author_in_text] = ACTIONS(3131), - [sym__cite_suppress_author] = ACTIONS(3131), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3131), - [sym__superscript_open] = ACTIONS(3131), - [sym__inline_note_start_token] = ACTIONS(3131), - [sym__strong_emphasis_open_star] = ACTIONS(3131), - [sym__strong_emphasis_open_underscore] = ACTIONS(3131), - [sym__emphasis_open_star] = ACTIONS(3131), - [sym__emphasis_open_underscore] = ACTIONS(3131), - [sym_inline_note_reference] = ACTIONS(3131), - [sym_html_element] = ACTIONS(3131), + [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)] = { - [anon_sym_COLON] = ACTIONS(3324), - [sym_entity_reference] = ACTIONS(3324), - [sym_numeric_character_reference] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_BANG_LBRACK] = ACTIONS(3324), - [anon_sym_DOLLAR] = ACTIONS(3326), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [aux_sym_pandoc_str_token1] = ACTIONS(3326), - [anon_sym_PIPE] = ACTIONS(3324), - [aux_sym__prose_punctuation_token1] = ACTIONS(3326), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3326), - [sym__line_ending] = ACTIONS(3324), - [sym__soft_line_ending] = ACTIONS(3324), - [sym__block_close] = ACTIONS(3324), - [sym__block_quote_start] = ACTIONS(3324), - [sym_atx_h1_marker] = ACTIONS(3324), - [sym_atx_h2_marker] = ACTIONS(3324), - [sym_atx_h3_marker] = ACTIONS(3324), - [sym_atx_h4_marker] = ACTIONS(3324), - [sym_atx_h5_marker] = ACTIONS(3324), - [sym_atx_h6_marker] = ACTIONS(3324), - [sym__thematic_break] = ACTIONS(3324), - [sym__list_marker_minus] = ACTIONS(3324), - [sym__list_marker_plus] = ACTIONS(3324), - [sym__list_marker_star] = ACTIONS(3324), - [sym__list_marker_parenthesis] = ACTIONS(3324), - [sym__list_marker_dot] = ACTIONS(3324), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_example] = ACTIONS(3324), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3324), - [sym__fenced_code_block_start_backtick] = ACTIONS(3324), - [sym_minus_metadata] = ACTIONS(3324), - [sym__pipe_table_start] = ACTIONS(3324), - [sym__fenced_div_start] = ACTIONS(3324), - [sym__fenced_div_end] = ACTIONS(3324), - [sym_ref_id_specifier] = ACTIONS(3324), - [sym__code_span_start] = ACTIONS(3324), - [sym__html_comment] = ACTIONS(3324), - [sym__autolink] = ACTIONS(3324), - [sym__highlight_span_start] = ACTIONS(3324), - [sym__insert_span_start] = ACTIONS(3324), - [sym__delete_span_start] = ACTIONS(3324), - [sym__edit_comment_span_start] = ACTIONS(3324), - [sym__single_quote_span_open] = ACTIONS(3324), - [sym__double_quote_span_open] = ACTIONS(3324), - [sym__shortcode_open_escaped] = ACTIONS(3324), - [sym__shortcode_open] = ACTIONS(3324), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3324), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3324), - [sym__cite_author_in_text] = ACTIONS(3324), - [sym__cite_suppress_author] = ACTIONS(3324), - [sym__strikeout_open] = ACTIONS(3324), - [sym__subscript_open] = ACTIONS(3324), - [sym__superscript_open] = ACTIONS(3324), - [sym__inline_note_start_token] = ACTIONS(3324), - [sym__strong_emphasis_open_star] = ACTIONS(3324), - [sym__strong_emphasis_open_underscore] = ACTIONS(3324), - [sym__emphasis_open_star] = ACTIONS(3324), - [sym__emphasis_open_underscore] = ACTIONS(3324), - [sym_inline_note_reference] = ACTIONS(3324), - [sym_html_element] = ACTIONS(3324), + [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)] = { - [anon_sym_COLON] = ACTIONS(3137), - [sym_entity_reference] = ACTIONS(3137), - [sym_numeric_character_reference] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_BANG_LBRACK] = ACTIONS(3137), - [anon_sym_DOLLAR] = ACTIONS(3139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [aux_sym_pandoc_str_token1] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3137), - [aux_sym__prose_punctuation_token1] = ACTIONS(3139), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3139), - [sym__line_ending] = ACTIONS(3137), - [sym__soft_line_ending] = ACTIONS(3137), - [sym__block_close] = ACTIONS(3137), - [sym__block_quote_start] = ACTIONS(3137), - [sym_atx_h1_marker] = ACTIONS(3137), - [sym_atx_h2_marker] = ACTIONS(3137), - [sym_atx_h3_marker] = ACTIONS(3137), - [sym_atx_h4_marker] = ACTIONS(3137), - [sym_atx_h5_marker] = ACTIONS(3137), - [sym_atx_h6_marker] = ACTIONS(3137), - [sym__thematic_break] = ACTIONS(3137), - [sym__list_marker_minus] = ACTIONS(3137), - [sym__list_marker_plus] = ACTIONS(3137), - [sym__list_marker_star] = ACTIONS(3137), - [sym__list_marker_parenthesis] = ACTIONS(3137), - [sym__list_marker_dot] = ACTIONS(3137), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_example] = ACTIONS(3137), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3137), - [sym__fenced_code_block_start_backtick] = ACTIONS(3137), - [sym_minus_metadata] = ACTIONS(3137), - [sym__pipe_table_start] = ACTIONS(3137), - [sym__fenced_div_start] = ACTIONS(3137), - [sym__fenced_div_end] = ACTIONS(3137), - [sym_ref_id_specifier] = ACTIONS(3137), - [sym__code_span_start] = ACTIONS(3137), - [sym__html_comment] = ACTIONS(3137), - [sym__autolink] = ACTIONS(3137), - [sym__highlight_span_start] = ACTIONS(3137), - [sym__insert_span_start] = ACTIONS(3137), - [sym__delete_span_start] = ACTIONS(3137), - [sym__edit_comment_span_start] = ACTIONS(3137), - [sym__single_quote_span_open] = ACTIONS(3137), - [sym__double_quote_span_open] = ACTIONS(3137), - [sym__shortcode_open_escaped] = ACTIONS(3137), - [sym__shortcode_open] = ACTIONS(3137), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3137), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3137), - [sym__cite_author_in_text] = ACTIONS(3137), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3137), - [sym__subscript_open] = ACTIONS(3137), - [sym__superscript_open] = ACTIONS(3137), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3137), - [sym__strong_emphasis_open_underscore] = ACTIONS(3137), - [sym__emphasis_open_star] = ACTIONS(3137), - [sym__emphasis_open_underscore] = ACTIONS(3137), - [sym_inline_note_reference] = ACTIONS(3137), - [sym_html_element] = ACTIONS(3137), + [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(367)] = { - [anon_sym_COLON] = ACTIONS(3328), - [sym_entity_reference] = ACTIONS(3328), - [sym_numeric_character_reference] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_BANG_LBRACK] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(3330), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [aux_sym_pandoc_str_token1] = ACTIONS(3330), - [anon_sym_PIPE] = ACTIONS(3328), - [aux_sym__prose_punctuation_token1] = ACTIONS(3330), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3330), - [sym__line_ending] = ACTIONS(3328), - [sym__soft_line_ending] = ACTIONS(3328), - [sym__block_close] = ACTIONS(3328), - [sym__block_quote_start] = ACTIONS(3328), - [sym_atx_h1_marker] = ACTIONS(3328), - [sym_atx_h2_marker] = ACTIONS(3328), - [sym_atx_h3_marker] = ACTIONS(3328), - [sym_atx_h4_marker] = ACTIONS(3328), - [sym_atx_h5_marker] = ACTIONS(3328), - [sym_atx_h6_marker] = ACTIONS(3328), - [sym__thematic_break] = ACTIONS(3328), - [sym__list_marker_minus] = ACTIONS(3328), - [sym__list_marker_plus] = ACTIONS(3328), - [sym__list_marker_star] = ACTIONS(3328), - [sym__list_marker_parenthesis] = ACTIONS(3328), - [sym__list_marker_dot] = ACTIONS(3328), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_example] = ACTIONS(3328), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3328), - [sym__fenced_code_block_start_backtick] = ACTIONS(3328), - [sym_minus_metadata] = ACTIONS(3328), - [sym__pipe_table_start] = ACTIONS(3328), - [sym__fenced_div_start] = ACTIONS(3328), - [sym__fenced_div_end] = ACTIONS(3328), - [sym_ref_id_specifier] = ACTIONS(3328), - [sym__code_span_start] = ACTIONS(3328), - [sym__html_comment] = ACTIONS(3328), - [sym__autolink] = ACTIONS(3328), - [sym__highlight_span_start] = ACTIONS(3328), - [sym__insert_span_start] = ACTIONS(3328), - [sym__delete_span_start] = ACTIONS(3328), - [sym__edit_comment_span_start] = ACTIONS(3328), - [sym__single_quote_span_open] = ACTIONS(3328), - [sym__double_quote_span_open] = ACTIONS(3328), - [sym__shortcode_open_escaped] = ACTIONS(3328), - [sym__shortcode_open] = ACTIONS(3328), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3328), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3328), - [sym__cite_author_in_text] = ACTIONS(3328), - [sym__cite_suppress_author] = ACTIONS(3328), - [sym__strikeout_open] = ACTIONS(3328), - [sym__subscript_open] = ACTIONS(3328), - [sym__superscript_open] = ACTIONS(3328), - [sym__inline_note_start_token] = ACTIONS(3328), - [sym__strong_emphasis_open_star] = ACTIONS(3328), - [sym__strong_emphasis_open_underscore] = ACTIONS(3328), - [sym__emphasis_open_star] = ACTIONS(3328), - [sym__emphasis_open_underscore] = ACTIONS(3328), - [sym_inline_note_reference] = ACTIONS(3328), - [sym_html_element] = ACTIONS(3328), + [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(3143), - [sym_entity_reference] = ACTIONS(3143), - [sym_numeric_character_reference] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_BANG_LBRACK] = ACTIONS(3143), - [anon_sym_DOLLAR] = ACTIONS(3145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3143), - [aux_sym_pandoc_str_token1] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3143), - [aux_sym__prose_punctuation_token1] = ACTIONS(3145), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3145), - [sym__line_ending] = ACTIONS(3143), - [sym__soft_line_ending] = ACTIONS(3143), - [sym__block_close] = ACTIONS(3143), - [sym__block_quote_start] = ACTIONS(3143), - [sym_atx_h1_marker] = ACTIONS(3143), - [sym_atx_h2_marker] = ACTIONS(3143), - [sym_atx_h3_marker] = ACTIONS(3143), - [sym_atx_h4_marker] = ACTIONS(3143), - [sym_atx_h5_marker] = ACTIONS(3143), - [sym_atx_h6_marker] = ACTIONS(3143), - [sym__thematic_break] = ACTIONS(3143), - [sym__list_marker_minus] = ACTIONS(3143), - [sym__list_marker_plus] = ACTIONS(3143), - [sym__list_marker_star] = ACTIONS(3143), - [sym__list_marker_parenthesis] = ACTIONS(3143), - [sym__list_marker_dot] = ACTIONS(3143), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_example] = ACTIONS(3143), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3143), - [sym__fenced_code_block_start_backtick] = ACTIONS(3143), - [sym_minus_metadata] = ACTIONS(3143), - [sym__pipe_table_start] = ACTIONS(3143), - [sym__fenced_div_start] = ACTIONS(3143), - [sym__fenced_div_end] = ACTIONS(3143), - [sym_ref_id_specifier] = ACTIONS(3143), - [sym__code_span_start] = ACTIONS(3143), - [sym__html_comment] = ACTIONS(3143), - [sym__autolink] = ACTIONS(3143), - [sym__highlight_span_start] = ACTIONS(3143), - [sym__insert_span_start] = ACTIONS(3143), - [sym__delete_span_start] = ACTIONS(3143), - [sym__edit_comment_span_start] = ACTIONS(3143), - [sym__single_quote_span_open] = ACTIONS(3143), - [sym__double_quote_span_open] = ACTIONS(3143), - [sym__shortcode_open_escaped] = ACTIONS(3143), - [sym__shortcode_open] = ACTIONS(3143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3143), - [sym__cite_author_in_text] = ACTIONS(3143), - [sym__cite_suppress_author] = ACTIONS(3143), - [sym__strikeout_open] = ACTIONS(3143), - [sym__subscript_open] = ACTIONS(3143), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3143), - [sym__strong_emphasis_open_star] = ACTIONS(3143), - [sym__strong_emphasis_open_underscore] = ACTIONS(3143), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3143), - [sym_inline_note_reference] = ACTIONS(3143), - [sym_html_element] = ACTIONS(3143), + [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(3332), - [sym_entity_reference] = ACTIONS(3332), - [sym_numeric_character_reference] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_BANG_LBRACK] = ACTIONS(3332), - [anon_sym_DOLLAR] = ACTIONS(3334), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [aux_sym_pandoc_str_token1] = ACTIONS(3334), - [anon_sym_PIPE] = ACTIONS(3332), - [aux_sym__prose_punctuation_token1] = ACTIONS(3334), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3334), - [sym__line_ending] = ACTIONS(3332), - [sym__soft_line_ending] = ACTIONS(3332), - [sym__block_close] = ACTIONS(3332), - [sym__block_quote_start] = ACTIONS(3332), - [sym_atx_h1_marker] = ACTIONS(3332), - [sym_atx_h2_marker] = ACTIONS(3332), - [sym_atx_h3_marker] = ACTIONS(3332), - [sym_atx_h4_marker] = ACTIONS(3332), - [sym_atx_h5_marker] = ACTIONS(3332), - [sym_atx_h6_marker] = ACTIONS(3332), - [sym__thematic_break] = ACTIONS(3332), - [sym__list_marker_minus] = ACTIONS(3332), - [sym__list_marker_plus] = ACTIONS(3332), - [sym__list_marker_star] = ACTIONS(3332), - [sym__list_marker_parenthesis] = ACTIONS(3332), - [sym__list_marker_dot] = ACTIONS(3332), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_example] = ACTIONS(3332), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3332), - [sym__fenced_code_block_start_backtick] = ACTIONS(3332), - [sym_minus_metadata] = ACTIONS(3332), - [sym__pipe_table_start] = ACTIONS(3332), - [sym__fenced_div_start] = ACTIONS(3332), - [sym__fenced_div_end] = ACTIONS(3332), - [sym_ref_id_specifier] = ACTIONS(3332), - [sym__code_span_start] = ACTIONS(3332), - [sym__html_comment] = ACTIONS(3332), - [sym__autolink] = ACTIONS(3332), - [sym__highlight_span_start] = ACTIONS(3332), - [sym__insert_span_start] = ACTIONS(3332), - [sym__delete_span_start] = ACTIONS(3332), - [sym__edit_comment_span_start] = ACTIONS(3332), - [sym__single_quote_span_open] = ACTIONS(3332), - [sym__double_quote_span_open] = ACTIONS(3332), - [sym__shortcode_open_escaped] = ACTIONS(3332), - [sym__shortcode_open] = ACTIONS(3332), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3332), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3332), - [sym__cite_author_in_text] = ACTIONS(3332), - [sym__cite_suppress_author] = ACTIONS(3332), - [sym__strikeout_open] = ACTIONS(3332), - [sym__subscript_open] = ACTIONS(3332), - [sym__superscript_open] = ACTIONS(3332), - [sym__inline_note_start_token] = ACTIONS(3332), - [sym__strong_emphasis_open_star] = ACTIONS(3332), - [sym__strong_emphasis_open_underscore] = ACTIONS(3332), - [sym__emphasis_open_star] = ACTIONS(3332), - [sym__emphasis_open_underscore] = ACTIONS(3332), - [sym_inline_note_reference] = ACTIONS(3332), - [sym_html_element] = ACTIONS(3332), + [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(3208), - [sym_entity_reference] = ACTIONS(3208), - [sym_numeric_character_reference] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_BANG_LBRACK] = ACTIONS(3208), - [anon_sym_DOLLAR] = ACTIONS(3210), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3208), - [aux_sym_pandoc_str_token1] = ACTIONS(3210), - [anon_sym_PIPE] = ACTIONS(3208), - [aux_sym__prose_punctuation_token1] = ACTIONS(3210), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3210), - [sym__line_ending] = ACTIONS(3208), - [sym__soft_line_ending] = ACTIONS(3208), - [sym__block_close] = ACTIONS(3208), - [sym__block_quote_start] = ACTIONS(3208), - [sym_atx_h1_marker] = ACTIONS(3208), - [sym_atx_h2_marker] = ACTIONS(3208), - [sym_atx_h3_marker] = ACTIONS(3208), - [sym_atx_h4_marker] = ACTIONS(3208), - [sym_atx_h5_marker] = ACTIONS(3208), - [sym_atx_h6_marker] = ACTIONS(3208), - [sym__thematic_break] = ACTIONS(3208), - [sym__list_marker_minus] = ACTIONS(3208), - [sym__list_marker_plus] = ACTIONS(3208), - [sym__list_marker_star] = ACTIONS(3208), - [sym__list_marker_parenthesis] = ACTIONS(3208), - [sym__list_marker_dot] = ACTIONS(3208), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_example] = ACTIONS(3208), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3208), - [sym__fenced_code_block_start_backtick] = ACTIONS(3208), - [sym_minus_metadata] = ACTIONS(3208), - [sym__pipe_table_start] = ACTIONS(3208), - [sym__fenced_div_start] = ACTIONS(3208), - [sym__fenced_div_end] = ACTIONS(3208), - [sym_ref_id_specifier] = ACTIONS(3208), - [sym__code_span_start] = ACTIONS(3208), - [sym__html_comment] = ACTIONS(3208), - [sym__autolink] = ACTIONS(3208), - [sym__highlight_span_start] = ACTIONS(3208), - [sym__insert_span_start] = ACTIONS(3208), - [sym__delete_span_start] = ACTIONS(3208), - [sym__edit_comment_span_start] = ACTIONS(3208), - [sym__single_quote_span_open] = ACTIONS(3208), - [sym__double_quote_span_open] = ACTIONS(3208), - [sym__shortcode_open_escaped] = ACTIONS(3208), - [sym__shortcode_open] = ACTIONS(3208), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3208), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3208), - [sym__cite_author_in_text] = ACTIONS(3208), - [sym__cite_suppress_author] = ACTIONS(3208), - [sym__strikeout_open] = ACTIONS(3208), - [sym__subscript_open] = ACTIONS(3208), - [sym__superscript_open] = ACTIONS(3208), - [sym__inline_note_start_token] = ACTIONS(3208), - [sym__strong_emphasis_open_star] = ACTIONS(3208), - [sym__strong_emphasis_open_underscore] = ACTIONS(3208), - [sym__emphasis_open_star] = ACTIONS(3208), - [sym__emphasis_open_underscore] = ACTIONS(3208), - [sym_inline_note_reference] = ACTIONS(3208), - [sym_html_element] = ACTIONS(3208), + [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(3336), - [sym_entity_reference] = ACTIONS(3336), - [sym_numeric_character_reference] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_BANG_LBRACK] = ACTIONS(3336), - [anon_sym_DOLLAR] = ACTIONS(3338), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [aux_sym_pandoc_str_token1] = ACTIONS(3338), - [anon_sym_PIPE] = ACTIONS(3336), - [aux_sym__prose_punctuation_token1] = ACTIONS(3338), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3338), - [sym__line_ending] = ACTIONS(3336), - [sym__soft_line_ending] = ACTIONS(3336), - [sym__block_close] = ACTIONS(3336), - [sym__block_quote_start] = ACTIONS(3336), - [sym_atx_h1_marker] = ACTIONS(3336), - [sym_atx_h2_marker] = ACTIONS(3336), - [sym_atx_h3_marker] = ACTIONS(3336), - [sym_atx_h4_marker] = ACTIONS(3336), - [sym_atx_h5_marker] = ACTIONS(3336), - [sym_atx_h6_marker] = ACTIONS(3336), - [sym__thematic_break] = ACTIONS(3336), - [sym__list_marker_minus] = ACTIONS(3336), - [sym__list_marker_plus] = ACTIONS(3336), - [sym__list_marker_star] = ACTIONS(3336), - [sym__list_marker_parenthesis] = ACTIONS(3336), - [sym__list_marker_dot] = ACTIONS(3336), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_example] = ACTIONS(3336), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3336), - [sym__fenced_code_block_start_backtick] = ACTIONS(3336), - [sym_minus_metadata] = ACTIONS(3336), - [sym__pipe_table_start] = ACTIONS(3336), - [sym__fenced_div_start] = ACTIONS(3336), - [sym__fenced_div_end] = ACTIONS(3336), - [sym_ref_id_specifier] = ACTIONS(3336), - [sym__code_span_start] = ACTIONS(3336), - [sym__html_comment] = ACTIONS(3336), - [sym__autolink] = ACTIONS(3336), - [sym__highlight_span_start] = ACTIONS(3336), - [sym__insert_span_start] = ACTIONS(3336), - [sym__delete_span_start] = ACTIONS(3336), - [sym__edit_comment_span_start] = ACTIONS(3336), - [sym__single_quote_span_open] = ACTIONS(3336), - [sym__double_quote_span_open] = ACTIONS(3336), - [sym__shortcode_open_escaped] = ACTIONS(3336), - [sym__shortcode_open] = ACTIONS(3336), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3336), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3336), - [sym__cite_author_in_text] = ACTIONS(3336), - [sym__cite_suppress_author] = ACTIONS(3336), - [sym__strikeout_open] = ACTIONS(3336), - [sym__subscript_open] = ACTIONS(3336), - [sym__superscript_open] = ACTIONS(3336), - [sym__inline_note_start_token] = ACTIONS(3336), - [sym__strong_emphasis_open_star] = ACTIONS(3336), - [sym__strong_emphasis_open_underscore] = ACTIONS(3336), - [sym__emphasis_open_star] = ACTIONS(3336), - [sym__emphasis_open_underscore] = ACTIONS(3336), - [sym_inline_note_reference] = ACTIONS(3336), - [sym_html_element] = ACTIONS(3336), + [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(3151), - [sym_entity_reference] = ACTIONS(3151), - [sym_numeric_character_reference] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_BANG_LBRACK] = ACTIONS(3151), - [anon_sym_DOLLAR] = ACTIONS(3153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [aux_sym_pandoc_str_token1] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3151), - [aux_sym__prose_punctuation_token1] = ACTIONS(3153), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3153), - [sym__line_ending] = ACTIONS(3151), - [sym__soft_line_ending] = ACTIONS(3151), - [sym__block_close] = ACTIONS(3151), - [sym__block_quote_start] = ACTIONS(3151), - [sym_atx_h1_marker] = ACTIONS(3151), - [sym_atx_h2_marker] = ACTIONS(3151), - [sym_atx_h3_marker] = ACTIONS(3151), - [sym_atx_h4_marker] = ACTIONS(3151), - [sym_atx_h5_marker] = ACTIONS(3151), - [sym_atx_h6_marker] = ACTIONS(3151), - [sym__thematic_break] = ACTIONS(3151), - [sym__list_marker_minus] = ACTIONS(3151), - [sym__list_marker_plus] = ACTIONS(3151), - [sym__list_marker_star] = ACTIONS(3151), - [sym__list_marker_parenthesis] = ACTIONS(3151), - [sym__list_marker_dot] = ACTIONS(3151), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_example] = ACTIONS(3151), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3151), - [sym__fenced_code_block_start_backtick] = ACTIONS(3151), - [sym_minus_metadata] = ACTIONS(3151), - [sym__pipe_table_start] = ACTIONS(3151), - [sym__fenced_div_start] = ACTIONS(3151), - [sym__fenced_div_end] = ACTIONS(3151), - [sym_ref_id_specifier] = ACTIONS(3151), - [sym__code_span_start] = ACTIONS(3151), - [sym__html_comment] = ACTIONS(3151), - [sym__autolink] = ACTIONS(3151), - [sym__highlight_span_start] = ACTIONS(3151), - [sym__insert_span_start] = ACTIONS(3151), - [sym__delete_span_start] = ACTIONS(3151), - [sym__edit_comment_span_start] = ACTIONS(3151), - [sym__single_quote_span_open] = ACTIONS(3151), - [sym__double_quote_span_open] = ACTIONS(3151), - [sym__shortcode_open_escaped] = ACTIONS(3151), - [sym__shortcode_open] = ACTIONS(3151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3151), - [sym__cite_author_in_text] = ACTIONS(3151), - [sym__cite_suppress_author] = ACTIONS(3151), - [sym__strikeout_open] = ACTIONS(3151), - [sym__subscript_open] = ACTIONS(3151), - [sym__superscript_open] = ACTIONS(3151), - [sym__inline_note_start_token] = ACTIONS(3151), - [sym__strong_emphasis_open_star] = ACTIONS(3151), - [sym__strong_emphasis_open_underscore] = ACTIONS(3151), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3151), - [sym_inline_note_reference] = ACTIONS(3151), - [sym_html_element] = ACTIONS(3151), + [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(3340), - [sym_entity_reference] = ACTIONS(3340), - [sym_numeric_character_reference] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_BANG_LBRACK] = ACTIONS(3340), - [anon_sym_DOLLAR] = ACTIONS(3342), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [aux_sym_pandoc_str_token1] = ACTIONS(3342), - [anon_sym_PIPE] = ACTIONS(3340), - [aux_sym__prose_punctuation_token1] = ACTIONS(3342), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3342), - [sym__line_ending] = ACTIONS(3340), - [sym__soft_line_ending] = ACTIONS(3340), - [sym__block_close] = ACTIONS(3340), - [sym__block_quote_start] = ACTIONS(3340), - [sym_atx_h1_marker] = ACTIONS(3340), - [sym_atx_h2_marker] = ACTIONS(3340), - [sym_atx_h3_marker] = ACTIONS(3340), - [sym_atx_h4_marker] = ACTIONS(3340), - [sym_atx_h5_marker] = ACTIONS(3340), - [sym_atx_h6_marker] = ACTIONS(3340), - [sym__thematic_break] = ACTIONS(3340), - [sym__list_marker_minus] = ACTIONS(3340), - [sym__list_marker_plus] = ACTIONS(3340), - [sym__list_marker_star] = ACTIONS(3340), - [sym__list_marker_parenthesis] = ACTIONS(3340), - [sym__list_marker_dot] = ACTIONS(3340), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_example] = ACTIONS(3340), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3340), - [sym__fenced_code_block_start_backtick] = ACTIONS(3340), - [sym_minus_metadata] = ACTIONS(3340), - [sym__pipe_table_start] = ACTIONS(3340), - [sym__fenced_div_start] = ACTIONS(3340), - [sym__fenced_div_end] = ACTIONS(3340), - [sym_ref_id_specifier] = ACTIONS(3340), - [sym__code_span_start] = ACTIONS(3340), - [sym__html_comment] = ACTIONS(3340), - [sym__autolink] = ACTIONS(3340), - [sym__highlight_span_start] = ACTIONS(3340), - [sym__insert_span_start] = ACTIONS(3340), - [sym__delete_span_start] = ACTIONS(3340), - [sym__edit_comment_span_start] = ACTIONS(3340), - [sym__single_quote_span_open] = ACTIONS(3340), - [sym__double_quote_span_open] = ACTIONS(3340), - [sym__shortcode_open_escaped] = ACTIONS(3340), - [sym__shortcode_open] = ACTIONS(3340), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3340), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3340), - [sym__cite_author_in_text] = ACTIONS(3340), - [sym__cite_suppress_author] = ACTIONS(3340), - [sym__strikeout_open] = ACTIONS(3340), - [sym__subscript_open] = ACTIONS(3340), - [sym__superscript_open] = ACTIONS(3340), - [sym__inline_note_start_token] = ACTIONS(3340), - [sym__strong_emphasis_open_star] = ACTIONS(3340), - [sym__strong_emphasis_open_underscore] = ACTIONS(3340), - [sym__emphasis_open_star] = ACTIONS(3340), - [sym__emphasis_open_underscore] = ACTIONS(3340), - [sym_inline_note_reference] = ACTIONS(3340), - [sym_html_element] = ACTIONS(3340), + [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(3344), - [sym_entity_reference] = ACTIONS(3344), - [sym_numeric_character_reference] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_BANG_LBRACK] = ACTIONS(3344), - [anon_sym_DOLLAR] = ACTIONS(3346), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [aux_sym_pandoc_str_token1] = ACTIONS(3346), - [anon_sym_PIPE] = ACTIONS(3344), - [aux_sym__prose_punctuation_token1] = ACTIONS(3346), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3346), - [sym__line_ending] = ACTIONS(3344), - [sym__soft_line_ending] = ACTIONS(3344), - [sym__block_close] = ACTIONS(3344), - [sym__block_quote_start] = ACTIONS(3344), - [sym_atx_h1_marker] = ACTIONS(3344), - [sym_atx_h2_marker] = ACTIONS(3344), - [sym_atx_h3_marker] = ACTIONS(3344), - [sym_atx_h4_marker] = ACTIONS(3344), - [sym_atx_h5_marker] = ACTIONS(3344), - [sym_atx_h6_marker] = ACTIONS(3344), - [sym__thematic_break] = ACTIONS(3344), - [sym__list_marker_minus] = ACTIONS(3344), - [sym__list_marker_plus] = ACTIONS(3344), - [sym__list_marker_star] = ACTIONS(3344), - [sym__list_marker_parenthesis] = ACTIONS(3344), - [sym__list_marker_dot] = ACTIONS(3344), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_example] = ACTIONS(3344), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3344), - [sym__fenced_code_block_start_backtick] = ACTIONS(3344), - [sym_minus_metadata] = ACTIONS(3344), - [sym__pipe_table_start] = ACTIONS(3344), - [sym__fenced_div_start] = ACTIONS(3344), - [sym__fenced_div_end] = ACTIONS(3344), - [sym_ref_id_specifier] = ACTIONS(3344), - [sym__code_span_start] = ACTIONS(3344), - [sym__html_comment] = ACTIONS(3344), - [sym__autolink] = ACTIONS(3344), - [sym__highlight_span_start] = ACTIONS(3344), - [sym__insert_span_start] = ACTIONS(3344), - [sym__delete_span_start] = ACTIONS(3344), - [sym__edit_comment_span_start] = ACTIONS(3344), - [sym__single_quote_span_open] = ACTIONS(3344), - [sym__double_quote_span_open] = ACTIONS(3344), - [sym__shortcode_open_escaped] = ACTIONS(3344), - [sym__shortcode_open] = ACTIONS(3344), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3344), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3344), - [sym__cite_author_in_text] = ACTIONS(3344), - [sym__cite_suppress_author] = ACTIONS(3344), - [sym__strikeout_open] = ACTIONS(3344), - [sym__subscript_open] = ACTIONS(3344), - [sym__superscript_open] = ACTIONS(3344), - [sym__inline_note_start_token] = ACTIONS(3344), - [sym__strong_emphasis_open_star] = ACTIONS(3344), - [sym__strong_emphasis_open_underscore] = ACTIONS(3344), - [sym__emphasis_open_star] = ACTIONS(3344), - [sym__emphasis_open_underscore] = ACTIONS(3344), - [sym_inline_note_reference] = ACTIONS(3344), - [sym_html_element] = ACTIONS(3344), + [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(3348), - [sym_entity_reference] = ACTIONS(3348), - [sym_numeric_character_reference] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_BANG_LBRACK] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3350), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3348), - [aux_sym_pandoc_str_token1] = ACTIONS(3350), - [anon_sym_PIPE] = ACTIONS(3348), - [aux_sym__prose_punctuation_token1] = ACTIONS(3350), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3350), - [sym__line_ending] = ACTIONS(3348), - [sym__soft_line_ending] = ACTIONS(3348), - [sym__block_close] = ACTIONS(3348), - [sym__block_quote_start] = ACTIONS(3348), - [sym_atx_h1_marker] = ACTIONS(3348), - [sym_atx_h2_marker] = ACTIONS(3348), - [sym_atx_h3_marker] = ACTIONS(3348), - [sym_atx_h4_marker] = ACTIONS(3348), - [sym_atx_h5_marker] = ACTIONS(3348), - [sym_atx_h6_marker] = ACTIONS(3348), - [sym__thematic_break] = ACTIONS(3348), - [sym__list_marker_minus] = ACTIONS(3348), - [sym__list_marker_plus] = ACTIONS(3348), - [sym__list_marker_star] = ACTIONS(3348), - [sym__list_marker_parenthesis] = ACTIONS(3348), - [sym__list_marker_dot] = ACTIONS(3348), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_example] = ACTIONS(3348), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3348), - [sym__fenced_code_block_start_backtick] = ACTIONS(3348), - [sym_minus_metadata] = ACTIONS(3348), - [sym__pipe_table_start] = ACTIONS(3348), - [sym__fenced_div_start] = ACTIONS(3348), - [sym__fenced_div_end] = ACTIONS(3348), - [sym_ref_id_specifier] = ACTIONS(3348), - [sym__code_span_start] = ACTIONS(3348), - [sym__html_comment] = ACTIONS(3348), - [sym__autolink] = ACTIONS(3348), - [sym__highlight_span_start] = ACTIONS(3348), - [sym__insert_span_start] = ACTIONS(3348), - [sym__delete_span_start] = ACTIONS(3348), - [sym__edit_comment_span_start] = ACTIONS(3348), - [sym__single_quote_span_open] = ACTIONS(3348), - [sym__double_quote_span_open] = ACTIONS(3348), - [sym__shortcode_open_escaped] = ACTIONS(3348), - [sym__shortcode_open] = ACTIONS(3348), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3348), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3348), - [sym__cite_author_in_text] = ACTIONS(3348), - [sym__cite_suppress_author] = ACTIONS(3348), - [sym__strikeout_open] = ACTIONS(3348), - [sym__subscript_open] = ACTIONS(3348), - [sym__superscript_open] = ACTIONS(3348), - [sym__inline_note_start_token] = ACTIONS(3348), - [sym__strong_emphasis_open_star] = ACTIONS(3348), - [sym__strong_emphasis_open_underscore] = ACTIONS(3348), - [sym__emphasis_open_star] = ACTIONS(3348), - [sym__emphasis_open_underscore] = ACTIONS(3348), - [sym_inline_note_reference] = ACTIONS(3348), - [sym_html_element] = ACTIONS(3348), + [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)] = { - [anon_sym_COLON] = ACTIONS(3352), - [sym_entity_reference] = ACTIONS(3352), - [sym_numeric_character_reference] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_BANG_LBRACK] = ACTIONS(3352), - [anon_sym_DOLLAR] = ACTIONS(3354), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3352), - [aux_sym_pandoc_str_token1] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3352), - [aux_sym__prose_punctuation_token1] = ACTIONS(3354), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3354), - [sym__line_ending] = ACTIONS(3352), - [sym__soft_line_ending] = ACTIONS(3352), - [sym__block_close] = ACTIONS(3352), - [sym__block_quote_start] = ACTIONS(3352), - [sym_atx_h1_marker] = ACTIONS(3352), - [sym_atx_h2_marker] = ACTIONS(3352), - [sym_atx_h3_marker] = ACTIONS(3352), - [sym_atx_h4_marker] = ACTIONS(3352), - [sym_atx_h5_marker] = ACTIONS(3352), - [sym_atx_h6_marker] = ACTIONS(3352), - [sym__thematic_break] = ACTIONS(3352), - [sym__list_marker_minus] = ACTIONS(3352), - [sym__list_marker_plus] = ACTIONS(3352), - [sym__list_marker_star] = ACTIONS(3352), - [sym__list_marker_parenthesis] = ACTIONS(3352), - [sym__list_marker_dot] = ACTIONS(3352), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_example] = ACTIONS(3352), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3352), - [sym__fenced_code_block_start_backtick] = ACTIONS(3352), - [sym_minus_metadata] = ACTIONS(3352), - [sym__pipe_table_start] = ACTIONS(3352), - [sym__fenced_div_start] = ACTIONS(3352), - [sym__fenced_div_end] = ACTIONS(3352), - [sym_ref_id_specifier] = ACTIONS(3352), - [sym__code_span_start] = ACTIONS(3352), - [sym__html_comment] = ACTIONS(3352), - [sym__autolink] = ACTIONS(3352), - [sym__highlight_span_start] = ACTIONS(3352), - [sym__insert_span_start] = ACTIONS(3352), - [sym__delete_span_start] = ACTIONS(3352), - [sym__edit_comment_span_start] = ACTIONS(3352), - [sym__single_quote_span_open] = ACTIONS(3352), - [sym__double_quote_span_open] = ACTIONS(3352), - [sym__shortcode_open_escaped] = ACTIONS(3352), - [sym__shortcode_open] = ACTIONS(3352), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3352), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3352), - [sym__cite_author_in_text] = ACTIONS(3352), - [sym__cite_suppress_author] = ACTIONS(3352), - [sym__strikeout_open] = ACTIONS(3352), - [sym__subscript_open] = ACTIONS(3352), - [sym__superscript_open] = ACTIONS(3352), - [sym__inline_note_start_token] = ACTIONS(3352), - [sym__strong_emphasis_open_star] = ACTIONS(3352), - [sym__strong_emphasis_open_underscore] = ACTIONS(3352), - [sym__emphasis_open_star] = ACTIONS(3352), - [sym__emphasis_open_underscore] = ACTIONS(3352), - [sym_inline_note_reference] = ACTIONS(3352), - [sym_html_element] = ACTIONS(3352), + [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(3356), - [sym_entity_reference] = ACTIONS(3356), - [sym_numeric_character_reference] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_BANG_LBRACK] = ACTIONS(3356), - [anon_sym_DOLLAR] = ACTIONS(3358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [aux_sym_pandoc_str_token1] = ACTIONS(3358), - [anon_sym_PIPE] = ACTIONS(3356), - [aux_sym__prose_punctuation_token1] = ACTIONS(3358), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3358), - [sym__line_ending] = ACTIONS(3356), - [sym__soft_line_ending] = ACTIONS(3356), - [sym__block_close] = ACTIONS(3356), - [sym__block_quote_start] = ACTIONS(3356), - [sym_atx_h1_marker] = ACTIONS(3356), - [sym_atx_h2_marker] = ACTIONS(3356), - [sym_atx_h3_marker] = ACTIONS(3356), - [sym_atx_h4_marker] = ACTIONS(3356), - [sym_atx_h5_marker] = ACTIONS(3356), - [sym_atx_h6_marker] = ACTIONS(3356), - [sym__thematic_break] = ACTIONS(3356), - [sym__list_marker_minus] = ACTIONS(3356), - [sym__list_marker_plus] = ACTIONS(3356), - [sym__list_marker_star] = ACTIONS(3356), - [sym__list_marker_parenthesis] = ACTIONS(3356), - [sym__list_marker_dot] = ACTIONS(3356), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_example] = ACTIONS(3356), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3356), - [sym__fenced_code_block_start_backtick] = ACTIONS(3356), - [sym_minus_metadata] = ACTIONS(3356), - [sym__pipe_table_start] = ACTIONS(3356), - [sym__fenced_div_start] = ACTIONS(3356), - [sym__fenced_div_end] = ACTIONS(3356), - [sym_ref_id_specifier] = ACTIONS(3356), - [sym__code_span_start] = ACTIONS(3356), - [sym__html_comment] = ACTIONS(3356), - [sym__autolink] = ACTIONS(3356), - [sym__highlight_span_start] = ACTIONS(3356), - [sym__insert_span_start] = ACTIONS(3356), - [sym__delete_span_start] = ACTIONS(3356), - [sym__edit_comment_span_start] = ACTIONS(3356), - [sym__single_quote_span_open] = ACTIONS(3356), - [sym__double_quote_span_open] = ACTIONS(3356), - [sym__shortcode_open_escaped] = ACTIONS(3356), - [sym__shortcode_open] = ACTIONS(3356), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3356), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3356), - [sym__cite_author_in_text] = ACTIONS(3356), - [sym__cite_suppress_author] = ACTIONS(3356), - [sym__strikeout_open] = ACTIONS(3356), - [sym__subscript_open] = ACTIONS(3356), - [sym__superscript_open] = ACTIONS(3356), - [sym__inline_note_start_token] = ACTIONS(3356), - [sym__strong_emphasis_open_star] = ACTIONS(3356), - [sym__strong_emphasis_open_underscore] = ACTIONS(3356), - [sym__emphasis_open_star] = ACTIONS(3356), - [sym__emphasis_open_underscore] = ACTIONS(3356), - [sym_inline_note_reference] = ACTIONS(3356), - [sym_html_element] = ACTIONS(3356), + [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)] = { - [anon_sym_COLON] = ACTIONS(3360), - [sym_entity_reference] = ACTIONS(3360), - [sym_numeric_character_reference] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_BANG_LBRACK] = ACTIONS(3360), - [anon_sym_DOLLAR] = ACTIONS(3362), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3360), - [aux_sym_pandoc_str_token1] = ACTIONS(3362), - [anon_sym_PIPE] = ACTIONS(3360), - [aux_sym__prose_punctuation_token1] = ACTIONS(3362), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3362), - [sym__line_ending] = ACTIONS(3360), - [sym__soft_line_ending] = ACTIONS(3360), - [sym__block_close] = ACTIONS(3360), - [sym__block_quote_start] = ACTIONS(3360), - [sym_atx_h1_marker] = ACTIONS(3360), - [sym_atx_h2_marker] = ACTIONS(3360), - [sym_atx_h3_marker] = ACTIONS(3360), - [sym_atx_h4_marker] = ACTIONS(3360), - [sym_atx_h5_marker] = ACTIONS(3360), - [sym_atx_h6_marker] = ACTIONS(3360), - [sym__thematic_break] = ACTIONS(3360), - [sym__list_marker_minus] = ACTIONS(3360), - [sym__list_marker_plus] = ACTIONS(3360), - [sym__list_marker_star] = ACTIONS(3360), - [sym__list_marker_parenthesis] = ACTIONS(3360), - [sym__list_marker_dot] = ACTIONS(3360), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_example] = ACTIONS(3360), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3360), - [sym__fenced_code_block_start_backtick] = ACTIONS(3360), - [sym_minus_metadata] = ACTIONS(3360), - [sym__pipe_table_start] = ACTIONS(3360), - [sym__fenced_div_start] = ACTIONS(3360), - [sym__fenced_div_end] = ACTIONS(3360), - [sym_ref_id_specifier] = ACTIONS(3360), - [sym__code_span_start] = ACTIONS(3360), - [sym__html_comment] = ACTIONS(3360), - [sym__autolink] = ACTIONS(3360), - [sym__highlight_span_start] = ACTIONS(3360), - [sym__insert_span_start] = ACTIONS(3360), - [sym__delete_span_start] = ACTIONS(3360), - [sym__edit_comment_span_start] = ACTIONS(3360), - [sym__single_quote_span_open] = ACTIONS(3360), - [sym__double_quote_span_open] = ACTIONS(3360), - [sym__shortcode_open_escaped] = ACTIONS(3360), - [sym__shortcode_open] = ACTIONS(3360), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3360), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3360), - [sym__cite_author_in_text] = ACTIONS(3360), - [sym__cite_suppress_author] = ACTIONS(3360), - [sym__strikeout_open] = ACTIONS(3360), - [sym__subscript_open] = ACTIONS(3360), - [sym__superscript_open] = ACTIONS(3360), - [sym__inline_note_start_token] = ACTIONS(3360), - [sym__strong_emphasis_open_star] = ACTIONS(3360), - [sym__strong_emphasis_open_underscore] = ACTIONS(3360), - [sym__emphasis_open_star] = ACTIONS(3360), - [sym__emphasis_open_underscore] = ACTIONS(3360), - [sym_inline_note_reference] = ACTIONS(3360), - [sym_html_element] = ACTIONS(3360), + [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(3364), - [sym_entity_reference] = ACTIONS(3364), - [sym_numeric_character_reference] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_BANG_LBRACK] = ACTIONS(3364), - [anon_sym_DOLLAR] = ACTIONS(3366), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [aux_sym_pandoc_str_token1] = ACTIONS(3366), - [anon_sym_PIPE] = ACTIONS(3364), - [aux_sym__prose_punctuation_token1] = ACTIONS(3366), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3366), - [sym__line_ending] = ACTIONS(3364), - [sym__soft_line_ending] = ACTIONS(3364), - [sym__block_close] = ACTIONS(3364), - [sym__block_quote_start] = ACTIONS(3364), - [sym_atx_h1_marker] = ACTIONS(3364), - [sym_atx_h2_marker] = ACTIONS(3364), - [sym_atx_h3_marker] = ACTIONS(3364), - [sym_atx_h4_marker] = ACTIONS(3364), - [sym_atx_h5_marker] = ACTIONS(3364), - [sym_atx_h6_marker] = ACTIONS(3364), - [sym__thematic_break] = ACTIONS(3364), - [sym__list_marker_minus] = ACTIONS(3364), - [sym__list_marker_plus] = ACTIONS(3364), - [sym__list_marker_star] = ACTIONS(3364), - [sym__list_marker_parenthesis] = ACTIONS(3364), - [sym__list_marker_dot] = ACTIONS(3364), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_example] = ACTIONS(3364), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3364), - [sym__fenced_code_block_start_backtick] = ACTIONS(3364), - [sym_minus_metadata] = ACTIONS(3364), - [sym__pipe_table_start] = ACTIONS(3364), - [sym__fenced_div_start] = ACTIONS(3364), - [sym__fenced_div_end] = ACTIONS(3364), - [sym_ref_id_specifier] = ACTIONS(3364), - [sym__code_span_start] = ACTIONS(3364), - [sym__html_comment] = ACTIONS(3364), - [sym__autolink] = ACTIONS(3364), - [sym__highlight_span_start] = ACTIONS(3364), - [sym__insert_span_start] = ACTIONS(3364), - [sym__delete_span_start] = ACTIONS(3364), - [sym__edit_comment_span_start] = ACTIONS(3364), - [sym__single_quote_span_open] = ACTIONS(3364), - [sym__double_quote_span_open] = ACTIONS(3364), - [sym__shortcode_open_escaped] = ACTIONS(3364), - [sym__shortcode_open] = ACTIONS(3364), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3364), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3364), - [sym__cite_author_in_text] = ACTIONS(3364), - [sym__cite_suppress_author] = ACTIONS(3364), - [sym__strikeout_open] = ACTIONS(3364), - [sym__subscript_open] = ACTIONS(3364), - [sym__superscript_open] = ACTIONS(3364), - [sym__inline_note_start_token] = ACTIONS(3364), - [sym__strong_emphasis_open_star] = ACTIONS(3364), - [sym__strong_emphasis_open_underscore] = ACTIONS(3364), - [sym__emphasis_open_star] = ACTIONS(3364), - [sym__emphasis_open_underscore] = ACTIONS(3364), - [sym_inline_note_reference] = ACTIONS(3364), - [sym_html_element] = ACTIONS(3364), + [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(3368), - [sym_entity_reference] = ACTIONS(3368), - [sym_numeric_character_reference] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_BANG_LBRACK] = ACTIONS(3368), - [anon_sym_DOLLAR] = ACTIONS(3370), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [aux_sym_pandoc_str_token1] = ACTIONS(3370), - [anon_sym_PIPE] = ACTIONS(3368), - [aux_sym__prose_punctuation_token1] = ACTIONS(3370), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3370), - [sym__line_ending] = ACTIONS(3368), - [sym__soft_line_ending] = ACTIONS(3368), - [sym__block_close] = ACTIONS(3368), - [sym__block_quote_start] = ACTIONS(3368), - [sym_atx_h1_marker] = ACTIONS(3368), - [sym_atx_h2_marker] = ACTIONS(3368), - [sym_atx_h3_marker] = ACTIONS(3368), - [sym_atx_h4_marker] = ACTIONS(3368), - [sym_atx_h5_marker] = ACTIONS(3368), - [sym_atx_h6_marker] = ACTIONS(3368), - [sym__thematic_break] = ACTIONS(3368), - [sym__list_marker_minus] = ACTIONS(3368), - [sym__list_marker_plus] = ACTIONS(3368), - [sym__list_marker_star] = ACTIONS(3368), - [sym__list_marker_parenthesis] = ACTIONS(3368), - [sym__list_marker_dot] = ACTIONS(3368), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_example] = ACTIONS(3368), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3368), - [sym__fenced_code_block_start_backtick] = ACTIONS(3368), - [sym_minus_metadata] = ACTIONS(3368), - [sym__pipe_table_start] = ACTIONS(3368), - [sym__fenced_div_start] = ACTIONS(3368), - [sym__fenced_div_end] = ACTIONS(3368), - [sym_ref_id_specifier] = ACTIONS(3368), - [sym__code_span_start] = ACTIONS(3368), - [sym__html_comment] = ACTIONS(3368), - [sym__autolink] = ACTIONS(3368), - [sym__highlight_span_start] = ACTIONS(3368), - [sym__insert_span_start] = ACTIONS(3368), - [sym__delete_span_start] = ACTIONS(3368), - [sym__edit_comment_span_start] = ACTIONS(3368), - [sym__single_quote_span_open] = ACTIONS(3368), - [sym__double_quote_span_open] = ACTIONS(3368), - [sym__shortcode_open_escaped] = ACTIONS(3368), - [sym__shortcode_open] = ACTIONS(3368), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3368), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3368), - [sym__cite_author_in_text] = ACTIONS(3368), - [sym__cite_suppress_author] = ACTIONS(3368), - [sym__strikeout_open] = ACTIONS(3368), - [sym__subscript_open] = ACTIONS(3368), - [sym__superscript_open] = ACTIONS(3368), - [sym__inline_note_start_token] = ACTIONS(3368), - [sym__strong_emphasis_open_star] = ACTIONS(3368), - [sym__strong_emphasis_open_underscore] = ACTIONS(3368), - [sym__emphasis_open_star] = ACTIONS(3368), - [sym__emphasis_open_underscore] = ACTIONS(3368), - [sym_inline_note_reference] = ACTIONS(3368), - [sym_html_element] = ACTIONS(3368), + [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)] = { - [anon_sym_COLON] = ACTIONS(3372), - [sym_entity_reference] = ACTIONS(3372), - [sym_numeric_character_reference] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_BANG_LBRACK] = ACTIONS(3372), - [anon_sym_DOLLAR] = ACTIONS(3374), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3372), - [aux_sym_pandoc_str_token1] = ACTIONS(3374), - [anon_sym_PIPE] = ACTIONS(3372), - [aux_sym__prose_punctuation_token1] = ACTIONS(3374), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3374), - [sym__line_ending] = ACTIONS(3372), - [sym__soft_line_ending] = ACTIONS(3372), - [sym__block_close] = ACTIONS(3372), - [sym__block_quote_start] = ACTIONS(3372), - [sym_atx_h1_marker] = ACTIONS(3372), - [sym_atx_h2_marker] = ACTIONS(3372), - [sym_atx_h3_marker] = ACTIONS(3372), - [sym_atx_h4_marker] = ACTIONS(3372), - [sym_atx_h5_marker] = ACTIONS(3372), - [sym_atx_h6_marker] = ACTIONS(3372), - [sym__thematic_break] = ACTIONS(3372), - [sym__list_marker_minus] = ACTIONS(3372), - [sym__list_marker_plus] = ACTIONS(3372), - [sym__list_marker_star] = ACTIONS(3372), - [sym__list_marker_parenthesis] = ACTIONS(3372), - [sym__list_marker_dot] = ACTIONS(3372), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_example] = ACTIONS(3372), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3372), - [sym__fenced_code_block_start_backtick] = ACTIONS(3372), - [sym_minus_metadata] = ACTIONS(3372), - [sym__pipe_table_start] = ACTIONS(3372), - [sym__fenced_div_start] = ACTIONS(3372), - [sym__fenced_div_end] = ACTIONS(3372), - [sym_ref_id_specifier] = ACTIONS(3372), - [sym__code_span_start] = ACTIONS(3372), - [sym__html_comment] = ACTIONS(3372), - [sym__autolink] = ACTIONS(3372), - [sym__highlight_span_start] = ACTIONS(3372), - [sym__insert_span_start] = ACTIONS(3372), - [sym__delete_span_start] = ACTIONS(3372), - [sym__edit_comment_span_start] = ACTIONS(3372), - [sym__single_quote_span_open] = ACTIONS(3372), - [sym__double_quote_span_open] = ACTIONS(3372), - [sym__shortcode_open_escaped] = ACTIONS(3372), - [sym__shortcode_open] = ACTIONS(3372), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3372), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3372), - [sym__cite_author_in_text] = ACTIONS(3372), - [sym__cite_suppress_author] = ACTIONS(3372), - [sym__strikeout_open] = ACTIONS(3372), - [sym__subscript_open] = ACTIONS(3372), - [sym__superscript_open] = ACTIONS(3372), - [sym__inline_note_start_token] = ACTIONS(3372), - [sym__strong_emphasis_open_star] = ACTIONS(3372), - [sym__strong_emphasis_open_underscore] = ACTIONS(3372), - [sym__emphasis_open_star] = ACTIONS(3372), - [sym__emphasis_open_underscore] = ACTIONS(3372), - [sym_inline_note_reference] = ACTIONS(3372), - [sym_html_element] = ACTIONS(3372), + [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(3376), - [sym_entity_reference] = ACTIONS(3376), - [sym_numeric_character_reference] = ACTIONS(3376), - [anon_sym_LBRACK] = ACTIONS(3376), - [anon_sym_BANG_LBRACK] = ACTIONS(3376), - [anon_sym_DOLLAR] = ACTIONS(3378), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3376), - [anon_sym_LBRACE] = ACTIONS(3376), - [aux_sym_pandoc_str_token1] = ACTIONS(3378), - [anon_sym_PIPE] = ACTIONS(3376), - [aux_sym__prose_punctuation_token1] = ACTIONS(3378), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3378), - [sym__line_ending] = ACTIONS(3376), - [sym__soft_line_ending] = ACTIONS(3376), - [sym__block_close] = ACTIONS(3376), - [sym__block_quote_start] = ACTIONS(3376), - [sym_atx_h1_marker] = ACTIONS(3376), - [sym_atx_h2_marker] = ACTIONS(3376), - [sym_atx_h3_marker] = ACTIONS(3376), - [sym_atx_h4_marker] = ACTIONS(3376), - [sym_atx_h5_marker] = ACTIONS(3376), - [sym_atx_h6_marker] = ACTIONS(3376), - [sym__thematic_break] = ACTIONS(3376), - [sym__list_marker_minus] = ACTIONS(3376), - [sym__list_marker_plus] = ACTIONS(3376), - [sym__list_marker_star] = ACTIONS(3376), - [sym__list_marker_parenthesis] = ACTIONS(3376), - [sym__list_marker_dot] = ACTIONS(3376), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_example] = ACTIONS(3376), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3376), - [sym__fenced_code_block_start_backtick] = ACTIONS(3376), - [sym_minus_metadata] = ACTIONS(3376), - [sym__pipe_table_start] = ACTIONS(3376), - [sym__fenced_div_start] = ACTIONS(3376), - [sym__fenced_div_end] = ACTIONS(3376), - [sym_ref_id_specifier] = ACTIONS(3376), - [sym__code_span_start] = ACTIONS(3376), - [sym__html_comment] = ACTIONS(3376), - [sym__autolink] = ACTIONS(3376), - [sym__highlight_span_start] = ACTIONS(3376), - [sym__insert_span_start] = ACTIONS(3376), - [sym__delete_span_start] = ACTIONS(3376), - [sym__edit_comment_span_start] = ACTIONS(3376), - [sym__single_quote_span_open] = ACTIONS(3376), - [sym__double_quote_span_open] = ACTIONS(3376), - [sym__shortcode_open_escaped] = ACTIONS(3376), - [sym__shortcode_open] = ACTIONS(3376), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3376), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3376), - [sym__cite_author_in_text] = ACTIONS(3376), - [sym__cite_suppress_author] = ACTIONS(3376), - [sym__strikeout_open] = ACTIONS(3376), - [sym__subscript_open] = ACTIONS(3376), - [sym__superscript_open] = ACTIONS(3376), - [sym__inline_note_start_token] = ACTIONS(3376), - [sym__strong_emphasis_open_star] = ACTIONS(3376), - [sym__strong_emphasis_open_underscore] = ACTIONS(3376), - [sym__emphasis_open_star] = ACTIONS(3376), - [sym__emphasis_open_underscore] = ACTIONS(3376), - [sym_inline_note_reference] = ACTIONS(3376), - [sym_html_element] = ACTIONS(3376), + [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(3380), - [sym_entity_reference] = ACTIONS(3380), - [sym_numeric_character_reference] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_BANG_LBRACK] = ACTIONS(3380), - [anon_sym_DOLLAR] = ACTIONS(3382), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3380), - [aux_sym_pandoc_str_token1] = ACTIONS(3382), - [anon_sym_PIPE] = ACTIONS(3380), - [aux_sym__prose_punctuation_token1] = ACTIONS(3382), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3382), - [sym__line_ending] = ACTIONS(3380), - [sym__soft_line_ending] = ACTIONS(3380), - [sym__block_close] = ACTIONS(3380), - [sym__block_quote_start] = ACTIONS(3380), - [sym_atx_h1_marker] = ACTIONS(3380), - [sym_atx_h2_marker] = ACTIONS(3380), - [sym_atx_h3_marker] = ACTIONS(3380), - [sym_atx_h4_marker] = ACTIONS(3380), - [sym_atx_h5_marker] = ACTIONS(3380), - [sym_atx_h6_marker] = ACTIONS(3380), - [sym__thematic_break] = ACTIONS(3380), - [sym__list_marker_minus] = ACTIONS(3380), - [sym__list_marker_plus] = ACTIONS(3380), - [sym__list_marker_star] = ACTIONS(3380), - [sym__list_marker_parenthesis] = ACTIONS(3380), - [sym__list_marker_dot] = ACTIONS(3380), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_example] = ACTIONS(3380), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3380), - [sym__fenced_code_block_start_backtick] = ACTIONS(3380), - [sym_minus_metadata] = ACTIONS(3380), - [sym__pipe_table_start] = ACTIONS(3380), - [sym__fenced_div_start] = ACTIONS(3380), - [sym__fenced_div_end] = ACTIONS(3380), - [sym_ref_id_specifier] = ACTIONS(3380), - [sym__code_span_start] = ACTIONS(3380), - [sym__html_comment] = ACTIONS(3380), - [sym__autolink] = ACTIONS(3380), - [sym__highlight_span_start] = ACTIONS(3380), - [sym__insert_span_start] = ACTIONS(3380), - [sym__delete_span_start] = ACTIONS(3380), - [sym__edit_comment_span_start] = ACTIONS(3380), - [sym__single_quote_span_open] = ACTIONS(3380), - [sym__double_quote_span_open] = ACTIONS(3380), - [sym__shortcode_open_escaped] = ACTIONS(3380), - [sym__shortcode_open] = ACTIONS(3380), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3380), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3380), - [sym__cite_author_in_text] = ACTIONS(3380), - [sym__cite_suppress_author] = ACTIONS(3380), - [sym__strikeout_open] = ACTIONS(3380), - [sym__subscript_open] = ACTIONS(3380), - [sym__superscript_open] = ACTIONS(3380), - [sym__inline_note_start_token] = ACTIONS(3380), - [sym__strong_emphasis_open_star] = ACTIONS(3380), - [sym__strong_emphasis_open_underscore] = ACTIONS(3380), - [sym__emphasis_open_star] = ACTIONS(3380), - [sym__emphasis_open_underscore] = ACTIONS(3380), - [sym_inline_note_reference] = ACTIONS(3380), - [sym_html_element] = ACTIONS(3380), + [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(3384), - [sym_entity_reference] = ACTIONS(3384), - [sym_numeric_character_reference] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_BANG_LBRACK] = ACTIONS(3384), - [anon_sym_DOLLAR] = ACTIONS(3386), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3384), - [aux_sym_pandoc_str_token1] = ACTIONS(3386), - [anon_sym_PIPE] = ACTIONS(3384), - [aux_sym__prose_punctuation_token1] = ACTIONS(3386), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3386), - [sym__line_ending] = ACTIONS(3384), - [sym__soft_line_ending] = ACTIONS(3384), - [sym__block_close] = ACTIONS(3384), - [sym__block_quote_start] = ACTIONS(3384), - [sym_atx_h1_marker] = ACTIONS(3384), - [sym_atx_h2_marker] = ACTIONS(3384), - [sym_atx_h3_marker] = ACTIONS(3384), - [sym_atx_h4_marker] = ACTIONS(3384), - [sym_atx_h5_marker] = ACTIONS(3384), - [sym_atx_h6_marker] = ACTIONS(3384), - [sym__thematic_break] = ACTIONS(3384), - [sym__list_marker_minus] = ACTIONS(3384), - [sym__list_marker_plus] = ACTIONS(3384), - [sym__list_marker_star] = ACTIONS(3384), - [sym__list_marker_parenthesis] = ACTIONS(3384), - [sym__list_marker_dot] = ACTIONS(3384), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_example] = ACTIONS(3384), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3384), - [sym__fenced_code_block_start_backtick] = ACTIONS(3384), - [sym_minus_metadata] = ACTIONS(3384), - [sym__pipe_table_start] = ACTIONS(3384), - [sym__fenced_div_start] = ACTIONS(3384), - [sym__fenced_div_end] = ACTIONS(3384), - [sym_ref_id_specifier] = ACTIONS(3384), - [sym__code_span_start] = ACTIONS(3384), - [sym__html_comment] = ACTIONS(3384), - [sym__autolink] = ACTIONS(3384), - [sym__highlight_span_start] = ACTIONS(3384), - [sym__insert_span_start] = ACTIONS(3384), - [sym__delete_span_start] = ACTIONS(3384), - [sym__edit_comment_span_start] = ACTIONS(3384), - [sym__single_quote_span_open] = ACTIONS(3384), - [sym__double_quote_span_open] = ACTIONS(3384), - [sym__shortcode_open_escaped] = ACTIONS(3384), - [sym__shortcode_open] = ACTIONS(3384), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3384), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3384), - [sym__cite_author_in_text] = ACTIONS(3384), - [sym__cite_suppress_author] = ACTIONS(3384), - [sym__strikeout_open] = ACTIONS(3384), - [sym__subscript_open] = ACTIONS(3384), - [sym__superscript_open] = ACTIONS(3384), - [sym__inline_note_start_token] = ACTIONS(3384), - [sym__strong_emphasis_open_star] = ACTIONS(3384), - [sym__strong_emphasis_open_underscore] = ACTIONS(3384), - [sym__emphasis_open_star] = ACTIONS(3384), - [sym__emphasis_open_underscore] = ACTIONS(3384), - [sym_inline_note_reference] = ACTIONS(3384), - [sym_html_element] = ACTIONS(3384), + [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)] = { - [anon_sym_COLON] = ACTIONS(3388), - [sym_entity_reference] = ACTIONS(3388), - [sym_numeric_character_reference] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_BANG_LBRACK] = ACTIONS(3388), - [anon_sym_DOLLAR] = ACTIONS(3390), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3388), - [aux_sym_pandoc_str_token1] = ACTIONS(3390), - [anon_sym_PIPE] = ACTIONS(3388), - [aux_sym__prose_punctuation_token1] = ACTIONS(3390), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3390), - [sym__line_ending] = ACTIONS(3388), - [sym__soft_line_ending] = ACTIONS(3388), - [sym__block_close] = ACTIONS(3388), - [sym__block_quote_start] = ACTIONS(3388), - [sym_atx_h1_marker] = ACTIONS(3388), - [sym_atx_h2_marker] = ACTIONS(3388), - [sym_atx_h3_marker] = ACTIONS(3388), - [sym_atx_h4_marker] = ACTIONS(3388), - [sym_atx_h5_marker] = ACTIONS(3388), - [sym_atx_h6_marker] = ACTIONS(3388), - [sym__thematic_break] = ACTIONS(3388), - [sym__list_marker_minus] = ACTIONS(3388), - [sym__list_marker_plus] = ACTIONS(3388), - [sym__list_marker_star] = ACTIONS(3388), - [sym__list_marker_parenthesis] = ACTIONS(3388), - [sym__list_marker_dot] = ACTIONS(3388), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_example] = ACTIONS(3388), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3388), - [sym__fenced_code_block_start_backtick] = ACTIONS(3388), - [sym_minus_metadata] = ACTIONS(3388), - [sym__pipe_table_start] = ACTIONS(3388), - [sym__fenced_div_start] = ACTIONS(3388), - [sym__fenced_div_end] = ACTIONS(3388), - [sym_ref_id_specifier] = ACTIONS(3388), - [sym__code_span_start] = ACTIONS(3388), - [sym__html_comment] = ACTIONS(3388), - [sym__autolink] = ACTIONS(3388), - [sym__highlight_span_start] = ACTIONS(3388), - [sym__insert_span_start] = ACTIONS(3388), - [sym__delete_span_start] = ACTIONS(3388), - [sym__edit_comment_span_start] = ACTIONS(3388), - [sym__single_quote_span_open] = ACTIONS(3388), - [sym__double_quote_span_open] = ACTIONS(3388), - [sym__shortcode_open_escaped] = ACTIONS(3388), - [sym__shortcode_open] = ACTIONS(3388), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3388), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3388), - [sym__cite_author_in_text] = ACTIONS(3388), - [sym__cite_suppress_author] = ACTIONS(3388), - [sym__strikeout_open] = ACTIONS(3388), - [sym__subscript_open] = ACTIONS(3388), - [sym__superscript_open] = ACTIONS(3388), - [sym__inline_note_start_token] = ACTIONS(3388), - [sym__strong_emphasis_open_star] = ACTIONS(3388), - [sym__strong_emphasis_open_underscore] = ACTIONS(3388), - [sym__emphasis_open_star] = ACTIONS(3388), - [sym__emphasis_open_underscore] = ACTIONS(3388), - [sym_inline_note_reference] = ACTIONS(3388), - [sym_html_element] = ACTIONS(3388), + [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)] = { - [anon_sym_COLON] = ACTIONS(3392), - [sym_entity_reference] = ACTIONS(3392), - [sym_numeric_character_reference] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3392), - [anon_sym_BANG_LBRACK] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(3394), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3392), - [aux_sym_pandoc_str_token1] = ACTIONS(3394), - [anon_sym_PIPE] = ACTIONS(3392), - [aux_sym__prose_punctuation_token1] = ACTIONS(3394), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3394), - [sym__line_ending] = ACTIONS(3392), - [sym__soft_line_ending] = ACTIONS(3392), - [sym__block_close] = ACTIONS(3392), - [sym__block_quote_start] = ACTIONS(3392), - [sym_atx_h1_marker] = ACTIONS(3392), - [sym_atx_h2_marker] = ACTIONS(3392), - [sym_atx_h3_marker] = ACTIONS(3392), - [sym_atx_h4_marker] = ACTIONS(3392), - [sym_atx_h5_marker] = ACTIONS(3392), - [sym_atx_h6_marker] = ACTIONS(3392), - [sym__thematic_break] = ACTIONS(3392), - [sym__list_marker_minus] = ACTIONS(3392), - [sym__list_marker_plus] = ACTIONS(3392), - [sym__list_marker_star] = ACTIONS(3392), - [sym__list_marker_parenthesis] = ACTIONS(3392), - [sym__list_marker_dot] = ACTIONS(3392), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_example] = ACTIONS(3392), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3392), - [sym__fenced_code_block_start_backtick] = ACTIONS(3392), - [sym_minus_metadata] = ACTIONS(3392), - [sym__pipe_table_start] = ACTIONS(3392), - [sym__fenced_div_start] = ACTIONS(3392), - [sym__fenced_div_end] = ACTIONS(3392), - [sym_ref_id_specifier] = ACTIONS(3392), - [sym__code_span_start] = ACTIONS(3392), - [sym__html_comment] = ACTIONS(3392), - [sym__autolink] = ACTIONS(3392), - [sym__highlight_span_start] = ACTIONS(3392), - [sym__insert_span_start] = ACTIONS(3392), - [sym__delete_span_start] = ACTIONS(3392), - [sym__edit_comment_span_start] = ACTIONS(3392), - [sym__single_quote_span_open] = ACTIONS(3392), - [sym__double_quote_span_open] = ACTIONS(3392), - [sym__shortcode_open_escaped] = ACTIONS(3392), - [sym__shortcode_open] = ACTIONS(3392), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3392), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3392), - [sym__cite_author_in_text] = ACTIONS(3392), - [sym__cite_suppress_author] = ACTIONS(3392), - [sym__strikeout_open] = ACTIONS(3392), - [sym__subscript_open] = ACTIONS(3392), - [sym__superscript_open] = ACTIONS(3392), - [sym__inline_note_start_token] = ACTIONS(3392), - [sym__strong_emphasis_open_star] = ACTIONS(3392), - [sym__strong_emphasis_open_underscore] = ACTIONS(3392), - [sym__emphasis_open_star] = ACTIONS(3392), - [sym__emphasis_open_underscore] = ACTIONS(3392), - [sym_inline_note_reference] = ACTIONS(3392), - [sym_html_element] = ACTIONS(3392), + [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(3396), - [sym_entity_reference] = ACTIONS(3396), - [sym_numeric_character_reference] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_BANG_LBRACK] = ACTIONS(3396), - [anon_sym_DOLLAR] = ACTIONS(3398), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3396), - [aux_sym_pandoc_str_token1] = ACTIONS(3398), - [anon_sym_PIPE] = ACTIONS(3396), - [aux_sym__prose_punctuation_token1] = ACTIONS(3398), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3398), - [sym__line_ending] = ACTIONS(3396), - [sym__soft_line_ending] = ACTIONS(3396), - [sym__block_close] = ACTIONS(3396), - [sym__block_quote_start] = ACTIONS(3396), - [sym_atx_h1_marker] = ACTIONS(3396), - [sym_atx_h2_marker] = ACTIONS(3396), - [sym_atx_h3_marker] = ACTIONS(3396), - [sym_atx_h4_marker] = ACTIONS(3396), - [sym_atx_h5_marker] = ACTIONS(3396), - [sym_atx_h6_marker] = ACTIONS(3396), - [sym__thematic_break] = ACTIONS(3396), - [sym__list_marker_minus] = ACTIONS(3396), - [sym__list_marker_plus] = ACTIONS(3396), - [sym__list_marker_star] = ACTIONS(3396), - [sym__list_marker_parenthesis] = ACTIONS(3396), - [sym__list_marker_dot] = ACTIONS(3396), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_example] = ACTIONS(3396), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3396), - [sym__fenced_code_block_start_backtick] = ACTIONS(3396), - [sym_minus_metadata] = ACTIONS(3396), - [sym__pipe_table_start] = ACTIONS(3396), - [sym__fenced_div_start] = ACTIONS(3396), - [sym__fenced_div_end] = ACTIONS(3396), - [sym_ref_id_specifier] = ACTIONS(3396), - [sym__code_span_start] = ACTIONS(3396), - [sym__html_comment] = ACTIONS(3396), - [sym__autolink] = ACTIONS(3396), - [sym__highlight_span_start] = ACTIONS(3396), - [sym__insert_span_start] = ACTIONS(3396), - [sym__delete_span_start] = ACTIONS(3396), - [sym__edit_comment_span_start] = ACTIONS(3396), - [sym__single_quote_span_open] = ACTIONS(3396), - [sym__double_quote_span_open] = ACTIONS(3396), - [sym__shortcode_open_escaped] = ACTIONS(3396), - [sym__shortcode_open] = ACTIONS(3396), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3396), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3396), - [sym__cite_author_in_text] = ACTIONS(3396), - [sym__cite_suppress_author] = ACTIONS(3396), - [sym__strikeout_open] = ACTIONS(3396), - [sym__subscript_open] = ACTIONS(3396), - [sym__superscript_open] = ACTIONS(3396), - [sym__inline_note_start_token] = ACTIONS(3396), - [sym__strong_emphasis_open_star] = ACTIONS(3396), - [sym__strong_emphasis_open_underscore] = ACTIONS(3396), - [sym__emphasis_open_star] = ACTIONS(3396), - [sym__emphasis_open_underscore] = ACTIONS(3396), - [sym_inline_note_reference] = ACTIONS(3396), - [sym_html_element] = ACTIONS(3396), + [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(388)] = { - [anon_sym_COLON] = ACTIONS(3400), - [sym_entity_reference] = ACTIONS(3400), - [sym_numeric_character_reference] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_BANG_LBRACK] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(3402), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3400), - [aux_sym_pandoc_str_token1] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3400), - [aux_sym__prose_punctuation_token1] = ACTIONS(3402), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3402), - [sym__line_ending] = ACTIONS(3400), - [sym__soft_line_ending] = ACTIONS(3400), - [sym__block_close] = ACTIONS(3400), - [sym__block_quote_start] = ACTIONS(3400), - [sym_atx_h1_marker] = ACTIONS(3400), - [sym_atx_h2_marker] = ACTIONS(3400), - [sym_atx_h3_marker] = ACTIONS(3400), - [sym_atx_h4_marker] = ACTIONS(3400), - [sym_atx_h5_marker] = ACTIONS(3400), - [sym_atx_h6_marker] = ACTIONS(3400), - [sym__thematic_break] = ACTIONS(3400), - [sym__list_marker_minus] = ACTIONS(3400), - [sym__list_marker_plus] = ACTIONS(3400), - [sym__list_marker_star] = ACTIONS(3400), - [sym__list_marker_parenthesis] = ACTIONS(3400), - [sym__list_marker_dot] = ACTIONS(3400), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_example] = ACTIONS(3400), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3400), - [sym__fenced_code_block_start_backtick] = ACTIONS(3400), - [sym_minus_metadata] = ACTIONS(3400), - [sym__pipe_table_start] = ACTIONS(3400), - [sym__fenced_div_start] = ACTIONS(3400), - [sym__fenced_div_end] = ACTIONS(3400), - [sym_ref_id_specifier] = ACTIONS(3400), - [sym__code_span_start] = ACTIONS(3400), - [sym__html_comment] = ACTIONS(3400), - [sym__autolink] = ACTIONS(3400), - [sym__highlight_span_start] = ACTIONS(3400), - [sym__insert_span_start] = ACTIONS(3400), - [sym__delete_span_start] = ACTIONS(3400), - [sym__edit_comment_span_start] = ACTIONS(3400), - [sym__single_quote_span_open] = ACTIONS(3400), - [sym__double_quote_span_open] = ACTIONS(3400), - [sym__shortcode_open_escaped] = ACTIONS(3400), - [sym__shortcode_open] = ACTIONS(3400), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3400), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3400), - [sym__cite_author_in_text] = ACTIONS(3400), - [sym__cite_suppress_author] = ACTIONS(3400), - [sym__strikeout_open] = ACTIONS(3400), - [sym__subscript_open] = ACTIONS(3400), - [sym__superscript_open] = ACTIONS(3400), - [sym__inline_note_start_token] = ACTIONS(3400), - [sym__strong_emphasis_open_star] = ACTIONS(3400), - [sym__strong_emphasis_open_underscore] = ACTIONS(3400), - [sym__emphasis_open_star] = ACTIONS(3400), - [sym__emphasis_open_underscore] = ACTIONS(3400), - [sym_inline_note_reference] = ACTIONS(3400), - [sym_html_element] = ACTIONS(3400), + [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(389)] = { - [anon_sym_COLON] = ACTIONS(3404), - [sym_entity_reference] = ACTIONS(3404), - [sym_numeric_character_reference] = ACTIONS(3404), - [anon_sym_LBRACK] = ACTIONS(3404), - [anon_sym_BANG_LBRACK] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3406), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3404), - [aux_sym_pandoc_str_token1] = ACTIONS(3406), - [anon_sym_PIPE] = ACTIONS(3404), - [aux_sym__prose_punctuation_token1] = ACTIONS(3406), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3406), - [sym__line_ending] = ACTIONS(3404), - [sym__soft_line_ending] = ACTIONS(3404), - [sym__block_close] = ACTIONS(3404), - [sym__block_quote_start] = ACTIONS(3404), - [sym_atx_h1_marker] = ACTIONS(3404), - [sym_atx_h2_marker] = ACTIONS(3404), - [sym_atx_h3_marker] = ACTIONS(3404), - [sym_atx_h4_marker] = ACTIONS(3404), - [sym_atx_h5_marker] = ACTIONS(3404), - [sym_atx_h6_marker] = ACTIONS(3404), - [sym__thematic_break] = ACTIONS(3404), - [sym__list_marker_minus] = ACTIONS(3404), - [sym__list_marker_plus] = ACTIONS(3404), - [sym__list_marker_star] = ACTIONS(3404), - [sym__list_marker_parenthesis] = ACTIONS(3404), - [sym__list_marker_dot] = ACTIONS(3404), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_example] = ACTIONS(3404), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3404), - [sym__fenced_code_block_start_backtick] = ACTIONS(3404), - [sym_minus_metadata] = ACTIONS(3404), - [sym__pipe_table_start] = ACTIONS(3404), - [sym__fenced_div_start] = ACTIONS(3404), - [sym__fenced_div_end] = ACTIONS(3404), - [sym_ref_id_specifier] = ACTIONS(3404), - [sym__code_span_start] = ACTIONS(3404), - [sym__html_comment] = ACTIONS(3404), - [sym__autolink] = ACTIONS(3404), - [sym__highlight_span_start] = ACTIONS(3404), - [sym__insert_span_start] = ACTIONS(3404), - [sym__delete_span_start] = ACTIONS(3404), - [sym__edit_comment_span_start] = ACTIONS(3404), - [sym__single_quote_span_open] = ACTIONS(3404), - [sym__double_quote_span_open] = ACTIONS(3404), - [sym__shortcode_open_escaped] = ACTIONS(3404), - [sym__shortcode_open] = ACTIONS(3404), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3404), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3404), - [sym__cite_author_in_text] = ACTIONS(3404), - [sym__cite_suppress_author] = ACTIONS(3404), - [sym__strikeout_open] = ACTIONS(3404), - [sym__subscript_open] = ACTIONS(3404), - [sym__superscript_open] = ACTIONS(3404), - [sym__inline_note_start_token] = ACTIONS(3404), - [sym__strong_emphasis_open_star] = ACTIONS(3404), - [sym__strong_emphasis_open_underscore] = ACTIONS(3404), - [sym__emphasis_open_star] = ACTIONS(3404), - [sym__emphasis_open_underscore] = ACTIONS(3404), - [sym_inline_note_reference] = ACTIONS(3404), - [sym_html_element] = ACTIONS(3404), + [ts_builtin_sym_end] = ACTIONS(2645), + [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_continuation] = ACTIONS(3268), + [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(390)] = { - [anon_sym_COLON] = ACTIONS(3408), - [sym_entity_reference] = ACTIONS(3408), - [sym_numeric_character_reference] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_BANG_LBRACK] = ACTIONS(3408), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3408), - [aux_sym_pandoc_str_token1] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3408), - [aux_sym__prose_punctuation_token1] = ACTIONS(3410), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3410), - [sym__line_ending] = ACTIONS(3408), - [sym__soft_line_ending] = ACTIONS(3408), - [sym__block_close] = ACTIONS(3408), - [sym__block_quote_start] = ACTIONS(3408), - [sym_atx_h1_marker] = ACTIONS(3408), - [sym_atx_h2_marker] = ACTIONS(3408), - [sym_atx_h3_marker] = ACTIONS(3408), - [sym_atx_h4_marker] = ACTIONS(3408), - [sym_atx_h5_marker] = ACTIONS(3408), - [sym_atx_h6_marker] = ACTIONS(3408), - [sym__thematic_break] = ACTIONS(3408), - [sym__list_marker_minus] = ACTIONS(3408), - [sym__list_marker_plus] = ACTIONS(3408), - [sym__list_marker_star] = ACTIONS(3408), - [sym__list_marker_parenthesis] = ACTIONS(3408), - [sym__list_marker_dot] = ACTIONS(3408), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_example] = ACTIONS(3408), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3408), - [sym__fenced_code_block_start_backtick] = ACTIONS(3408), - [sym_minus_metadata] = ACTIONS(3408), - [sym__pipe_table_start] = ACTIONS(3408), - [sym__fenced_div_start] = ACTIONS(3408), - [sym__fenced_div_end] = ACTIONS(3408), - [sym_ref_id_specifier] = ACTIONS(3408), - [sym__code_span_start] = ACTIONS(3408), - [sym__html_comment] = ACTIONS(3408), - [sym__autolink] = ACTIONS(3408), - [sym__highlight_span_start] = ACTIONS(3408), - [sym__insert_span_start] = ACTIONS(3408), - [sym__delete_span_start] = ACTIONS(3408), - [sym__edit_comment_span_start] = ACTIONS(3408), - [sym__single_quote_span_open] = ACTIONS(3408), - [sym__double_quote_span_open] = ACTIONS(3408), - [sym__shortcode_open_escaped] = ACTIONS(3408), - [sym__shortcode_open] = ACTIONS(3408), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3408), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3408), - [sym__cite_author_in_text] = ACTIONS(3408), - [sym__cite_suppress_author] = ACTIONS(3408), - [sym__strikeout_open] = ACTIONS(3408), - [sym__subscript_open] = ACTIONS(3408), - [sym__superscript_open] = ACTIONS(3408), - [sym__inline_note_start_token] = ACTIONS(3408), - [sym__strong_emphasis_open_star] = ACTIONS(3408), - [sym__strong_emphasis_open_underscore] = ACTIONS(3408), - [sym__emphasis_open_star] = ACTIONS(3408), - [sym__emphasis_open_underscore] = ACTIONS(3408), - [sym_inline_note_reference] = ACTIONS(3408), - [sym_html_element] = ACTIONS(3408), + [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(391)] = { - [anon_sym_COLON] = ACTIONS(3412), - [sym_entity_reference] = ACTIONS(3412), - [sym_numeric_character_reference] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3412), - [anon_sym_BANG_LBRACK] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3414), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3412), - [aux_sym_pandoc_str_token1] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3412), - [aux_sym__prose_punctuation_token1] = ACTIONS(3414), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3414), - [sym__line_ending] = ACTIONS(3412), - [sym__soft_line_ending] = ACTIONS(3412), - [sym__block_close] = ACTIONS(3412), - [sym__block_quote_start] = ACTIONS(3412), - [sym_atx_h1_marker] = ACTIONS(3412), - [sym_atx_h2_marker] = ACTIONS(3412), - [sym_atx_h3_marker] = ACTIONS(3412), - [sym_atx_h4_marker] = ACTIONS(3412), - [sym_atx_h5_marker] = ACTIONS(3412), - [sym_atx_h6_marker] = ACTIONS(3412), - [sym__thematic_break] = ACTIONS(3412), - [sym__list_marker_minus] = ACTIONS(3412), - [sym__list_marker_plus] = ACTIONS(3412), - [sym__list_marker_star] = ACTIONS(3412), - [sym__list_marker_parenthesis] = ACTIONS(3412), - [sym__list_marker_dot] = ACTIONS(3412), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_example] = ACTIONS(3412), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3412), - [sym__fenced_code_block_start_backtick] = ACTIONS(3412), - [sym_minus_metadata] = ACTIONS(3412), - [sym__pipe_table_start] = ACTIONS(3412), - [sym__fenced_div_start] = ACTIONS(3412), - [sym__fenced_div_end] = ACTIONS(3412), - [sym_ref_id_specifier] = ACTIONS(3412), - [sym__code_span_start] = ACTIONS(3412), - [sym__html_comment] = ACTIONS(3412), - [sym__autolink] = ACTIONS(3412), - [sym__highlight_span_start] = ACTIONS(3412), - [sym__insert_span_start] = ACTIONS(3412), - [sym__delete_span_start] = ACTIONS(3412), - [sym__edit_comment_span_start] = ACTIONS(3412), - [sym__single_quote_span_open] = ACTIONS(3412), - [sym__double_quote_span_open] = ACTIONS(3412), - [sym__shortcode_open_escaped] = ACTIONS(3412), - [sym__shortcode_open] = ACTIONS(3412), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3412), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3412), - [sym__cite_author_in_text] = ACTIONS(3412), - [sym__cite_suppress_author] = ACTIONS(3412), - [sym__strikeout_open] = ACTIONS(3412), - [sym__subscript_open] = ACTIONS(3412), - [sym__superscript_open] = ACTIONS(3412), - [sym__inline_note_start_token] = ACTIONS(3412), - [sym__strong_emphasis_open_star] = ACTIONS(3412), - [sym__strong_emphasis_open_underscore] = ACTIONS(3412), - [sym__emphasis_open_star] = ACTIONS(3412), - [sym__emphasis_open_underscore] = ACTIONS(3412), - [sym_inline_note_reference] = ACTIONS(3412), - [sym_html_element] = ACTIONS(3412), + [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(392)] = { - [anon_sym_COLON] = ACTIONS(3416), - [sym_entity_reference] = ACTIONS(3416), - [sym_numeric_character_reference] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [anon_sym_BANG_LBRACK] = ACTIONS(3416), - [anon_sym_DOLLAR] = ACTIONS(3418), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3416), - [aux_sym_pandoc_str_token1] = ACTIONS(3418), - [anon_sym_PIPE] = ACTIONS(3416), - [aux_sym__prose_punctuation_token1] = ACTIONS(3418), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3418), - [sym__line_ending] = ACTIONS(3416), - [sym__soft_line_ending] = ACTIONS(3416), - [sym__block_close] = ACTIONS(3416), - [sym__block_quote_start] = ACTIONS(3416), - [sym_atx_h1_marker] = ACTIONS(3416), - [sym_atx_h2_marker] = ACTIONS(3416), - [sym_atx_h3_marker] = ACTIONS(3416), - [sym_atx_h4_marker] = ACTIONS(3416), - [sym_atx_h5_marker] = ACTIONS(3416), - [sym_atx_h6_marker] = ACTIONS(3416), - [sym__thematic_break] = ACTIONS(3416), - [sym__list_marker_minus] = ACTIONS(3416), - [sym__list_marker_plus] = ACTIONS(3416), - [sym__list_marker_star] = ACTIONS(3416), - [sym__list_marker_parenthesis] = ACTIONS(3416), - [sym__list_marker_dot] = ACTIONS(3416), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_example] = ACTIONS(3416), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3416), - [sym__fenced_code_block_start_backtick] = ACTIONS(3416), - [sym_minus_metadata] = ACTIONS(3416), - [sym__pipe_table_start] = ACTIONS(3416), - [sym__fenced_div_start] = ACTIONS(3416), - [sym__fenced_div_end] = ACTIONS(3416), - [sym_ref_id_specifier] = ACTIONS(3416), - [sym__code_span_start] = ACTIONS(3416), - [sym__html_comment] = ACTIONS(3416), - [sym__autolink] = ACTIONS(3416), - [sym__highlight_span_start] = ACTIONS(3416), - [sym__insert_span_start] = ACTIONS(3416), - [sym__delete_span_start] = ACTIONS(3416), - [sym__edit_comment_span_start] = ACTIONS(3416), - [sym__single_quote_span_open] = ACTIONS(3416), - [sym__double_quote_span_open] = ACTIONS(3416), - [sym__shortcode_open_escaped] = ACTIONS(3416), - [sym__shortcode_open] = ACTIONS(3416), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3416), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3416), - [sym__cite_author_in_text] = ACTIONS(3416), - [sym__cite_suppress_author] = ACTIONS(3416), - [sym__strikeout_open] = ACTIONS(3416), - [sym__subscript_open] = ACTIONS(3416), - [sym__superscript_open] = ACTIONS(3416), - [sym__inline_note_start_token] = ACTIONS(3416), - [sym__strong_emphasis_open_star] = ACTIONS(3416), - [sym__strong_emphasis_open_underscore] = ACTIONS(3416), - [sym__emphasis_open_star] = ACTIONS(3416), - [sym__emphasis_open_underscore] = ACTIONS(3416), - [sym_inline_note_reference] = ACTIONS(3416), - [sym_html_element] = ACTIONS(3416), + [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(393)] = { - [anon_sym_COLON] = ACTIONS(3420), - [sym_entity_reference] = ACTIONS(3420), - [sym_numeric_character_reference] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3420), - [anon_sym_BANG_LBRACK] = ACTIONS(3420), - [anon_sym_DOLLAR] = ACTIONS(3422), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3420), - [aux_sym_pandoc_str_token1] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3420), - [aux_sym__prose_punctuation_token1] = ACTIONS(3422), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3422), - [sym__line_ending] = ACTIONS(3420), - [sym__soft_line_ending] = ACTIONS(3420), - [sym__block_close] = ACTIONS(3420), - [sym__block_quote_start] = ACTIONS(3420), - [sym_atx_h1_marker] = ACTIONS(3420), - [sym_atx_h2_marker] = ACTIONS(3420), - [sym_atx_h3_marker] = ACTIONS(3420), - [sym_atx_h4_marker] = ACTIONS(3420), - [sym_atx_h5_marker] = ACTIONS(3420), - [sym_atx_h6_marker] = ACTIONS(3420), - [sym__thematic_break] = ACTIONS(3420), - [sym__list_marker_minus] = ACTIONS(3420), - [sym__list_marker_plus] = ACTIONS(3420), - [sym__list_marker_star] = ACTIONS(3420), - [sym__list_marker_parenthesis] = ACTIONS(3420), - [sym__list_marker_dot] = ACTIONS(3420), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_example] = ACTIONS(3420), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3420), - [sym__fenced_code_block_start_backtick] = ACTIONS(3420), - [sym_minus_metadata] = ACTIONS(3420), - [sym__pipe_table_start] = ACTIONS(3420), - [sym__fenced_div_start] = ACTIONS(3420), - [sym__fenced_div_end] = ACTIONS(3420), - [sym_ref_id_specifier] = ACTIONS(3420), - [sym__code_span_start] = ACTIONS(3420), - [sym__html_comment] = ACTIONS(3420), - [sym__autolink] = ACTIONS(3420), - [sym__highlight_span_start] = ACTIONS(3420), - [sym__insert_span_start] = ACTIONS(3420), - [sym__delete_span_start] = ACTIONS(3420), - [sym__edit_comment_span_start] = ACTIONS(3420), - [sym__single_quote_span_open] = ACTIONS(3420), - [sym__double_quote_span_open] = ACTIONS(3420), - [sym__shortcode_open_escaped] = ACTIONS(3420), - [sym__shortcode_open] = ACTIONS(3420), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3420), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3420), - [sym__cite_author_in_text] = ACTIONS(3420), - [sym__cite_suppress_author] = ACTIONS(3420), - [sym__strikeout_open] = ACTIONS(3420), - [sym__subscript_open] = ACTIONS(3420), - [sym__superscript_open] = ACTIONS(3420), - [sym__inline_note_start_token] = ACTIONS(3420), - [sym__strong_emphasis_open_star] = ACTIONS(3420), - [sym__strong_emphasis_open_underscore] = ACTIONS(3420), - [sym__emphasis_open_star] = ACTIONS(3420), - [sym__emphasis_open_underscore] = ACTIONS(3420), - [sym_inline_note_reference] = ACTIONS(3420), - [sym_html_element] = ACTIONS(3420), + [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(394)] = { - [anon_sym_COLON] = ACTIONS(3424), - [sym_entity_reference] = ACTIONS(3424), - [sym_numeric_character_reference] = ACTIONS(3424), - [anon_sym_LBRACK] = ACTIONS(3424), - [anon_sym_BANG_LBRACK] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3426), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3424), - [aux_sym_pandoc_str_token1] = ACTIONS(3426), - [anon_sym_PIPE] = ACTIONS(3424), - [aux_sym__prose_punctuation_token1] = ACTIONS(3426), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3426), - [sym__line_ending] = ACTIONS(3424), - [sym__soft_line_ending] = ACTIONS(3424), - [sym__block_close] = ACTIONS(3424), - [sym__block_quote_start] = ACTIONS(3424), - [sym_atx_h1_marker] = ACTIONS(3424), - [sym_atx_h2_marker] = ACTIONS(3424), - [sym_atx_h3_marker] = ACTIONS(3424), - [sym_atx_h4_marker] = ACTIONS(3424), - [sym_atx_h5_marker] = ACTIONS(3424), - [sym_atx_h6_marker] = ACTIONS(3424), - [sym__thematic_break] = ACTIONS(3424), - [sym__list_marker_minus] = ACTIONS(3424), - [sym__list_marker_plus] = ACTIONS(3424), - [sym__list_marker_star] = ACTIONS(3424), - [sym__list_marker_parenthesis] = ACTIONS(3424), - [sym__list_marker_dot] = ACTIONS(3424), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_example] = ACTIONS(3424), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3424), - [sym__fenced_code_block_start_backtick] = ACTIONS(3424), - [sym_minus_metadata] = ACTIONS(3424), - [sym__pipe_table_start] = ACTIONS(3424), - [sym__fenced_div_start] = ACTIONS(3424), - [sym__fenced_div_end] = ACTIONS(3424), - [sym_ref_id_specifier] = ACTIONS(3424), - [sym__code_span_start] = ACTIONS(3424), - [sym__html_comment] = ACTIONS(3424), - [sym__autolink] = ACTIONS(3424), - [sym__highlight_span_start] = ACTIONS(3424), - [sym__insert_span_start] = ACTIONS(3424), - [sym__delete_span_start] = ACTIONS(3424), - [sym__edit_comment_span_start] = ACTIONS(3424), - [sym__single_quote_span_open] = ACTIONS(3424), - [sym__double_quote_span_open] = ACTIONS(3424), - [sym__shortcode_open_escaped] = ACTIONS(3424), - [sym__shortcode_open] = ACTIONS(3424), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3424), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3424), - [sym__cite_author_in_text] = ACTIONS(3424), - [sym__cite_suppress_author] = ACTIONS(3424), - [sym__strikeout_open] = ACTIONS(3424), - [sym__subscript_open] = ACTIONS(3424), - [sym__superscript_open] = ACTIONS(3424), - [sym__inline_note_start_token] = ACTIONS(3424), - [sym__strong_emphasis_open_star] = ACTIONS(3424), - [sym__strong_emphasis_open_underscore] = ACTIONS(3424), - [sym__emphasis_open_star] = ACTIONS(3424), - [sym__emphasis_open_underscore] = ACTIONS(3424), - [sym_inline_note_reference] = ACTIONS(3424), - [sym_html_element] = ACTIONS(3424), + [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(395)] = { - [anon_sym_COLON] = ACTIONS(3428), - [sym_entity_reference] = ACTIONS(3428), - [sym_numeric_character_reference] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_BANG_LBRACK] = ACTIONS(3428), - [anon_sym_DOLLAR] = ACTIONS(3430), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3428), - [aux_sym_pandoc_str_token1] = ACTIONS(3430), - [anon_sym_PIPE] = ACTIONS(3428), - [aux_sym__prose_punctuation_token1] = ACTIONS(3430), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3430), - [sym__line_ending] = ACTIONS(3428), - [sym__soft_line_ending] = ACTIONS(3428), - [sym__block_close] = ACTIONS(3428), - [sym__block_quote_start] = ACTIONS(3428), - [sym_atx_h1_marker] = ACTIONS(3428), - [sym_atx_h2_marker] = ACTIONS(3428), - [sym_atx_h3_marker] = ACTIONS(3428), - [sym_atx_h4_marker] = ACTIONS(3428), - [sym_atx_h5_marker] = ACTIONS(3428), - [sym_atx_h6_marker] = ACTIONS(3428), - [sym__thematic_break] = ACTIONS(3428), - [sym__list_marker_minus] = ACTIONS(3428), - [sym__list_marker_plus] = ACTIONS(3428), - [sym__list_marker_star] = ACTIONS(3428), - [sym__list_marker_parenthesis] = ACTIONS(3428), - [sym__list_marker_dot] = ACTIONS(3428), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_example] = ACTIONS(3428), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3428), - [sym__fenced_code_block_start_backtick] = ACTIONS(3428), - [sym_minus_metadata] = ACTIONS(3428), - [sym__pipe_table_start] = ACTIONS(3428), - [sym__fenced_div_start] = ACTIONS(3428), - [sym__fenced_div_end] = ACTIONS(3428), - [sym_ref_id_specifier] = ACTIONS(3428), - [sym__code_span_start] = ACTIONS(3428), - [sym__html_comment] = ACTIONS(3428), - [sym__autolink] = ACTIONS(3428), - [sym__highlight_span_start] = ACTIONS(3428), - [sym__insert_span_start] = ACTIONS(3428), - [sym__delete_span_start] = ACTIONS(3428), - [sym__edit_comment_span_start] = ACTIONS(3428), - [sym__single_quote_span_open] = ACTIONS(3428), - [sym__double_quote_span_open] = ACTIONS(3428), - [sym__shortcode_open_escaped] = ACTIONS(3428), - [sym__shortcode_open] = ACTIONS(3428), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3428), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3428), - [sym__cite_author_in_text] = ACTIONS(3428), - [sym__cite_suppress_author] = ACTIONS(3428), - [sym__strikeout_open] = ACTIONS(3428), - [sym__subscript_open] = ACTIONS(3428), - [sym__superscript_open] = ACTIONS(3428), - [sym__inline_note_start_token] = ACTIONS(3428), - [sym__strong_emphasis_open_star] = ACTIONS(3428), - [sym__strong_emphasis_open_underscore] = ACTIONS(3428), - [sym__emphasis_open_star] = ACTIONS(3428), - [sym__emphasis_open_underscore] = ACTIONS(3428), - [sym_inline_note_reference] = ACTIONS(3428), - [sym_html_element] = ACTIONS(3428), + [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(396)] = { - [anon_sym_COLON] = ACTIONS(3432), - [sym_entity_reference] = ACTIONS(3432), - [sym_numeric_character_reference] = ACTIONS(3432), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_BANG_LBRACK] = ACTIONS(3432), - [anon_sym_DOLLAR] = ACTIONS(3434), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3432), - [aux_sym_pandoc_str_token1] = ACTIONS(3434), - [anon_sym_PIPE] = ACTIONS(3432), - [aux_sym__prose_punctuation_token1] = ACTIONS(3434), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3434), - [sym__line_ending] = ACTIONS(3432), - [sym__soft_line_ending] = ACTIONS(3432), - [sym__block_close] = ACTIONS(3432), - [sym__block_quote_start] = ACTIONS(3432), - [sym_atx_h1_marker] = ACTIONS(3432), - [sym_atx_h2_marker] = ACTIONS(3432), - [sym_atx_h3_marker] = ACTIONS(3432), - [sym_atx_h4_marker] = ACTIONS(3432), - [sym_atx_h5_marker] = ACTIONS(3432), - [sym_atx_h6_marker] = ACTIONS(3432), - [sym__thematic_break] = ACTIONS(3432), - [sym__list_marker_minus] = ACTIONS(3432), - [sym__list_marker_plus] = ACTIONS(3432), - [sym__list_marker_star] = ACTIONS(3432), - [sym__list_marker_parenthesis] = ACTIONS(3432), - [sym__list_marker_dot] = ACTIONS(3432), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_example] = ACTIONS(3432), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3432), - [sym__fenced_code_block_start_backtick] = ACTIONS(3432), - [sym_minus_metadata] = ACTIONS(3432), - [sym__pipe_table_start] = ACTIONS(3432), - [sym__fenced_div_start] = ACTIONS(3432), - [sym__fenced_div_end] = ACTIONS(3432), - [sym_ref_id_specifier] = ACTIONS(3432), - [sym__code_span_start] = ACTIONS(3432), - [sym__html_comment] = ACTIONS(3432), - [sym__autolink] = ACTIONS(3432), - [sym__highlight_span_start] = ACTIONS(3432), - [sym__insert_span_start] = ACTIONS(3432), - [sym__delete_span_start] = ACTIONS(3432), - [sym__edit_comment_span_start] = ACTIONS(3432), - [sym__single_quote_span_open] = ACTIONS(3432), - [sym__double_quote_span_open] = ACTIONS(3432), - [sym__shortcode_open_escaped] = ACTIONS(3432), - [sym__shortcode_open] = ACTIONS(3432), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3432), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3432), - [sym__cite_author_in_text] = ACTIONS(3432), - [sym__cite_suppress_author] = ACTIONS(3432), - [sym__strikeout_open] = ACTIONS(3432), - [sym__subscript_open] = ACTIONS(3432), - [sym__superscript_open] = ACTIONS(3432), - [sym__inline_note_start_token] = ACTIONS(3432), - [sym__strong_emphasis_open_star] = ACTIONS(3432), - [sym__strong_emphasis_open_underscore] = ACTIONS(3432), - [sym__emphasis_open_star] = ACTIONS(3432), - [sym__emphasis_open_underscore] = ACTIONS(3432), - [sym_inline_note_reference] = ACTIONS(3432), - [sym_html_element] = ACTIONS(3432), + [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(397)] = { - [anon_sym_COLON] = ACTIONS(3436), - [sym_entity_reference] = ACTIONS(3436), - [sym_numeric_character_reference] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_BANG_LBRACK] = ACTIONS(3436), - [anon_sym_DOLLAR] = ACTIONS(3438), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3436), - [aux_sym_pandoc_str_token1] = ACTIONS(3438), - [anon_sym_PIPE] = ACTIONS(3436), - [aux_sym__prose_punctuation_token1] = ACTIONS(3438), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3438), - [sym__line_ending] = ACTIONS(3436), - [sym__soft_line_ending] = ACTIONS(3436), - [sym__block_close] = ACTIONS(3436), - [sym__block_quote_start] = ACTIONS(3436), - [sym_atx_h1_marker] = ACTIONS(3436), - [sym_atx_h2_marker] = ACTIONS(3436), - [sym_atx_h3_marker] = ACTIONS(3436), - [sym_atx_h4_marker] = ACTIONS(3436), - [sym_atx_h5_marker] = ACTIONS(3436), - [sym_atx_h6_marker] = ACTIONS(3436), - [sym__thematic_break] = ACTIONS(3436), - [sym__list_marker_minus] = ACTIONS(3436), - [sym__list_marker_plus] = ACTIONS(3436), - [sym__list_marker_star] = ACTIONS(3436), - [sym__list_marker_parenthesis] = ACTIONS(3436), - [sym__list_marker_dot] = ACTIONS(3436), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_example] = ACTIONS(3436), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3436), - [sym__fenced_code_block_start_backtick] = ACTIONS(3436), - [sym_minus_metadata] = ACTIONS(3436), - [sym__pipe_table_start] = ACTIONS(3436), - [sym__fenced_div_start] = ACTIONS(3436), - [sym__fenced_div_end] = ACTIONS(3436), - [sym_ref_id_specifier] = ACTIONS(3436), - [sym__code_span_start] = ACTIONS(3436), - [sym__html_comment] = ACTIONS(3436), - [sym__autolink] = ACTIONS(3436), - [sym__highlight_span_start] = ACTIONS(3436), - [sym__insert_span_start] = ACTIONS(3436), - [sym__delete_span_start] = ACTIONS(3436), - [sym__edit_comment_span_start] = ACTIONS(3436), - [sym__single_quote_span_open] = ACTIONS(3436), - [sym__double_quote_span_open] = ACTIONS(3436), - [sym__shortcode_open_escaped] = ACTIONS(3436), - [sym__shortcode_open] = ACTIONS(3436), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3436), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3436), - [sym__cite_author_in_text] = ACTIONS(3436), - [sym__cite_suppress_author] = ACTIONS(3436), - [sym__strikeout_open] = ACTIONS(3436), - [sym__subscript_open] = ACTIONS(3436), - [sym__superscript_open] = ACTIONS(3436), - [sym__inline_note_start_token] = ACTIONS(3436), - [sym__strong_emphasis_open_star] = ACTIONS(3436), - [sym__strong_emphasis_open_underscore] = ACTIONS(3436), - [sym__emphasis_open_star] = ACTIONS(3436), - [sym__emphasis_open_underscore] = ACTIONS(3436), - [sym_inline_note_reference] = ACTIONS(3436), - [sym_html_element] = ACTIONS(3436), + [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(398)] = { - [anon_sym_COLON] = ACTIONS(3440), - [sym_entity_reference] = ACTIONS(3440), - [sym_numeric_character_reference] = ACTIONS(3440), - [anon_sym_LBRACK] = ACTIONS(3440), - [anon_sym_BANG_LBRACK] = ACTIONS(3440), - [anon_sym_DOLLAR] = ACTIONS(3442), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3440), - [aux_sym_pandoc_str_token1] = ACTIONS(3442), - [anon_sym_PIPE] = ACTIONS(3440), - [aux_sym__prose_punctuation_token1] = ACTIONS(3442), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3442), - [sym__line_ending] = ACTIONS(3440), - [sym__soft_line_ending] = ACTIONS(3440), - [sym__block_close] = ACTIONS(3440), - [sym__block_quote_start] = ACTIONS(3440), - [sym_atx_h1_marker] = ACTIONS(3440), - [sym_atx_h2_marker] = ACTIONS(3440), - [sym_atx_h3_marker] = ACTIONS(3440), - [sym_atx_h4_marker] = ACTIONS(3440), - [sym_atx_h5_marker] = ACTIONS(3440), - [sym_atx_h6_marker] = ACTIONS(3440), - [sym__thematic_break] = ACTIONS(3440), - [sym__list_marker_minus] = ACTIONS(3440), - [sym__list_marker_plus] = ACTIONS(3440), - [sym__list_marker_star] = ACTIONS(3440), - [sym__list_marker_parenthesis] = ACTIONS(3440), - [sym__list_marker_dot] = ACTIONS(3440), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_example] = ACTIONS(3440), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3440), - [sym__fenced_code_block_start_backtick] = ACTIONS(3440), - [sym_minus_metadata] = ACTIONS(3440), - [sym__pipe_table_start] = ACTIONS(3440), - [sym__fenced_div_start] = ACTIONS(3440), - [sym__fenced_div_end] = ACTIONS(3440), - [sym_ref_id_specifier] = ACTIONS(3440), - [sym__code_span_start] = ACTIONS(3440), - [sym__html_comment] = ACTIONS(3440), - [sym__autolink] = ACTIONS(3440), - [sym__highlight_span_start] = ACTIONS(3440), - [sym__insert_span_start] = ACTIONS(3440), - [sym__delete_span_start] = ACTIONS(3440), - [sym__edit_comment_span_start] = ACTIONS(3440), - [sym__single_quote_span_open] = ACTIONS(3440), - [sym__double_quote_span_open] = ACTIONS(3440), - [sym__shortcode_open_escaped] = ACTIONS(3440), - [sym__shortcode_open] = ACTIONS(3440), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3440), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3440), - [sym__cite_author_in_text] = ACTIONS(3440), - [sym__cite_suppress_author] = ACTIONS(3440), - [sym__strikeout_open] = ACTIONS(3440), - [sym__subscript_open] = ACTIONS(3440), - [sym__superscript_open] = ACTIONS(3440), - [sym__inline_note_start_token] = ACTIONS(3440), - [sym__strong_emphasis_open_star] = ACTIONS(3440), - [sym__strong_emphasis_open_underscore] = ACTIONS(3440), - [sym__emphasis_open_star] = ACTIONS(3440), - [sym__emphasis_open_underscore] = ACTIONS(3440), - [sym_inline_note_reference] = ACTIONS(3440), - [sym_html_element] = ACTIONS(3440), + [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(399)] = { - [anon_sym_COLON] = ACTIONS(3444), - [sym_entity_reference] = ACTIONS(3444), - [sym_numeric_character_reference] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_BANG_LBRACK] = ACTIONS(3444), - [anon_sym_DOLLAR] = ACTIONS(3446), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3444), - [aux_sym_pandoc_str_token1] = ACTIONS(3446), - [anon_sym_PIPE] = ACTIONS(3444), - [aux_sym__prose_punctuation_token1] = ACTIONS(3446), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3446), - [sym__line_ending] = ACTIONS(3444), - [sym__soft_line_ending] = ACTIONS(3444), - [sym__block_close] = ACTIONS(3444), - [sym__block_quote_start] = ACTIONS(3444), - [sym_atx_h1_marker] = ACTIONS(3444), - [sym_atx_h2_marker] = ACTIONS(3444), - [sym_atx_h3_marker] = ACTIONS(3444), - [sym_atx_h4_marker] = ACTIONS(3444), - [sym_atx_h5_marker] = ACTIONS(3444), - [sym_atx_h6_marker] = ACTIONS(3444), - [sym__thematic_break] = ACTIONS(3444), - [sym__list_marker_minus] = ACTIONS(3444), - [sym__list_marker_plus] = ACTIONS(3444), - [sym__list_marker_star] = ACTIONS(3444), - [sym__list_marker_parenthesis] = ACTIONS(3444), - [sym__list_marker_dot] = ACTIONS(3444), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_example] = ACTIONS(3444), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3444), - [sym__fenced_code_block_start_backtick] = ACTIONS(3444), - [sym_minus_metadata] = ACTIONS(3444), - [sym__pipe_table_start] = ACTIONS(3444), - [sym__fenced_div_start] = ACTIONS(3444), - [sym__fenced_div_end] = ACTIONS(3444), - [sym_ref_id_specifier] = ACTIONS(3444), - [sym__code_span_start] = ACTIONS(3444), - [sym__html_comment] = ACTIONS(3444), - [sym__autolink] = ACTIONS(3444), - [sym__highlight_span_start] = ACTIONS(3444), - [sym__insert_span_start] = ACTIONS(3444), - [sym__delete_span_start] = ACTIONS(3444), - [sym__edit_comment_span_start] = ACTIONS(3444), - [sym__single_quote_span_open] = ACTIONS(3444), - [sym__double_quote_span_open] = ACTIONS(3444), - [sym__shortcode_open_escaped] = ACTIONS(3444), - [sym__shortcode_open] = ACTIONS(3444), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3444), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3444), - [sym__cite_author_in_text] = ACTIONS(3444), - [sym__cite_suppress_author] = ACTIONS(3444), - [sym__strikeout_open] = ACTIONS(3444), - [sym__subscript_open] = ACTIONS(3444), - [sym__superscript_open] = ACTIONS(3444), - [sym__inline_note_start_token] = ACTIONS(3444), - [sym__strong_emphasis_open_star] = ACTIONS(3444), - [sym__strong_emphasis_open_underscore] = ACTIONS(3444), - [sym__emphasis_open_star] = ACTIONS(3444), - [sym__emphasis_open_underscore] = ACTIONS(3444), - [sym_inline_note_reference] = ACTIONS(3444), - [sym_html_element] = ACTIONS(3444), + [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(400)] = { - [anon_sym_COLON] = ACTIONS(3448), - [sym_entity_reference] = ACTIONS(3448), - [sym_numeric_character_reference] = ACTIONS(3448), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_BANG_LBRACK] = ACTIONS(3448), - [anon_sym_DOLLAR] = ACTIONS(3450), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3448), - [anon_sym_LBRACE] = ACTIONS(3448), - [aux_sym_pandoc_str_token1] = ACTIONS(3450), - [anon_sym_PIPE] = ACTIONS(3448), - [aux_sym__prose_punctuation_token1] = ACTIONS(3450), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3450), - [sym__line_ending] = ACTIONS(3448), - [sym__soft_line_ending] = ACTIONS(3448), - [sym__block_close] = ACTIONS(3448), - [sym__block_quote_start] = ACTIONS(3448), - [sym_atx_h1_marker] = ACTIONS(3448), - [sym_atx_h2_marker] = ACTIONS(3448), - [sym_atx_h3_marker] = ACTIONS(3448), - [sym_atx_h4_marker] = ACTIONS(3448), - [sym_atx_h5_marker] = ACTIONS(3448), - [sym_atx_h6_marker] = ACTIONS(3448), - [sym__thematic_break] = ACTIONS(3448), - [sym__list_marker_minus] = ACTIONS(3448), - [sym__list_marker_plus] = ACTIONS(3448), - [sym__list_marker_star] = ACTIONS(3448), - [sym__list_marker_parenthesis] = ACTIONS(3448), - [sym__list_marker_dot] = ACTIONS(3448), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_example] = ACTIONS(3448), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3448), - [sym__fenced_code_block_start_backtick] = ACTIONS(3448), - [sym_minus_metadata] = ACTIONS(3448), - [sym__pipe_table_start] = ACTIONS(3448), - [sym__fenced_div_start] = ACTIONS(3448), - [sym__fenced_div_end] = ACTIONS(3448), - [sym_ref_id_specifier] = ACTIONS(3448), - [sym__code_span_start] = ACTIONS(3448), - [sym__html_comment] = ACTIONS(3448), - [sym__autolink] = ACTIONS(3448), - [sym__highlight_span_start] = ACTIONS(3448), - [sym__insert_span_start] = ACTIONS(3448), - [sym__delete_span_start] = ACTIONS(3448), - [sym__edit_comment_span_start] = ACTIONS(3448), - [sym__single_quote_span_open] = ACTIONS(3448), - [sym__double_quote_span_open] = ACTIONS(3448), - [sym__shortcode_open_escaped] = ACTIONS(3448), - [sym__shortcode_open] = ACTIONS(3448), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3448), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3448), - [sym__cite_author_in_text] = ACTIONS(3448), - [sym__cite_suppress_author] = ACTIONS(3448), - [sym__strikeout_open] = ACTIONS(3448), - [sym__subscript_open] = ACTIONS(3448), - [sym__superscript_open] = ACTIONS(3448), - [sym__inline_note_start_token] = ACTIONS(3448), - [sym__strong_emphasis_open_star] = ACTIONS(3448), - [sym__strong_emphasis_open_underscore] = ACTIONS(3448), - [sym__emphasis_open_star] = ACTIONS(3448), - [sym__emphasis_open_underscore] = ACTIONS(3448), - [sym_inline_note_reference] = ACTIONS(3448), - [sym_html_element] = ACTIONS(3448), + [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(401)] = { - [anon_sym_COLON] = ACTIONS(3452), - [sym_entity_reference] = ACTIONS(3452), - [sym_numeric_character_reference] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_BANG_LBRACK] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3452), - [aux_sym_pandoc_str_token1] = ACTIONS(3454), - [anon_sym_PIPE] = ACTIONS(3452), - [aux_sym__prose_punctuation_token1] = ACTIONS(3454), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3454), - [sym__line_ending] = ACTIONS(3452), - [sym__soft_line_ending] = ACTIONS(3452), - [sym__block_close] = ACTIONS(3452), - [sym__block_quote_start] = ACTIONS(3452), - [sym_atx_h1_marker] = ACTIONS(3452), - [sym_atx_h2_marker] = ACTIONS(3452), - [sym_atx_h3_marker] = ACTIONS(3452), - [sym_atx_h4_marker] = ACTIONS(3452), - [sym_atx_h5_marker] = ACTIONS(3452), - [sym_atx_h6_marker] = ACTIONS(3452), - [sym__thematic_break] = ACTIONS(3452), - [sym__list_marker_minus] = ACTIONS(3452), - [sym__list_marker_plus] = ACTIONS(3452), - [sym__list_marker_star] = ACTIONS(3452), - [sym__list_marker_parenthesis] = ACTIONS(3452), - [sym__list_marker_dot] = ACTIONS(3452), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_example] = ACTIONS(3452), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3452), - [sym__fenced_code_block_start_backtick] = ACTIONS(3452), - [sym_minus_metadata] = ACTIONS(3452), - [sym__pipe_table_start] = ACTIONS(3452), - [sym__fenced_div_start] = ACTIONS(3452), - [sym__fenced_div_end] = ACTIONS(3452), - [sym_ref_id_specifier] = ACTIONS(3452), - [sym__code_span_start] = ACTIONS(3452), - [sym__html_comment] = ACTIONS(3452), - [sym__autolink] = ACTIONS(3452), - [sym__highlight_span_start] = ACTIONS(3452), - [sym__insert_span_start] = ACTIONS(3452), - [sym__delete_span_start] = ACTIONS(3452), - [sym__edit_comment_span_start] = ACTIONS(3452), - [sym__single_quote_span_open] = ACTIONS(3452), - [sym__double_quote_span_open] = ACTIONS(3452), - [sym__shortcode_open_escaped] = ACTIONS(3452), - [sym__shortcode_open] = ACTIONS(3452), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3452), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3452), - [sym__cite_author_in_text] = ACTIONS(3452), - [sym__cite_suppress_author] = ACTIONS(3452), - [sym__strikeout_open] = ACTIONS(3452), - [sym__subscript_open] = ACTIONS(3452), - [sym__superscript_open] = ACTIONS(3452), - [sym__inline_note_start_token] = ACTIONS(3452), - [sym__strong_emphasis_open_star] = ACTIONS(3452), - [sym__strong_emphasis_open_underscore] = ACTIONS(3452), - [sym__emphasis_open_star] = ACTIONS(3452), - [sym__emphasis_open_underscore] = ACTIONS(3452), - [sym_inline_note_reference] = ACTIONS(3452), - [sym_html_element] = ACTIONS(3452), + [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(402)] = { - [sym_pandoc_span] = STATE(403), - [sym_pandoc_image] = STATE(403), - [sym_pandoc_math] = STATE(403), - [sym_pandoc_display_math] = STATE(403), - [sym_pandoc_code_span] = STATE(403), - [sym_pandoc_single_quote] = STATE(403), - [sym_pandoc_double_quote] = STATE(403), - [sym_insert] = STATE(403), - [sym_delete] = STATE(403), - [sym_edit_comment] = STATE(403), - [sym_highlight] = STATE(403), - [sym__pandoc_attr_specifier] = STATE(403), - [sym__inline_element] = STATE(403), - [sym_shortcode_escaped] = STATE(403), - [sym_shortcode] = STATE(403), - [sym_citation] = STATE(403), - [sym_inline_note] = STATE(403), - [sym_pandoc_superscript] = STATE(403), - [sym_pandoc_subscript] = STATE(403), - [sym_pandoc_strikeout] = STATE(403), - [sym_pandoc_emph] = STATE(403), - [sym_pandoc_strong] = STATE(403), - [sym_pandoc_str] = STATE(403), - [sym__prose_punctuation] = STATE(403), - [sym_pandoc_line_break] = STATE(403), - [aux_sym__line_repeat1] = STATE(403), - [sym_entity_reference] = ACTIONS(3456), - [sym_numeric_character_reference] = ACTIONS(3456), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3458), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(3460), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(3462), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(3464), - [sym__soft_line_ending] = ACTIONS(3460), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(3456), - [sym__autolink] = ACTIONS(3456), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(3456), - [sym_html_element] = ACTIONS(3456), + [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(403)] = { - [sym_pandoc_span] = STATE(404), - [sym_pandoc_image] = STATE(404), - [sym_pandoc_math] = STATE(404), - [sym_pandoc_display_math] = STATE(404), - [sym_pandoc_code_span] = STATE(404), - [sym_pandoc_single_quote] = STATE(404), - [sym_pandoc_double_quote] = STATE(404), - [sym_insert] = STATE(404), - [sym_delete] = STATE(404), - [sym_edit_comment] = STATE(404), - [sym_highlight] = STATE(404), - [sym__pandoc_attr_specifier] = STATE(404), - [sym__inline_element] = STATE(404), - [sym_shortcode_escaped] = STATE(404), - [sym_shortcode] = STATE(404), - [sym_citation] = STATE(404), - [sym_inline_note] = STATE(404), - [sym_pandoc_superscript] = STATE(404), - [sym_pandoc_subscript] = STATE(404), - [sym_pandoc_strikeout] = STATE(404), - [sym_pandoc_emph] = STATE(404), - [sym_pandoc_strong] = STATE(404), - [sym_pandoc_str] = STATE(404), - [sym__prose_punctuation] = STATE(404), - [sym_pandoc_line_break] = STATE(404), - [aux_sym__line_repeat1] = STATE(404), - [sym_entity_reference] = ACTIONS(3466), - [sym_numeric_character_reference] = ACTIONS(3466), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3468), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(3470), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(3472), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__whitespace] = ACTIONS(3464), - [sym__soft_line_ending] = ACTIONS(3470), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(3466), - [sym__autolink] = ACTIONS(3466), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(3466), - [sym_html_element] = ACTIONS(3466), + [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(404)] = { - [sym_pandoc_span] = STATE(404), - [sym_pandoc_image] = STATE(404), - [sym_pandoc_math] = STATE(404), - [sym_pandoc_display_math] = STATE(404), - [sym_pandoc_code_span] = STATE(404), - [sym_pandoc_single_quote] = STATE(404), - [sym_pandoc_double_quote] = STATE(404), - [sym_insert] = STATE(404), - [sym_delete] = STATE(404), - [sym_edit_comment] = STATE(404), - [sym_highlight] = STATE(404), - [sym__pandoc_attr_specifier] = STATE(404), - [sym__inline_element] = STATE(404), - [sym_shortcode_escaped] = STATE(404), - [sym_shortcode] = STATE(404), - [sym_citation] = STATE(404), - [sym_inline_note] = STATE(404), - [sym_pandoc_superscript] = STATE(404), - [sym_pandoc_subscript] = STATE(404), - [sym_pandoc_strikeout] = STATE(404), - [sym_pandoc_emph] = STATE(404), - [sym_pandoc_strong] = STATE(404), - [sym_pandoc_str] = STATE(404), - [sym__prose_punctuation] = STATE(404), - [sym_pandoc_line_break] = STATE(404), - [aux_sym__line_repeat1] = STATE(404), - [sym_entity_reference] = ACTIONS(3474), - [sym_numeric_character_reference] = ACTIONS(3474), - [anon_sym_LBRACK] = ACTIONS(3477), - [aux_sym_pandoc_span_token1] = ACTIONS(3480), - [anon_sym_BANG_LBRACK] = ACTIONS(3482), - [aux_sym_target_token1] = ACTIONS(3485), - [anon_sym_DOLLAR] = ACTIONS(3487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3493), - [aux_sym_pandoc_str_token1] = ACTIONS(3496), - [anon_sym_PIPE] = ACTIONS(3499), - [aux_sym__prose_punctuation_token1] = ACTIONS(3502), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3505), - [sym__whitespace] = ACTIONS(3508), - [sym__soft_line_ending] = ACTIONS(3485), - [sym__code_span_start] = ACTIONS(3511), - [sym__html_comment] = ACTIONS(3474), - [sym__autolink] = ACTIONS(3474), - [sym__highlight_span_start] = ACTIONS(3514), - [sym__insert_span_start] = ACTIONS(3517), - [sym__delete_span_start] = ACTIONS(3520), - [sym__edit_comment_span_start] = ACTIONS(3523), - [sym__single_quote_span_open] = ACTIONS(3526), - [sym__double_quote_span_open] = ACTIONS(3529), - [sym__shortcode_open_escaped] = ACTIONS(3532), - [sym__shortcode_open] = ACTIONS(3535), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3538), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3541), - [sym__cite_author_in_text] = ACTIONS(3544), - [sym__cite_suppress_author] = ACTIONS(3547), - [sym__strikeout_open] = ACTIONS(3550), - [sym__subscript_open] = ACTIONS(3553), - [sym__superscript_open] = ACTIONS(3556), - [sym__inline_note_start_token] = ACTIONS(3559), - [sym__strong_emphasis_open_star] = ACTIONS(3562), - [sym__strong_emphasis_open_underscore] = ACTIONS(3565), - [sym__emphasis_open_star] = ACTIONS(3568), - [sym__emphasis_open_underscore] = ACTIONS(3571), - [sym_inline_note_reference] = ACTIONS(3474), - [sym_html_element] = ACTIONS(3474), + [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(405)] = { - [anon_sym_COLON] = ACTIONS(3574), - [sym_entity_reference] = ACTIONS(3574), - [sym_numeric_character_reference] = ACTIONS(3574), - [anon_sym_LBRACK] = ACTIONS(3574), - [anon_sym_BANG_LBRACK] = ACTIONS(3574), - [anon_sym_DOLLAR] = ACTIONS(3576), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3574), - [anon_sym_LBRACE] = ACTIONS(3574), - [aux_sym_pandoc_str_token1] = ACTIONS(3576), - [anon_sym_PIPE] = ACTIONS(3574), - [aux_sym__prose_punctuation_token1] = ACTIONS(3576), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3576), - [sym__line_ending] = ACTIONS(3574), - [sym__soft_line_ending] = ACTIONS(3574), - [sym_block_continuation] = ACTIONS(3574), - [sym__block_quote_start] = ACTIONS(3574), - [sym_atx_h1_marker] = ACTIONS(3574), - [sym_atx_h2_marker] = ACTIONS(3574), - [sym_atx_h3_marker] = ACTIONS(3574), - [sym_atx_h4_marker] = ACTIONS(3574), - [sym_atx_h5_marker] = ACTIONS(3574), - [sym_atx_h6_marker] = ACTIONS(3574), - [sym__thematic_break] = ACTIONS(3574), - [sym__list_marker_minus] = ACTIONS(3574), - [sym__list_marker_plus] = ACTIONS(3574), - [sym__list_marker_star] = ACTIONS(3574), - [sym__list_marker_parenthesis] = ACTIONS(3574), - [sym__list_marker_dot] = ACTIONS(3574), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3574), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3574), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3574), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3574), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3574), - [sym__list_marker_example] = ACTIONS(3574), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3574), - [sym__fenced_code_block_start_backtick] = ACTIONS(3574), - [sym__blank_line_start] = ACTIONS(3574), - [sym_minus_metadata] = ACTIONS(3574), - [sym__pipe_table_start] = ACTIONS(3574), - [sym__fenced_div_start] = ACTIONS(3574), - [sym_ref_id_specifier] = ACTIONS(3574), - [sym__code_span_start] = ACTIONS(3574), - [sym__html_comment] = ACTIONS(3574), - [sym__autolink] = ACTIONS(3574), - [sym__highlight_span_start] = ACTIONS(3574), - [sym__insert_span_start] = ACTIONS(3574), - [sym__delete_span_start] = ACTIONS(3574), - [sym__edit_comment_span_start] = ACTIONS(3574), - [sym__single_quote_span_open] = ACTIONS(3574), - [sym__double_quote_span_open] = ACTIONS(3574), - [sym__shortcode_open_escaped] = ACTIONS(3574), - [sym__shortcode_open] = ACTIONS(3574), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3574), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3574), - [sym__cite_author_in_text] = ACTIONS(3574), - [sym__cite_suppress_author] = ACTIONS(3574), - [sym__strikeout_open] = ACTIONS(3574), - [sym__subscript_open] = ACTIONS(3574), - [sym__superscript_open] = ACTIONS(3574), - [sym__inline_note_start_token] = ACTIONS(3574), - [sym__strong_emphasis_open_star] = ACTIONS(3574), - [sym__strong_emphasis_open_underscore] = ACTIONS(3574), - [sym__emphasis_open_star] = ACTIONS(3574), - [sym__emphasis_open_underscore] = ACTIONS(3574), - [sym_inline_note_reference] = ACTIONS(3574), - [sym_html_element] = ACTIONS(3574), + [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), + [aux_sym__prose_punctuation_token1] = ACTIONS(2701), + [sym__line_ending] = ACTIONS(2699), + [sym__soft_line_ending] = ACTIONS(2699), + [sym_block_continuation] = ACTIONS(3405), + [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(406)] = { - [sym_pipe_table_cell] = STATE(2659), - [sym_pandoc_span] = STATE(304), - [sym_pandoc_image] = STATE(304), - [sym_pandoc_math] = STATE(304), - [sym_pandoc_display_math] = STATE(304), - [sym_pandoc_code_span] = STATE(304), - [sym_pandoc_single_quote] = STATE(304), - [sym_pandoc_double_quote] = STATE(304), - [sym_insert] = STATE(304), - [sym_delete] = STATE(304), - [sym_edit_comment] = STATE(304), - [sym_highlight] = STATE(304), - [sym__pandoc_attr_specifier] = STATE(304), - [sym__line_with_maybe_spaces] = STATE(2636), - [sym__inline_element] = STATE(304), - [sym_shortcode_escaped] = STATE(304), - [sym_shortcode] = STATE(304), - [sym_citation] = STATE(304), - [sym_inline_note] = STATE(304), - [sym_pandoc_superscript] = STATE(304), - [sym_pandoc_subscript] = STATE(304), - [sym_pandoc_strikeout] = STATE(304), - [sym_pandoc_emph] = STATE(304), - [sym_pandoc_strong] = STATE(304), - [sym_pandoc_str] = STATE(304), - [sym__prose_punctuation] = STATE(304), - [sym_pandoc_line_break] = STATE(304), - [aux_sym_pipe_table_row_repeat1] = STATE(176), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(304), - [sym_entity_reference] = ACTIONS(1991), - [sym_numeric_character_reference] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_BANG_LBRACK] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(2001), - [aux_sym_pandoc_str_token1] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2005), - [aux_sym__prose_punctuation_token1] = ACTIONS(2007), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2009), - [sym__whitespace] = ACTIONS(3578), - [sym__code_span_start] = ACTIONS(2015), - [sym__html_comment] = ACTIONS(1991), - [sym__autolink] = ACTIONS(1991), - [sym__highlight_span_start] = ACTIONS(2017), - [sym__insert_span_start] = ACTIONS(2019), - [sym__delete_span_start] = ACTIONS(2021), - [sym__edit_comment_span_start] = ACTIONS(2023), - [sym__single_quote_span_open] = ACTIONS(2025), - [sym__double_quote_span_open] = ACTIONS(2027), - [sym__shortcode_open_escaped] = ACTIONS(2029), - [sym__shortcode_open] = ACTIONS(2031), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2033), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2035), - [sym__cite_author_in_text] = ACTIONS(2037), - [sym__cite_suppress_author] = ACTIONS(2039), - [sym__strikeout_open] = ACTIONS(2041), - [sym__subscript_open] = ACTIONS(2043), - [sym__superscript_open] = ACTIONS(2045), - [sym__inline_note_start_token] = ACTIONS(2047), - [sym__strong_emphasis_open_star] = ACTIONS(2049), - [sym__strong_emphasis_open_underscore] = ACTIONS(2051), - [sym__emphasis_open_star] = ACTIONS(2053), - [sym__emphasis_open_underscore] = ACTIONS(2055), - [sym_inline_note_reference] = ACTIONS(1991), - [sym_html_element] = ACTIONS(1991), + [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(407)] = { - [sym__inlines] = STATE(2976), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1411), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3580), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2141), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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(408)] = { - [sym__inlines] = STATE(2977), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1413), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3582), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2141), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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(409)] = { - [anon_sym_COLON] = ACTIONS(3584), - [sym_entity_reference] = ACTIONS(3584), - [sym_numeric_character_reference] = ACTIONS(3584), - [anon_sym_LBRACK] = ACTIONS(3584), - [anon_sym_BANG_LBRACK] = ACTIONS(3584), - [anon_sym_DOLLAR] = ACTIONS(3586), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3584), - [anon_sym_LBRACE] = ACTIONS(3584), - [aux_sym_pandoc_str_token1] = ACTIONS(3586), - [anon_sym_PIPE] = ACTIONS(3584), - [aux_sym__prose_punctuation_token1] = ACTIONS(3586), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3586), - [sym__line_ending] = ACTIONS(3584), - [sym__soft_line_ending] = ACTIONS(3584), - [sym_block_continuation] = ACTIONS(3584), - [sym__block_quote_start] = ACTIONS(3584), - [sym_atx_h1_marker] = ACTIONS(3584), - [sym_atx_h2_marker] = ACTIONS(3584), - [sym_atx_h3_marker] = ACTIONS(3584), - [sym_atx_h4_marker] = ACTIONS(3584), - [sym_atx_h5_marker] = ACTIONS(3584), - [sym_atx_h6_marker] = ACTIONS(3584), - [sym__thematic_break] = ACTIONS(3584), - [sym__list_marker_minus] = ACTIONS(3584), - [sym__list_marker_plus] = ACTIONS(3584), - [sym__list_marker_star] = ACTIONS(3584), - [sym__list_marker_parenthesis] = ACTIONS(3584), - [sym__list_marker_dot] = ACTIONS(3584), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3584), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3584), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3584), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3584), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3584), - [sym__list_marker_example] = ACTIONS(3584), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3584), - [sym__fenced_code_block_start_backtick] = ACTIONS(3584), - [sym__blank_line_start] = ACTIONS(3584), - [sym_minus_metadata] = ACTIONS(3584), - [sym__pipe_table_start] = ACTIONS(3584), - [sym__fenced_div_start] = ACTIONS(3584), - [sym_ref_id_specifier] = ACTIONS(3584), - [sym__code_span_start] = ACTIONS(3584), - [sym__html_comment] = ACTIONS(3584), - [sym__autolink] = ACTIONS(3584), - [sym__highlight_span_start] = ACTIONS(3584), - [sym__insert_span_start] = ACTIONS(3584), - [sym__delete_span_start] = ACTIONS(3584), - [sym__edit_comment_span_start] = ACTIONS(3584), - [sym__single_quote_span_open] = ACTIONS(3584), - [sym__double_quote_span_open] = ACTIONS(3584), - [sym__shortcode_open_escaped] = ACTIONS(3584), - [sym__shortcode_open] = ACTIONS(3584), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3584), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3584), - [sym__cite_author_in_text] = ACTIONS(3584), - [sym__cite_suppress_author] = ACTIONS(3584), - [sym__strikeout_open] = ACTIONS(3584), - [sym__subscript_open] = ACTIONS(3584), - [sym__superscript_open] = ACTIONS(3584), - [sym__inline_note_start_token] = ACTIONS(3584), - [sym__strong_emphasis_open_star] = ACTIONS(3584), - [sym__strong_emphasis_open_underscore] = ACTIONS(3584), - [sym__emphasis_open_star] = ACTIONS(3584), - [sym__emphasis_open_underscore] = ACTIONS(3584), - [sym_inline_note_reference] = ACTIONS(3584), - [sym_html_element] = ACTIONS(3584), + [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(410)] = { - [anon_sym_COLON] = ACTIONS(3157), - [sym_entity_reference] = ACTIONS(3157), - [sym_numeric_character_reference] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_BANG_LBRACK] = ACTIONS(3157), - [anon_sym_DOLLAR] = ACTIONS(3159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [aux_sym_pandoc_str_token1] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3157), - [aux_sym__prose_punctuation_token1] = ACTIONS(3159), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3159), - [sym__line_ending] = ACTIONS(3157), - [sym__soft_line_ending] = ACTIONS(3157), - [sym__block_close] = ACTIONS(3157), - [sym_block_continuation] = ACTIONS(3588), - [sym__block_quote_start] = ACTIONS(3157), - [sym_atx_h1_marker] = ACTIONS(3157), - [sym_atx_h2_marker] = ACTIONS(3157), - [sym_atx_h3_marker] = ACTIONS(3157), - [sym_atx_h4_marker] = ACTIONS(3157), - [sym_atx_h5_marker] = ACTIONS(3157), - [sym_atx_h6_marker] = ACTIONS(3157), - [sym__thematic_break] = ACTIONS(3157), - [sym__list_marker_minus] = ACTIONS(3157), - [sym__list_marker_plus] = ACTIONS(3157), - [sym__list_marker_star] = ACTIONS(3157), - [sym__list_marker_parenthesis] = ACTIONS(3157), - [sym__list_marker_dot] = ACTIONS(3157), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_example] = ACTIONS(3157), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3157), - [sym__fenced_code_block_start_backtick] = ACTIONS(3157), - [sym_minus_metadata] = ACTIONS(3157), - [sym__pipe_table_start] = ACTIONS(3157), - [sym__fenced_div_start] = ACTIONS(3157), - [sym_ref_id_specifier] = ACTIONS(3157), - [sym__code_span_start] = ACTIONS(3157), - [sym__html_comment] = ACTIONS(3157), - [sym__autolink] = ACTIONS(3157), - [sym__highlight_span_start] = ACTIONS(3157), - [sym__insert_span_start] = ACTIONS(3157), - [sym__delete_span_start] = ACTIONS(3157), - [sym__edit_comment_span_start] = ACTIONS(3157), - [sym__single_quote_span_open] = ACTIONS(3157), - [sym__double_quote_span_open] = ACTIONS(3157), - [sym__shortcode_open_escaped] = ACTIONS(3157), - [sym__shortcode_open] = ACTIONS(3157), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3157), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3157), - [sym__cite_author_in_text] = ACTIONS(3157), - [sym__cite_suppress_author] = ACTIONS(3157), - [sym__strikeout_open] = ACTIONS(3157), - [sym__subscript_open] = ACTIONS(3157), - [sym__superscript_open] = ACTIONS(3157), - [sym__inline_note_start_token] = ACTIONS(3157), - [sym__strong_emphasis_open_star] = ACTIONS(3157), - [sym__strong_emphasis_open_underscore] = ACTIONS(3157), - [sym__emphasis_open_star] = ACTIONS(3157), - [sym__emphasis_open_underscore] = ACTIONS(3157), - [sym_inline_note_reference] = ACTIONS(3157), - [sym_html_element] = ACTIONS(3157), + [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(411)] = { - [sym__inlines] = STATE(3085), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1381), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3590), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2151), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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(412)] = { - [sym__inlines] = STATE(3091), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1383), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3592), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2151), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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(413)] = { - [anon_sym_COLON] = ACTIONS(3163), - [sym_entity_reference] = ACTIONS(3163), - [sym_numeric_character_reference] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_BANG_LBRACK] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [aux_sym_pandoc_str_token1] = ACTIONS(3165), - [anon_sym_PIPE] = ACTIONS(3163), - [aux_sym__prose_punctuation_token1] = ACTIONS(3165), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3165), - [sym__line_ending] = ACTIONS(3163), - [sym__soft_line_ending] = ACTIONS(3163), - [sym__block_close] = ACTIONS(3163), - [sym_block_continuation] = ACTIONS(3594), - [sym__block_quote_start] = ACTIONS(3163), - [sym_atx_h1_marker] = ACTIONS(3163), - [sym_atx_h2_marker] = ACTIONS(3163), - [sym_atx_h3_marker] = ACTIONS(3163), - [sym_atx_h4_marker] = ACTIONS(3163), - [sym_atx_h5_marker] = ACTIONS(3163), - [sym_atx_h6_marker] = ACTIONS(3163), - [sym__thematic_break] = ACTIONS(3163), - [sym__list_marker_minus] = ACTIONS(3163), - [sym__list_marker_plus] = ACTIONS(3163), - [sym__list_marker_star] = ACTIONS(3163), - [sym__list_marker_parenthesis] = ACTIONS(3163), - [sym__list_marker_dot] = ACTIONS(3163), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_example] = ACTIONS(3163), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3163), - [sym__fenced_code_block_start_backtick] = ACTIONS(3163), - [sym_minus_metadata] = ACTIONS(3163), - [sym__pipe_table_start] = ACTIONS(3163), - [sym__fenced_div_start] = ACTIONS(3163), - [sym_ref_id_specifier] = ACTIONS(3163), - [sym__code_span_start] = ACTIONS(3163), - [sym__html_comment] = ACTIONS(3163), - [sym__autolink] = ACTIONS(3163), - [sym__highlight_span_start] = ACTIONS(3163), - [sym__insert_span_start] = ACTIONS(3163), - [sym__delete_span_start] = ACTIONS(3163), - [sym__edit_comment_span_start] = ACTIONS(3163), - [sym__single_quote_span_open] = ACTIONS(3163), - [sym__double_quote_span_open] = ACTIONS(3163), - [sym__shortcode_open_escaped] = ACTIONS(3163), - [sym__shortcode_open] = ACTIONS(3163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3163), - [sym__cite_author_in_text] = ACTIONS(3163), - [sym__cite_suppress_author] = ACTIONS(3163), - [sym__strikeout_open] = ACTIONS(3163), - [sym__subscript_open] = ACTIONS(3163), - [sym__superscript_open] = ACTIONS(3163), - [sym__inline_note_start_token] = ACTIONS(3163), - [sym__strong_emphasis_open_star] = ACTIONS(3163), - [sym__strong_emphasis_open_underscore] = ACTIONS(3163), - [sym__emphasis_open_star] = ACTIONS(3163), - [sym__emphasis_open_underscore] = ACTIONS(3163), - [sym_inline_note_reference] = ACTIONS(3163), - [sym_html_element] = ACTIONS(3163), + [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(414)] = { - [anon_sym_COLON] = ACTIONS(3596), - [sym_entity_reference] = ACTIONS(3596), - [sym_numeric_character_reference] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(3596), - [anon_sym_BANG_LBRACK] = ACTIONS(3596), - [anon_sym_DOLLAR] = ACTIONS(3598), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3596), - [anon_sym_LBRACE] = ACTIONS(3596), - [aux_sym_pandoc_str_token1] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3596), - [aux_sym__prose_punctuation_token1] = ACTIONS(3598), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3598), - [sym__line_ending] = ACTIONS(3596), - [sym__soft_line_ending] = ACTIONS(3596), - [sym_block_continuation] = ACTIONS(3596), - [sym__block_quote_start] = ACTIONS(3596), - [sym_atx_h1_marker] = ACTIONS(3596), - [sym_atx_h2_marker] = ACTIONS(3596), - [sym_atx_h3_marker] = ACTIONS(3596), - [sym_atx_h4_marker] = ACTIONS(3596), - [sym_atx_h5_marker] = ACTIONS(3596), - [sym_atx_h6_marker] = ACTIONS(3596), - [sym__thematic_break] = ACTIONS(3596), - [sym__list_marker_minus] = ACTIONS(3596), - [sym__list_marker_plus] = ACTIONS(3596), - [sym__list_marker_star] = ACTIONS(3596), - [sym__list_marker_parenthesis] = ACTIONS(3596), - [sym__list_marker_dot] = ACTIONS(3596), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3596), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3596), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3596), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3596), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3596), - [sym__list_marker_example] = ACTIONS(3596), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3596), - [sym__fenced_code_block_start_backtick] = ACTIONS(3596), - [sym__blank_line_start] = ACTIONS(3596), - [sym_minus_metadata] = ACTIONS(3596), - [sym__pipe_table_start] = ACTIONS(3596), - [sym__fenced_div_start] = ACTIONS(3596), - [sym_ref_id_specifier] = ACTIONS(3596), - [sym__code_span_start] = ACTIONS(3596), - [sym__html_comment] = ACTIONS(3596), - [sym__autolink] = ACTIONS(3596), - [sym__highlight_span_start] = ACTIONS(3596), - [sym__insert_span_start] = ACTIONS(3596), - [sym__delete_span_start] = ACTIONS(3596), - [sym__edit_comment_span_start] = ACTIONS(3596), - [sym__single_quote_span_open] = ACTIONS(3596), - [sym__double_quote_span_open] = ACTIONS(3596), - [sym__shortcode_open_escaped] = ACTIONS(3596), - [sym__shortcode_open] = ACTIONS(3596), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3596), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3596), - [sym__cite_author_in_text] = ACTIONS(3596), - [sym__cite_suppress_author] = ACTIONS(3596), - [sym__strikeout_open] = ACTIONS(3596), - [sym__subscript_open] = ACTIONS(3596), - [sym__superscript_open] = ACTIONS(3596), - [sym__inline_note_start_token] = ACTIONS(3596), - [sym__strong_emphasis_open_star] = ACTIONS(3596), - [sym__strong_emphasis_open_underscore] = ACTIONS(3596), - [sym__emphasis_open_star] = ACTIONS(3596), - [sym__emphasis_open_underscore] = ACTIONS(3596), - [sym_inline_note_reference] = ACTIONS(3596), - [sym_html_element] = ACTIONS(3596), + [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_continuation] = ACTIONS(3421), + [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(415)] = { - [anon_sym_COLON] = ACTIONS(3600), - [sym_entity_reference] = ACTIONS(3600), - [sym_numeric_character_reference] = ACTIONS(3600), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_BANG_LBRACK] = ACTIONS(3600), - [anon_sym_DOLLAR] = ACTIONS(3602), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3600), - [anon_sym_LBRACE] = ACTIONS(3600), - [aux_sym_pandoc_str_token1] = ACTIONS(3602), - [anon_sym_PIPE] = ACTIONS(3600), - [aux_sym__prose_punctuation_token1] = ACTIONS(3602), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3602), - [sym__line_ending] = ACTIONS(3600), - [sym__soft_line_ending] = ACTIONS(3600), - [sym_block_continuation] = ACTIONS(3600), - [sym__block_quote_start] = ACTIONS(3600), - [sym_atx_h1_marker] = ACTIONS(3600), - [sym_atx_h2_marker] = ACTIONS(3600), - [sym_atx_h3_marker] = ACTIONS(3600), - [sym_atx_h4_marker] = ACTIONS(3600), - [sym_atx_h5_marker] = ACTIONS(3600), - [sym_atx_h6_marker] = ACTIONS(3600), - [sym__thematic_break] = ACTIONS(3600), - [sym__list_marker_minus] = ACTIONS(3600), - [sym__list_marker_plus] = ACTIONS(3600), - [sym__list_marker_star] = ACTIONS(3600), - [sym__list_marker_parenthesis] = ACTIONS(3600), - [sym__list_marker_dot] = ACTIONS(3600), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3600), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3600), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3600), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3600), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3600), - [sym__list_marker_example] = ACTIONS(3600), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3600), - [sym__fenced_code_block_start_backtick] = ACTIONS(3600), - [sym__blank_line_start] = ACTIONS(3600), - [sym_minus_metadata] = ACTIONS(3600), - [sym__pipe_table_start] = ACTIONS(3600), - [sym__fenced_div_start] = ACTIONS(3600), - [sym_ref_id_specifier] = ACTIONS(3600), - [sym__code_span_start] = ACTIONS(3600), - [sym__html_comment] = ACTIONS(3600), - [sym__autolink] = ACTIONS(3600), - [sym__highlight_span_start] = ACTIONS(3600), - [sym__insert_span_start] = ACTIONS(3600), - [sym__delete_span_start] = ACTIONS(3600), - [sym__edit_comment_span_start] = ACTIONS(3600), - [sym__single_quote_span_open] = ACTIONS(3600), - [sym__double_quote_span_open] = ACTIONS(3600), - [sym__shortcode_open_escaped] = ACTIONS(3600), - [sym__shortcode_open] = ACTIONS(3600), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3600), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3600), - [sym__cite_author_in_text] = ACTIONS(3600), - [sym__cite_suppress_author] = ACTIONS(3600), - [sym__strikeout_open] = ACTIONS(3600), - [sym__subscript_open] = ACTIONS(3600), - [sym__superscript_open] = ACTIONS(3600), - [sym__inline_note_start_token] = ACTIONS(3600), - [sym__strong_emphasis_open_star] = ACTIONS(3600), - [sym__strong_emphasis_open_underscore] = ACTIONS(3600), - [sym__emphasis_open_star] = ACTIONS(3600), - [sym__emphasis_open_underscore] = ACTIONS(3600), - [sym_inline_note_reference] = ACTIONS(3600), - [sym_html_element] = ACTIONS(3600), + [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(416)] = { - [sym_pandoc_span] = STATE(421), - [sym_pandoc_image] = STATE(421), - [sym_pandoc_math] = STATE(421), - [sym_pandoc_display_math] = STATE(421), - [sym_pandoc_code_span] = STATE(421), - [sym_pandoc_single_quote] = STATE(421), - [sym_pandoc_double_quote] = STATE(421), - [sym_insert] = STATE(421), - [sym_delete] = STATE(421), - [sym_edit_comment] = STATE(421), - [sym_highlight] = STATE(421), - [sym__pandoc_attr_specifier] = STATE(421), - [sym__inline_element] = STATE(421), - [sym_shortcode_escaped] = STATE(421), - [sym_shortcode] = STATE(421), - [sym_citation] = STATE(421), - [sym_inline_note] = STATE(421), - [sym_pandoc_superscript] = STATE(421), - [sym_pandoc_subscript] = STATE(421), - [sym_pandoc_strikeout] = STATE(421), - [sym_pandoc_emph] = STATE(421), - [sym_pandoc_strong] = STATE(421), - [sym_pandoc_str] = STATE(421), - [sym__prose_punctuation] = STATE(421), - [sym_pandoc_line_break] = STATE(421), - [aux_sym__line_repeat1] = STATE(421), - [sym_entity_reference] = ACTIONS(3604), - [sym_numeric_character_reference] = ACTIONS(3604), - [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(3606), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(3608), - [sym__line_ending] = ACTIONS(3470), - [sym__soft_line_ending] = ACTIONS(3470), - [sym__eof] = ACTIONS(3470), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(3604), - [sym__autolink] = ACTIONS(3604), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(3604), - [sym_html_element] = ACTIONS(3604), + [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), }, [STATE(417)] = { - [sym_pandoc_span] = STATE(416), - [sym_pandoc_image] = STATE(416), - [sym_pandoc_math] = STATE(416), - [sym_pandoc_display_math] = STATE(416), - [sym_pandoc_code_span] = STATE(416), - [sym_pandoc_single_quote] = STATE(416), - [sym_pandoc_double_quote] = STATE(416), - [sym_insert] = STATE(416), - [sym_delete] = STATE(416), - [sym_edit_comment] = STATE(416), - [sym_highlight] = STATE(416), - [sym__pandoc_attr_specifier] = STATE(416), - [sym__inline_element] = STATE(416), - [sym_shortcode_escaped] = STATE(416), - [sym_shortcode] = STATE(416), - [sym_citation] = STATE(416), - [sym_inline_note] = STATE(416), - [sym_pandoc_superscript] = STATE(416), - [sym_pandoc_subscript] = STATE(416), - [sym_pandoc_strikeout] = STATE(416), - [sym_pandoc_emph] = STATE(416), - [sym_pandoc_strong] = STATE(416), - [sym_pandoc_str] = STATE(416), - [sym__prose_punctuation] = STATE(416), - [sym_pandoc_line_break] = STATE(416), - [aux_sym__line_repeat1] = STATE(416), - [sym_entity_reference] = ACTIONS(3610), - [sym_numeric_character_reference] = ACTIONS(3610), - [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(3612), - [aux_sym_pandoc_line_break_token1] = ACTIONS(25), - [sym__whitespace] = ACTIONS(3608), - [sym__line_ending] = ACTIONS(3460), - [sym__soft_line_ending] = ACTIONS(3460), - [sym__eof] = ACTIONS(3460), - [sym__code_span_start] = ACTIONS(69), - [sym__html_comment] = ACTIONS(3610), - [sym__autolink] = ACTIONS(3610), - [sym__highlight_span_start] = ACTIONS(71), - [sym__insert_span_start] = ACTIONS(73), - [sym__delete_span_start] = ACTIONS(75), - [sym__edit_comment_span_start] = ACTIONS(77), - [sym__single_quote_span_open] = ACTIONS(79), - [sym__double_quote_span_open] = ACTIONS(81), - [sym__shortcode_open_escaped] = ACTIONS(83), - [sym__shortcode_open] = ACTIONS(85), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(87), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(89), - [sym__cite_author_in_text] = ACTIONS(91), - [sym__cite_suppress_author] = ACTIONS(93), - [sym__strikeout_open] = ACTIONS(95), - [sym__subscript_open] = ACTIONS(97), - [sym__superscript_open] = ACTIONS(99), - [sym__inline_note_start_token] = ACTIONS(101), - [sym__strong_emphasis_open_star] = ACTIONS(103), - [sym__strong_emphasis_open_underscore] = ACTIONS(105), - [sym__emphasis_open_star] = ACTIONS(107), - [sym__emphasis_open_underscore] = ACTIONS(109), - [sym_inline_note_reference] = ACTIONS(3610), - [sym_html_element] = ACTIONS(3610), + [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), }, [STATE(418)] = { - [anon_sym_COLON] = ACTIONS(3614), - [sym_entity_reference] = ACTIONS(3614), - [sym_numeric_character_reference] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_BANG_LBRACK] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3614), - [aux_sym_pandoc_str_token1] = ACTIONS(3616), - [anon_sym_PIPE] = ACTIONS(3614), - [aux_sym__prose_punctuation_token1] = ACTIONS(3616), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3616), - [sym__line_ending] = ACTIONS(3614), - [sym__soft_line_ending] = ACTIONS(3614), - [sym__block_close] = ACTIONS(3614), - [sym__block_quote_start] = ACTIONS(3614), - [sym_atx_h1_marker] = ACTIONS(3614), - [sym_atx_h2_marker] = ACTIONS(3614), - [sym_atx_h3_marker] = ACTIONS(3614), - [sym_atx_h4_marker] = ACTIONS(3614), - [sym_atx_h5_marker] = ACTIONS(3614), - [sym_atx_h6_marker] = ACTIONS(3614), - [sym__thematic_break] = ACTIONS(3614), - [sym__list_marker_minus] = ACTIONS(3614), - [sym__list_marker_plus] = ACTIONS(3614), - [sym__list_marker_star] = ACTIONS(3614), - [sym__list_marker_parenthesis] = ACTIONS(3614), - [sym__list_marker_dot] = ACTIONS(3614), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_example] = ACTIONS(3614), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3614), - [sym__fenced_code_block_start_backtick] = ACTIONS(3614), - [sym_minus_metadata] = ACTIONS(3614), - [sym__pipe_table_start] = ACTIONS(3614), - [sym__fenced_div_start] = ACTIONS(3614), - [sym__fenced_div_end] = ACTIONS(3614), - [sym_ref_id_specifier] = ACTIONS(3614), - [sym__code_span_start] = ACTIONS(3614), - [sym__html_comment] = ACTIONS(3614), - [sym__autolink] = ACTIONS(3614), - [sym__highlight_span_start] = ACTIONS(3614), - [sym__insert_span_start] = ACTIONS(3614), - [sym__delete_span_start] = ACTIONS(3614), - [sym__edit_comment_span_start] = ACTIONS(3614), - [sym__single_quote_span_open] = ACTIONS(3614), - [sym__double_quote_span_open] = ACTIONS(3614), - [sym__shortcode_open_escaped] = ACTIONS(3614), - [sym__shortcode_open] = ACTIONS(3614), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3614), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3614), - [sym__cite_author_in_text] = ACTIONS(3614), - [sym__cite_suppress_author] = ACTIONS(3614), - [sym__strikeout_open] = ACTIONS(3614), - [sym__subscript_open] = ACTIONS(3614), - [sym__superscript_open] = ACTIONS(3614), - [sym__inline_note_start_token] = ACTIONS(3614), - [sym__strong_emphasis_open_star] = ACTIONS(3614), - [sym__strong_emphasis_open_underscore] = ACTIONS(3614), - [sym__emphasis_open_star] = ACTIONS(3614), - [sym__emphasis_open_underscore] = ACTIONS(3614), - [sym_inline_note_reference] = ACTIONS(3614), - [sym_html_element] = ACTIONS(3614), + [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), }, [STATE(419)] = { - [sym__inlines] = STATE(3105), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1433), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3618), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2161), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(420)] = { - [sym__inlines] = STATE(3108), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1435), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3620), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2161), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(421)] = { - [sym_pandoc_span] = STATE(421), - [sym_pandoc_image] = STATE(421), - [sym_pandoc_math] = STATE(421), - [sym_pandoc_display_math] = STATE(421), - [sym_pandoc_code_span] = STATE(421), - [sym_pandoc_single_quote] = STATE(421), - [sym_pandoc_double_quote] = STATE(421), - [sym_insert] = STATE(421), - [sym_delete] = STATE(421), - [sym_edit_comment] = STATE(421), - [sym_highlight] = STATE(421), - [sym__pandoc_attr_specifier] = STATE(421), - [sym__inline_element] = STATE(421), - [sym_shortcode_escaped] = STATE(421), - [sym_shortcode] = STATE(421), - [sym_citation] = STATE(421), - [sym_inline_note] = STATE(421), - [sym_pandoc_superscript] = STATE(421), - [sym_pandoc_subscript] = STATE(421), - [sym_pandoc_strikeout] = STATE(421), - [sym_pandoc_emph] = STATE(421), - [sym_pandoc_strong] = STATE(421), - [sym_pandoc_str] = STATE(421), - [sym__prose_punctuation] = STATE(421), - [sym_pandoc_line_break] = STATE(421), - [aux_sym__line_repeat1] = STATE(421), - [sym_entity_reference] = ACTIONS(3622), - [sym_numeric_character_reference] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3625), - [anon_sym_BANG_LBRACK] = ACTIONS(3628), - [anon_sym_DOLLAR] = ACTIONS(3631), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3634), - [anon_sym_LBRACE] = ACTIONS(3637), - [aux_sym_pandoc_str_token1] = ACTIONS(3640), - [anon_sym_PIPE] = ACTIONS(3643), - [aux_sym__prose_punctuation_token1] = ACTIONS(3646), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3649), - [sym__whitespace] = ACTIONS(3652), - [sym__line_ending] = ACTIONS(3485), - [sym__soft_line_ending] = ACTIONS(3485), - [sym__eof] = ACTIONS(3485), - [sym__code_span_start] = ACTIONS(3655), - [sym__html_comment] = ACTIONS(3622), - [sym__autolink] = ACTIONS(3622), - [sym__highlight_span_start] = ACTIONS(3658), - [sym__insert_span_start] = ACTIONS(3661), - [sym__delete_span_start] = ACTIONS(3664), - [sym__edit_comment_span_start] = ACTIONS(3667), - [sym__single_quote_span_open] = ACTIONS(3670), - [sym__double_quote_span_open] = ACTIONS(3673), - [sym__shortcode_open_escaped] = ACTIONS(3676), - [sym__shortcode_open] = ACTIONS(3679), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3682), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3685), - [sym__cite_author_in_text] = ACTIONS(3688), - [sym__cite_suppress_author] = ACTIONS(3691), - [sym__strikeout_open] = ACTIONS(3694), - [sym__subscript_open] = ACTIONS(3697), - [sym__superscript_open] = ACTIONS(3700), - [sym__inline_note_start_token] = ACTIONS(3703), - [sym__strong_emphasis_open_star] = ACTIONS(3706), - [sym__strong_emphasis_open_underscore] = ACTIONS(3709), - [sym__emphasis_open_star] = ACTIONS(3712), - [sym__emphasis_open_underscore] = ACTIONS(3715), - [sym_inline_note_reference] = ACTIONS(3622), - [sym_html_element] = ACTIONS(3622), + [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), }, [STATE(422)] = { - [anon_sym_COLON] = ACTIONS(3718), - [sym_entity_reference] = ACTIONS(3718), - [sym_numeric_character_reference] = ACTIONS(3718), - [anon_sym_LBRACK] = ACTIONS(3718), - [anon_sym_BANG_LBRACK] = ACTIONS(3718), - [anon_sym_DOLLAR] = ACTIONS(3720), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3718), - [anon_sym_LBRACE] = ACTIONS(3718), - [aux_sym_pandoc_str_token1] = ACTIONS(3720), - [anon_sym_PIPE] = ACTIONS(3718), - [aux_sym__prose_punctuation_token1] = ACTIONS(3720), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3720), - [sym__line_ending] = ACTIONS(3718), - [sym__soft_line_ending] = ACTIONS(3718), - [sym_block_continuation] = ACTIONS(3718), - [sym__block_quote_start] = ACTIONS(3718), - [sym_atx_h1_marker] = ACTIONS(3718), - [sym_atx_h2_marker] = ACTIONS(3718), - [sym_atx_h3_marker] = ACTIONS(3718), - [sym_atx_h4_marker] = ACTIONS(3718), - [sym_atx_h5_marker] = ACTIONS(3718), - [sym_atx_h6_marker] = ACTIONS(3718), - [sym__thematic_break] = ACTIONS(3718), - [sym__list_marker_minus] = ACTIONS(3718), - [sym__list_marker_plus] = ACTIONS(3718), - [sym__list_marker_star] = ACTIONS(3718), - [sym__list_marker_parenthesis] = ACTIONS(3718), - [sym__list_marker_dot] = ACTIONS(3718), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3718), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3718), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3718), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3718), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3718), - [sym__list_marker_example] = ACTIONS(3718), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3718), - [sym__fenced_code_block_start_backtick] = ACTIONS(3718), - [sym__blank_line_start] = ACTIONS(3718), - [sym_minus_metadata] = ACTIONS(3718), - [sym__pipe_table_start] = ACTIONS(3718), - [sym__fenced_div_start] = ACTIONS(3718), - [sym_ref_id_specifier] = ACTIONS(3718), - [sym__code_span_start] = ACTIONS(3718), - [sym__html_comment] = ACTIONS(3718), - [sym__autolink] = ACTIONS(3718), - [sym__highlight_span_start] = ACTIONS(3718), - [sym__insert_span_start] = ACTIONS(3718), - [sym__delete_span_start] = ACTIONS(3718), - [sym__edit_comment_span_start] = ACTIONS(3718), - [sym__single_quote_span_open] = ACTIONS(3718), - [sym__double_quote_span_open] = ACTIONS(3718), - [sym__shortcode_open_escaped] = ACTIONS(3718), - [sym__shortcode_open] = ACTIONS(3718), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3718), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3718), - [sym__cite_author_in_text] = ACTIONS(3718), - [sym__cite_suppress_author] = ACTIONS(3718), - [sym__strikeout_open] = ACTIONS(3718), - [sym__subscript_open] = ACTIONS(3718), - [sym__superscript_open] = ACTIONS(3718), - [sym__inline_note_start_token] = ACTIONS(3718), - [sym__strong_emphasis_open_star] = ACTIONS(3718), - [sym__strong_emphasis_open_underscore] = ACTIONS(3718), - [sym__emphasis_open_star] = ACTIONS(3718), - [sym__emphasis_open_underscore] = ACTIONS(3718), - [sym_inline_note_reference] = ACTIONS(3718), - [sym_html_element] = ACTIONS(3718), + [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), }, [STATE(423)] = { - [anon_sym_COLON] = ACTIONS(3722), - [sym_entity_reference] = ACTIONS(3722), - [sym_numeric_character_reference] = ACTIONS(3722), - [anon_sym_LBRACK] = ACTIONS(3722), - [anon_sym_BANG_LBRACK] = ACTIONS(3722), - [anon_sym_DOLLAR] = ACTIONS(3724), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3722), - [anon_sym_LBRACE] = ACTIONS(3722), - [aux_sym_pandoc_str_token1] = ACTIONS(3724), - [anon_sym_PIPE] = ACTIONS(3722), - [aux_sym__prose_punctuation_token1] = ACTIONS(3724), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3724), - [sym__line_ending] = ACTIONS(3722), - [sym__soft_line_ending] = ACTIONS(3722), - [sym_block_continuation] = ACTIONS(3722), - [sym__block_quote_start] = ACTIONS(3722), - [sym_atx_h1_marker] = ACTIONS(3722), - [sym_atx_h2_marker] = ACTIONS(3722), - [sym_atx_h3_marker] = ACTIONS(3722), - [sym_atx_h4_marker] = ACTIONS(3722), - [sym_atx_h5_marker] = ACTIONS(3722), - [sym_atx_h6_marker] = ACTIONS(3722), - [sym__thematic_break] = ACTIONS(3722), - [sym__list_marker_minus] = ACTIONS(3722), - [sym__list_marker_plus] = ACTIONS(3722), - [sym__list_marker_star] = ACTIONS(3722), - [sym__list_marker_parenthesis] = ACTIONS(3722), - [sym__list_marker_dot] = ACTIONS(3722), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3722), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3722), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3722), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3722), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3722), - [sym__list_marker_example] = ACTIONS(3722), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3722), - [sym__fenced_code_block_start_backtick] = ACTIONS(3722), - [sym__blank_line_start] = ACTIONS(3722), - [sym_minus_metadata] = ACTIONS(3722), - [sym__pipe_table_start] = ACTIONS(3722), - [sym__fenced_div_start] = ACTIONS(3722), - [sym_ref_id_specifier] = ACTIONS(3722), - [sym__code_span_start] = ACTIONS(3722), - [sym__html_comment] = ACTIONS(3722), - [sym__autolink] = ACTIONS(3722), - [sym__highlight_span_start] = ACTIONS(3722), - [sym__insert_span_start] = ACTIONS(3722), - [sym__delete_span_start] = ACTIONS(3722), - [sym__edit_comment_span_start] = ACTIONS(3722), - [sym__single_quote_span_open] = ACTIONS(3722), - [sym__double_quote_span_open] = ACTIONS(3722), - [sym__shortcode_open_escaped] = ACTIONS(3722), - [sym__shortcode_open] = ACTIONS(3722), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3722), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3722), - [sym__cite_author_in_text] = ACTIONS(3722), - [sym__cite_suppress_author] = ACTIONS(3722), - [sym__strikeout_open] = ACTIONS(3722), - [sym__subscript_open] = ACTIONS(3722), - [sym__superscript_open] = ACTIONS(3722), - [sym__inline_note_start_token] = ACTIONS(3722), - [sym__strong_emphasis_open_star] = ACTIONS(3722), - [sym__strong_emphasis_open_underscore] = ACTIONS(3722), - [sym__emphasis_open_star] = ACTIONS(3722), - [sym__emphasis_open_underscore] = ACTIONS(3722), - [sym_inline_note_reference] = ACTIONS(3722), - [sym_html_element] = ACTIONS(3722), + [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), }, [STATE(424)] = { - [sym__inlines] = STATE(2915), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1459), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3726), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2167), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(425)] = { - [sym__inlines] = STATE(2921), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1461), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3728), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2167), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(426)] = { - [anon_sym_COLON] = ACTIONS(2967), - [sym_entity_reference] = ACTIONS(2967), - [sym_numeric_character_reference] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_BANG_LBRACK] = ACTIONS(2967), - [anon_sym_DOLLAR] = ACTIONS(2969), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [aux_sym_pandoc_str_token1] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2967), - [aux_sym__prose_punctuation_token1] = ACTIONS(2969), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2969), - [sym__line_ending] = ACTIONS(2967), - [sym__soft_line_ending] = ACTIONS(2967), - [sym__block_close] = ACTIONS(2967), - [sym_block_continuation] = ACTIONS(3730), - [sym__block_quote_start] = ACTIONS(2967), - [sym_atx_h1_marker] = ACTIONS(2967), - [sym_atx_h2_marker] = ACTIONS(2967), - [sym_atx_h3_marker] = ACTIONS(2967), - [sym_atx_h4_marker] = ACTIONS(2967), - [sym_atx_h5_marker] = ACTIONS(2967), - [sym_atx_h6_marker] = ACTIONS(2967), - [sym__thematic_break] = ACTIONS(2967), - [sym__list_marker_minus] = ACTIONS(2967), - [sym__list_marker_plus] = ACTIONS(2967), - [sym__list_marker_star] = ACTIONS(2967), - [sym__list_marker_parenthesis] = ACTIONS(2967), - [sym__list_marker_dot] = ACTIONS(2967), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_example] = ACTIONS(2967), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2967), - [sym__fenced_code_block_start_backtick] = ACTIONS(2967), - [sym_minus_metadata] = ACTIONS(2967), - [sym__pipe_table_start] = ACTIONS(2967), - [sym__fenced_div_start] = ACTIONS(2967), - [sym_ref_id_specifier] = ACTIONS(2967), - [sym__code_span_start] = ACTIONS(2967), - [sym__html_comment] = ACTIONS(2967), - [sym__autolink] = ACTIONS(2967), - [sym__highlight_span_start] = ACTIONS(2967), - [sym__insert_span_start] = ACTIONS(2967), - [sym__delete_span_start] = ACTIONS(2967), - [sym__edit_comment_span_start] = ACTIONS(2967), - [sym__single_quote_span_open] = ACTIONS(2967), - [sym__double_quote_span_open] = ACTIONS(2967), - [sym__shortcode_open_escaped] = ACTIONS(2967), - [sym__shortcode_open] = ACTIONS(2967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2967), - [sym__cite_author_in_text] = ACTIONS(2967), - [sym__cite_suppress_author] = ACTIONS(2967), - [sym__strikeout_open] = ACTIONS(2967), - [sym__subscript_open] = ACTIONS(2967), - [sym__superscript_open] = ACTIONS(2967), - [sym__inline_note_start_token] = ACTIONS(2967), - [sym__strong_emphasis_open_star] = ACTIONS(2967), - [sym__strong_emphasis_open_underscore] = ACTIONS(2967), - [sym__emphasis_open_star] = ACTIONS(2967), - [sym__emphasis_open_underscore] = ACTIONS(2967), - [sym_inline_note_reference] = ACTIONS(2967), - [sym_html_element] = ACTIONS(2967), + [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_continuation] = ACTIONS(3445), + [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(427)] = { - [sym__inlines] = STATE(2793), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1484), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3732), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2177), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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(2794), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1486), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3734), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2177), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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)] = { - [sym__inlines] = STATE(2865), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1072), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3736), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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)] = { - [sym__inlines] = STATE(2866), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1074), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3738), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2187), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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)] = { - [sym__inlines] = STATE(2917), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1101), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3740), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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(432)] = { - [sym__inlines] = STATE(2918), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1103), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3742), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2197), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(433)] = { - [ts_builtin_sym_end] = ACTIONS(2979), - [anon_sym_COLON] = ACTIONS(2979), - [sym_entity_reference] = ACTIONS(2979), - [sym_numeric_character_reference] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_BANG_LBRACK] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2981), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2979), - [aux_sym_pandoc_str_token1] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2979), - [aux_sym__prose_punctuation_token1] = ACTIONS(2981), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2981), - [sym__line_ending] = ACTIONS(2979), - [sym__soft_line_ending] = ACTIONS(2979), - [sym_block_continuation] = ACTIONS(3744), - [sym__block_quote_start] = ACTIONS(2979), - [sym_atx_h1_marker] = ACTIONS(2979), - [sym_atx_h2_marker] = ACTIONS(2979), - [sym_atx_h3_marker] = ACTIONS(2979), - [sym_atx_h4_marker] = ACTIONS(2979), - [sym_atx_h5_marker] = ACTIONS(2979), - [sym_atx_h6_marker] = ACTIONS(2979), - [sym__thematic_break] = ACTIONS(2979), - [sym__list_marker_minus] = ACTIONS(2979), - [sym__list_marker_plus] = ACTIONS(2979), - [sym__list_marker_star] = ACTIONS(2979), - [sym__list_marker_parenthesis] = ACTIONS(2979), - [sym__list_marker_dot] = ACTIONS(2979), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_example] = ACTIONS(2979), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2979), - [sym__fenced_code_block_start_backtick] = ACTIONS(2979), - [sym_minus_metadata] = ACTIONS(2979), - [sym__pipe_table_start] = ACTIONS(2979), - [sym__fenced_div_start] = ACTIONS(2979), - [sym_ref_id_specifier] = ACTIONS(2979), - [sym__code_span_start] = ACTIONS(2979), - [sym__html_comment] = ACTIONS(2979), - [sym__autolink] = ACTIONS(2979), - [sym__highlight_span_start] = ACTIONS(2979), - [sym__insert_span_start] = ACTIONS(2979), - [sym__delete_span_start] = ACTIONS(2979), - [sym__edit_comment_span_start] = ACTIONS(2979), - [sym__single_quote_span_open] = ACTIONS(2979), - [sym__double_quote_span_open] = ACTIONS(2979), - [sym__shortcode_open_escaped] = ACTIONS(2979), - [sym__shortcode_open] = ACTIONS(2979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2979), - [sym__cite_author_in_text] = ACTIONS(2979), - [sym__cite_suppress_author] = ACTIONS(2979), - [sym__strikeout_open] = ACTIONS(2979), - [sym__subscript_open] = ACTIONS(2979), - [sym__superscript_open] = ACTIONS(2979), - [sym__inline_note_start_token] = ACTIONS(2979), - [sym__strong_emphasis_open_star] = ACTIONS(2979), - [sym__strong_emphasis_open_underscore] = ACTIONS(2979), - [sym__emphasis_open_star] = ACTIONS(2979), - [sym__emphasis_open_underscore] = ACTIONS(2979), - [sym_inline_note_reference] = ACTIONS(2979), - [sym_html_element] = ACTIONS(2979), + [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), }, [STATE(434)] = { - [sym__inlines] = STATE(3018), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1128), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3746), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(435)] = { - [sym__inlines] = STATE(3022), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1130), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3748), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2207), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(436)] = { - [sym__inlines] = STATE(2780), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1155), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3750), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(437)] = { - [sym__inlines] = STATE(2781), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1157), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3752), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(438)] = { - [sym__inlines] = STATE(2808), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1182), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3754), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2227), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(439)] = { - [sym__inlines] = STATE(2809), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1184), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3756), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2227), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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), }, [STATE(440)] = { - [anon_sym_COLON] = ACTIONS(2979), - [sym_entity_reference] = ACTIONS(2979), - [sym_numeric_character_reference] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_BANG_LBRACK] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2981), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2979), - [aux_sym_pandoc_str_token1] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2979), - [aux_sym__prose_punctuation_token1] = ACTIONS(2981), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2981), - [sym__line_ending] = ACTIONS(2979), - [sym__soft_line_ending] = ACTIONS(2979), - [sym__block_close] = ACTIONS(2979), - [sym_block_continuation] = ACTIONS(3758), - [sym__block_quote_start] = ACTIONS(2979), - [sym_atx_h1_marker] = ACTIONS(2979), - [sym_atx_h2_marker] = ACTIONS(2979), - [sym_atx_h3_marker] = ACTIONS(2979), - [sym_atx_h4_marker] = ACTIONS(2979), - [sym_atx_h5_marker] = ACTIONS(2979), - [sym_atx_h6_marker] = ACTIONS(2979), - [sym__thematic_break] = ACTIONS(2979), - [sym__list_marker_minus] = ACTIONS(2979), - [sym__list_marker_plus] = ACTIONS(2979), - [sym__list_marker_star] = ACTIONS(2979), - [sym__list_marker_parenthesis] = ACTIONS(2979), - [sym__list_marker_dot] = ACTIONS(2979), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_example] = ACTIONS(2979), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2979), - [sym__fenced_code_block_start_backtick] = ACTIONS(2979), - [sym_minus_metadata] = ACTIONS(2979), - [sym__pipe_table_start] = ACTIONS(2979), - [sym__fenced_div_start] = ACTIONS(2979), - [sym_ref_id_specifier] = ACTIONS(2979), - [sym__code_span_start] = ACTIONS(2979), - [sym__html_comment] = ACTIONS(2979), - [sym__autolink] = ACTIONS(2979), - [sym__highlight_span_start] = ACTIONS(2979), - [sym__insert_span_start] = ACTIONS(2979), - [sym__delete_span_start] = ACTIONS(2979), - [sym__edit_comment_span_start] = ACTIONS(2979), - [sym__single_quote_span_open] = ACTIONS(2979), - [sym__double_quote_span_open] = ACTIONS(2979), - [sym__shortcode_open_escaped] = ACTIONS(2979), - [sym__shortcode_open] = ACTIONS(2979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2979), - [sym__cite_author_in_text] = ACTIONS(2979), - [sym__cite_suppress_author] = ACTIONS(2979), - [sym__strikeout_open] = ACTIONS(2979), - [sym__subscript_open] = ACTIONS(2979), - [sym__superscript_open] = ACTIONS(2979), - [sym__inline_note_start_token] = ACTIONS(2979), - [sym__strong_emphasis_open_star] = ACTIONS(2979), - [sym__strong_emphasis_open_underscore] = ACTIONS(2979), - [sym__emphasis_open_star] = ACTIONS(2979), - [sym__emphasis_open_underscore] = ACTIONS(2979), - [sym_inline_note_reference] = ACTIONS(2979), - [sym_html_element] = ACTIONS(2979), + [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), }, [STATE(441)] = { - [ts_builtin_sym_end] = ACTIONS(3107), - [anon_sym_COLON] = ACTIONS(3107), - [sym_entity_reference] = ACTIONS(3107), - [sym_numeric_character_reference] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_BANG_LBRACK] = ACTIONS(3107), - [anon_sym_DOLLAR] = ACTIONS(3109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [aux_sym_pandoc_str_token1] = ACTIONS(3109), + [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3109), - [sym__line_ending] = ACTIONS(3107), - [sym__soft_line_ending] = ACTIONS(3107), - [sym_block_continuation] = ACTIONS(3760), - [sym__block_quote_start] = ACTIONS(3107), - [sym_atx_h1_marker] = ACTIONS(3107), - [sym_atx_h2_marker] = ACTIONS(3107), - [sym_atx_h3_marker] = ACTIONS(3107), - [sym_atx_h4_marker] = ACTIONS(3107), - [sym_atx_h5_marker] = ACTIONS(3107), - [sym_atx_h6_marker] = ACTIONS(3107), - [sym__thematic_break] = ACTIONS(3107), - [sym__list_marker_minus] = ACTIONS(3107), - [sym__list_marker_plus] = ACTIONS(3107), - [sym__list_marker_star] = ACTIONS(3107), - [sym__list_marker_parenthesis] = ACTIONS(3107), - [sym__list_marker_dot] = ACTIONS(3107), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_example] = ACTIONS(3107), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3107), - [sym__fenced_code_block_start_backtick] = ACTIONS(3107), - [sym_minus_metadata] = ACTIONS(3107), - [sym__pipe_table_start] = ACTIONS(3107), - [sym__fenced_div_start] = ACTIONS(3107), - [sym_ref_id_specifier] = ACTIONS(3107), - [sym__code_span_start] = ACTIONS(3107), - [sym__html_comment] = ACTIONS(3107), - [sym__autolink] = ACTIONS(3107), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3107), - [sym__delete_span_start] = ACTIONS(3107), - [sym__edit_comment_span_start] = ACTIONS(3107), - [sym__single_quote_span_open] = ACTIONS(3107), - [sym__double_quote_span_open] = ACTIONS(3107), - [sym__shortcode_open_escaped] = ACTIONS(3107), - [sym__shortcode_open] = ACTIONS(3107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3107), - [sym__cite_author_in_text] = ACTIONS(3107), - [sym__cite_suppress_author] = ACTIONS(3107), - [sym__strikeout_open] = ACTIONS(3107), - [sym__subscript_open] = ACTIONS(3107), - [sym__superscript_open] = ACTIONS(3107), - [sym__inline_note_start_token] = ACTIONS(3107), - [sym__strong_emphasis_open_star] = ACTIONS(3107), - [sym__strong_emphasis_open_underscore] = ACTIONS(3107), - [sym__emphasis_open_star] = ACTIONS(3107), - [sym__emphasis_open_underscore] = ACTIONS(3107), - [sym_inline_note_reference] = ACTIONS(3107), - [sym_html_element] = ACTIONS(3107), + [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(2833), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1209), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3762), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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(2834), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1211), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3764), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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)] = { - [anon_sym_COLON] = ACTIONS(3766), - [sym_entity_reference] = ACTIONS(3766), - [sym_numeric_character_reference] = ACTIONS(3766), - [anon_sym_LBRACK] = ACTIONS(3766), - [anon_sym_BANG_LBRACK] = ACTIONS(3766), - [anon_sym_DOLLAR] = ACTIONS(3768), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3766), - [anon_sym_LBRACE] = ACTIONS(3766), - [aux_sym_pandoc_str_token1] = ACTIONS(3768), - [anon_sym_PIPE] = ACTIONS(3766), - [aux_sym__prose_punctuation_token1] = ACTIONS(3768), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3768), - [sym__line_ending] = ACTIONS(3766), - [sym__soft_line_ending] = ACTIONS(3766), - [sym__block_close] = ACTIONS(3766), - [sym__block_quote_start] = ACTIONS(3766), - [sym_atx_h1_marker] = ACTIONS(3766), - [sym_atx_h2_marker] = ACTIONS(3766), - [sym_atx_h3_marker] = ACTIONS(3766), - [sym_atx_h4_marker] = ACTIONS(3766), - [sym_atx_h5_marker] = ACTIONS(3766), - [sym_atx_h6_marker] = ACTIONS(3766), - [sym__thematic_break] = ACTIONS(3766), - [sym__list_marker_minus] = ACTIONS(3766), - [sym__list_marker_plus] = ACTIONS(3766), - [sym__list_marker_star] = ACTIONS(3766), - [sym__list_marker_parenthesis] = ACTIONS(3766), - [sym__list_marker_dot] = ACTIONS(3766), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_example] = ACTIONS(3766), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3766), - [sym__fenced_code_block_start_backtick] = ACTIONS(3766), - [sym_minus_metadata] = ACTIONS(3766), - [sym__pipe_table_start] = ACTIONS(3766), - [sym__fenced_div_start] = ACTIONS(3766), - [sym__fenced_div_end] = ACTIONS(3766), - [sym_ref_id_specifier] = ACTIONS(3766), - [sym__code_span_start] = ACTIONS(3766), - [sym__html_comment] = ACTIONS(3766), - [sym__autolink] = ACTIONS(3766), - [sym__highlight_span_start] = ACTIONS(3766), - [sym__insert_span_start] = ACTIONS(3766), - [sym__delete_span_start] = ACTIONS(3766), - [sym__edit_comment_span_start] = ACTIONS(3766), - [sym__single_quote_span_open] = ACTIONS(3766), - [sym__double_quote_span_open] = ACTIONS(3766), - [sym__shortcode_open_escaped] = ACTIONS(3766), - [sym__shortcode_open] = ACTIONS(3766), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3766), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3766), - [sym__cite_author_in_text] = ACTIONS(3766), - [sym__cite_suppress_author] = ACTIONS(3766), - [sym__strikeout_open] = ACTIONS(3766), - [sym__subscript_open] = ACTIONS(3766), - [sym__superscript_open] = ACTIONS(3766), - [sym__inline_note_start_token] = ACTIONS(3766), - [sym__strong_emphasis_open_star] = ACTIONS(3766), - [sym__strong_emphasis_open_underscore] = ACTIONS(3766), - [sym__emphasis_open_star] = ACTIONS(3766), - [sym__emphasis_open_underscore] = ACTIONS(3766), - [sym_inline_note_reference] = ACTIONS(3766), - [sym_html_element] = ACTIONS(3766), + [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(3770), - [sym_entity_reference] = ACTIONS(3770), - [sym_numeric_character_reference] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(3770), - [anon_sym_BANG_LBRACK] = ACTIONS(3770), - [anon_sym_DOLLAR] = ACTIONS(3772), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3770), - [anon_sym_LBRACE] = ACTIONS(3770), - [aux_sym_pandoc_str_token1] = ACTIONS(3772), - [anon_sym_PIPE] = ACTIONS(3770), - [aux_sym__prose_punctuation_token1] = ACTIONS(3772), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3772), - [sym__line_ending] = ACTIONS(3770), - [sym__soft_line_ending] = ACTIONS(3770), - [sym__block_close] = ACTIONS(3770), - [sym__block_quote_start] = ACTIONS(3770), - [sym_atx_h1_marker] = ACTIONS(3770), - [sym_atx_h2_marker] = ACTIONS(3770), - [sym_atx_h3_marker] = ACTIONS(3770), - [sym_atx_h4_marker] = ACTIONS(3770), - [sym_atx_h5_marker] = ACTIONS(3770), - [sym_atx_h6_marker] = ACTIONS(3770), - [sym__thematic_break] = ACTIONS(3770), - [sym__list_marker_minus] = ACTIONS(3770), - [sym__list_marker_plus] = ACTIONS(3770), - [sym__list_marker_star] = ACTIONS(3770), - [sym__list_marker_parenthesis] = ACTIONS(3770), - [sym__list_marker_dot] = ACTIONS(3770), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_example] = ACTIONS(3770), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3770), - [sym__fenced_code_block_start_backtick] = ACTIONS(3770), - [sym_minus_metadata] = ACTIONS(3770), - [sym__pipe_table_start] = ACTIONS(3770), - [sym__fenced_div_start] = ACTIONS(3770), - [sym__fenced_div_end] = ACTIONS(3770), - [sym_ref_id_specifier] = ACTIONS(3770), - [sym__code_span_start] = ACTIONS(3770), - [sym__html_comment] = ACTIONS(3770), - [sym__autolink] = ACTIONS(3770), - [sym__highlight_span_start] = ACTIONS(3770), - [sym__insert_span_start] = ACTIONS(3770), - [sym__delete_span_start] = ACTIONS(3770), - [sym__edit_comment_span_start] = ACTIONS(3770), - [sym__single_quote_span_open] = ACTIONS(3770), - [sym__double_quote_span_open] = ACTIONS(3770), - [sym__shortcode_open_escaped] = ACTIONS(3770), - [sym__shortcode_open] = ACTIONS(3770), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3770), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3770), - [sym__cite_author_in_text] = ACTIONS(3770), - [sym__cite_suppress_author] = ACTIONS(3770), - [sym__strikeout_open] = ACTIONS(3770), - [sym__subscript_open] = ACTIONS(3770), - [sym__superscript_open] = ACTIONS(3770), - [sym__inline_note_start_token] = ACTIONS(3770), - [sym__strong_emphasis_open_star] = ACTIONS(3770), - [sym__strong_emphasis_open_underscore] = ACTIONS(3770), - [sym__emphasis_open_star] = ACTIONS(3770), - [sym__emphasis_open_underscore] = ACTIONS(3770), - [sym_inline_note_reference] = ACTIONS(3770), - [sym_html_element] = ACTIONS(3770), + [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(3125), - [anon_sym_COLON] = ACTIONS(3125), - [sym_entity_reference] = ACTIONS(3125), - [sym_numeric_character_reference] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_BANG_LBRACK] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [aux_sym_pandoc_str_token1] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3125), - [aux_sym__prose_punctuation_token1] = ACTIONS(3127), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3127), - [sym__line_ending] = ACTIONS(3125), - [sym__soft_line_ending] = ACTIONS(3125), - [sym_block_continuation] = ACTIONS(3774), - [sym__block_quote_start] = ACTIONS(3125), - [sym_atx_h1_marker] = ACTIONS(3125), - [sym_atx_h2_marker] = ACTIONS(3125), - [sym_atx_h3_marker] = ACTIONS(3125), - [sym_atx_h4_marker] = ACTIONS(3125), - [sym_atx_h5_marker] = ACTIONS(3125), - [sym_atx_h6_marker] = ACTIONS(3125), - [sym__thematic_break] = ACTIONS(3125), - [sym__list_marker_minus] = ACTIONS(3125), - [sym__list_marker_plus] = ACTIONS(3125), - [sym__list_marker_star] = ACTIONS(3125), - [sym__list_marker_parenthesis] = ACTIONS(3125), - [sym__list_marker_dot] = ACTIONS(3125), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_example] = ACTIONS(3125), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3125), - [sym__fenced_code_block_start_backtick] = ACTIONS(3125), - [sym_minus_metadata] = ACTIONS(3125), - [sym__pipe_table_start] = ACTIONS(3125), - [sym__fenced_div_start] = ACTIONS(3125), - [sym_ref_id_specifier] = ACTIONS(3125), - [sym__code_span_start] = ACTIONS(3125), - [sym__html_comment] = ACTIONS(3125), - [sym__autolink] = ACTIONS(3125), - [sym__highlight_span_start] = ACTIONS(3125), - [sym__insert_span_start] = ACTIONS(3125), - [sym__delete_span_start] = ACTIONS(3125), - [sym__edit_comment_span_start] = ACTIONS(3125), - [sym__single_quote_span_open] = ACTIONS(3125), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3125), - [sym__shortcode_open] = ACTIONS(3125), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3125), - [sym__cite_suppress_author] = ACTIONS(3125), - [sym__strikeout_open] = ACTIONS(3125), - [sym__subscript_open] = ACTIONS(3125), - [sym__superscript_open] = ACTIONS(3125), - [sym__inline_note_start_token] = ACTIONS(3125), - [sym__strong_emphasis_open_star] = ACTIONS(3125), - [sym__strong_emphasis_open_underscore] = ACTIONS(3125), - [sym__emphasis_open_star] = ACTIONS(3125), - [sym__emphasis_open_underscore] = ACTIONS(3125), - [sym_inline_note_reference] = ACTIONS(3125), - [sym_html_element] = ACTIONS(3125), + [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)] = { - [sym__inlines] = STATE(2855), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1236), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3776), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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)] = { - [sym__inlines] = STATE(2856), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1238), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3778), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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(3780), - [sym_entity_reference] = ACTIONS(3780), - [sym_numeric_character_reference] = ACTIONS(3780), - [anon_sym_LBRACK] = ACTIONS(3780), - [anon_sym_BANG_LBRACK] = ACTIONS(3780), - [anon_sym_DOLLAR] = ACTIONS(3782), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3780), - [anon_sym_LBRACE] = ACTIONS(3780), - [aux_sym_pandoc_str_token1] = ACTIONS(3782), - [anon_sym_PIPE] = ACTIONS(3780), - [aux_sym__prose_punctuation_token1] = ACTIONS(3782), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3782), - [sym__line_ending] = ACTIONS(3780), - [sym__soft_line_ending] = ACTIONS(3780), - [sym__block_close] = ACTIONS(3780), - [sym__block_quote_start] = ACTIONS(3780), - [sym_atx_h1_marker] = ACTIONS(3780), - [sym_atx_h2_marker] = ACTIONS(3780), - [sym_atx_h3_marker] = ACTIONS(3780), - [sym_atx_h4_marker] = ACTIONS(3780), - [sym_atx_h5_marker] = ACTIONS(3780), - [sym_atx_h6_marker] = ACTIONS(3780), - [sym__thematic_break] = ACTIONS(3780), - [sym__list_marker_minus] = ACTIONS(3780), - [sym__list_marker_plus] = ACTIONS(3780), - [sym__list_marker_star] = ACTIONS(3780), - [sym__list_marker_parenthesis] = ACTIONS(3780), - [sym__list_marker_dot] = ACTIONS(3780), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_example] = ACTIONS(3780), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3780), - [sym__fenced_code_block_start_backtick] = ACTIONS(3780), - [sym_minus_metadata] = ACTIONS(3780), - [sym__pipe_table_start] = ACTIONS(3780), - [sym__fenced_div_start] = ACTIONS(3780), - [sym__fenced_div_end] = ACTIONS(3780), - [sym_ref_id_specifier] = ACTIONS(3780), - [sym__code_span_start] = ACTIONS(3780), - [sym__html_comment] = ACTIONS(3780), - [sym__autolink] = ACTIONS(3780), - [sym__highlight_span_start] = ACTIONS(3780), - [sym__insert_span_start] = ACTIONS(3780), - [sym__delete_span_start] = ACTIONS(3780), - [sym__edit_comment_span_start] = ACTIONS(3780), - [sym__single_quote_span_open] = ACTIONS(3780), - [sym__double_quote_span_open] = ACTIONS(3780), - [sym__shortcode_open_escaped] = ACTIONS(3780), - [sym__shortcode_open] = ACTIONS(3780), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3780), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3780), - [sym__cite_author_in_text] = ACTIONS(3780), - [sym__cite_suppress_author] = ACTIONS(3780), - [sym__strikeout_open] = ACTIONS(3780), - [sym__subscript_open] = ACTIONS(3780), - [sym__superscript_open] = ACTIONS(3780), - [sym__inline_note_start_token] = ACTIONS(3780), - [sym__strong_emphasis_open_star] = ACTIONS(3780), - [sym__strong_emphasis_open_underscore] = ACTIONS(3780), - [sym__emphasis_open_star] = ACTIONS(3780), - [sym__emphasis_open_underscore] = ACTIONS(3780), - [sym_inline_note_reference] = ACTIONS(3780), - [sym_html_element] = ACTIONS(3780), + [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_pipe_table_cell] = STATE(2798), - [sym_pandoc_span] = STATE(601), - [sym_pandoc_image] = STATE(601), - [sym_pandoc_math] = STATE(601), - [sym_pandoc_display_math] = STATE(601), - [sym_pandoc_code_span] = STATE(601), - [sym_pandoc_single_quote] = STATE(601), - [sym_pandoc_double_quote] = STATE(601), - [sym_insert] = STATE(601), - [sym_delete] = STATE(601), - [sym_edit_comment] = STATE(601), - [sym_highlight] = STATE(601), - [sym__pandoc_attr_specifier] = STATE(601), - [sym__line_with_maybe_spaces] = STATE(2860), - [sym__inline_element] = STATE(601), - [sym_shortcode_escaped] = STATE(601), - [sym_shortcode] = STATE(601), - [sym_citation] = STATE(601), - [sym_inline_note] = STATE(601), - [sym_pandoc_superscript] = STATE(601), - [sym_pandoc_subscript] = STATE(601), - [sym_pandoc_strikeout] = STATE(601), - [sym_pandoc_emph] = STATE(601), - [sym_pandoc_strong] = STATE(601), - [sym_pandoc_str] = STATE(601), - [sym__prose_punctuation] = STATE(601), - [sym_pandoc_line_break] = STATE(601), - [aux_sym_pipe_table_row_repeat1] = STATE(325), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(601), - [sym_entity_reference] = ACTIONS(2805), - [sym_numeric_character_reference] = ACTIONS(2805), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(2821), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(3784), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(2805), - [sym__autolink] = ACTIONS(2805), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(2805), - [sym_html_element] = ACTIONS(2805), + [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__inlines] = STATE(2878), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1047), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3786), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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__inlines] = STATE(2879), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(996), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3788), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2257), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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)] = { - [anon_sym_COLON] = ACTIONS(3790), - [sym_entity_reference] = ACTIONS(3790), - [sym_numeric_character_reference] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3790), - [anon_sym_BANG_LBRACK] = ACTIONS(3790), - [anon_sym_DOLLAR] = ACTIONS(3792), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3790), - [anon_sym_LBRACE] = ACTIONS(3790), - [aux_sym_pandoc_str_token1] = ACTIONS(3792), - [anon_sym_PIPE] = ACTIONS(3790), - [aux_sym__prose_punctuation_token1] = ACTIONS(3792), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3792), - [sym__line_ending] = ACTIONS(3790), - [sym__soft_line_ending] = ACTIONS(3790), - [sym__block_close] = ACTIONS(3790), - [sym__block_quote_start] = ACTIONS(3790), - [sym_atx_h1_marker] = ACTIONS(3790), - [sym_atx_h2_marker] = ACTIONS(3790), - [sym_atx_h3_marker] = ACTIONS(3790), - [sym_atx_h4_marker] = ACTIONS(3790), - [sym_atx_h5_marker] = ACTIONS(3790), - [sym_atx_h6_marker] = ACTIONS(3790), - [sym__thematic_break] = ACTIONS(3790), - [sym__list_marker_minus] = ACTIONS(3790), - [sym__list_marker_plus] = ACTIONS(3790), - [sym__list_marker_star] = ACTIONS(3790), - [sym__list_marker_parenthesis] = ACTIONS(3790), - [sym__list_marker_dot] = ACTIONS(3790), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_example] = ACTIONS(3790), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3790), - [sym__fenced_code_block_start_backtick] = ACTIONS(3790), - [sym_minus_metadata] = ACTIONS(3790), - [sym__pipe_table_start] = ACTIONS(3790), - [sym__fenced_div_start] = ACTIONS(3790), - [sym__fenced_div_end] = ACTIONS(3790), - [sym_ref_id_specifier] = ACTIONS(3790), - [sym__code_span_start] = ACTIONS(3790), - [sym__html_comment] = ACTIONS(3790), - [sym__autolink] = ACTIONS(3790), - [sym__highlight_span_start] = ACTIONS(3790), - [sym__insert_span_start] = ACTIONS(3790), - [sym__delete_span_start] = ACTIONS(3790), - [sym__edit_comment_span_start] = ACTIONS(3790), - [sym__single_quote_span_open] = ACTIONS(3790), - [sym__double_quote_span_open] = ACTIONS(3790), - [sym__shortcode_open_escaped] = ACTIONS(3790), - [sym__shortcode_open] = ACTIONS(3790), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3790), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3790), - [sym__cite_author_in_text] = ACTIONS(3790), - [sym__cite_suppress_author] = ACTIONS(3790), - [sym__strikeout_open] = ACTIONS(3790), - [sym__subscript_open] = ACTIONS(3790), - [sym__superscript_open] = ACTIONS(3790), - [sym__inline_note_start_token] = ACTIONS(3790), - [sym__strong_emphasis_open_star] = ACTIONS(3790), - [sym__strong_emphasis_open_underscore] = ACTIONS(3790), - [sym__emphasis_open_star] = ACTIONS(3790), - [sym__emphasis_open_underscore] = ACTIONS(3790), - [sym_inline_note_reference] = ACTIONS(3790), - [sym_html_element] = ACTIONS(3790), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3131), - [anon_sym_COLON] = ACTIONS(3131), - [sym_entity_reference] = ACTIONS(3131), - [sym_numeric_character_reference] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_BANG_LBRACK] = ACTIONS(3131), - [anon_sym_DOLLAR] = ACTIONS(3133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [aux_sym_pandoc_str_token1] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [aux_sym__prose_punctuation_token1] = ACTIONS(3133), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3133), - [sym__line_ending] = ACTIONS(3131), - [sym__soft_line_ending] = ACTIONS(3131), - [sym_block_continuation] = ACTIONS(3794), - [sym__block_quote_start] = ACTIONS(3131), - [sym_atx_h1_marker] = ACTIONS(3131), - [sym_atx_h2_marker] = ACTIONS(3131), - [sym_atx_h3_marker] = ACTIONS(3131), - [sym_atx_h4_marker] = ACTIONS(3131), - [sym_atx_h5_marker] = ACTIONS(3131), - [sym_atx_h6_marker] = ACTIONS(3131), - [sym__thematic_break] = ACTIONS(3131), - [sym__list_marker_minus] = ACTIONS(3131), - [sym__list_marker_plus] = ACTIONS(3131), - [sym__list_marker_star] = ACTIONS(3131), - [sym__list_marker_parenthesis] = ACTIONS(3131), - [sym__list_marker_dot] = ACTIONS(3131), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_example] = ACTIONS(3131), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3131), - [sym__fenced_code_block_start_backtick] = ACTIONS(3131), - [sym_minus_metadata] = ACTIONS(3131), - [sym__pipe_table_start] = ACTIONS(3131), - [sym__fenced_div_start] = ACTIONS(3131), - [sym_ref_id_specifier] = ACTIONS(3131), - [sym__code_span_start] = ACTIONS(3131), - [sym__html_comment] = ACTIONS(3131), - [sym__autolink] = ACTIONS(3131), - [sym__highlight_span_start] = ACTIONS(3131), - [sym__insert_span_start] = ACTIONS(3131), - [sym__delete_span_start] = ACTIONS(3131), - [sym__edit_comment_span_start] = ACTIONS(3131), - [sym__single_quote_span_open] = ACTIONS(3131), - [sym__double_quote_span_open] = ACTIONS(3131), - [sym__shortcode_open_escaped] = ACTIONS(3131), - [sym__shortcode_open] = ACTIONS(3131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3131), - [sym__cite_author_in_text] = ACTIONS(3131), - [sym__cite_suppress_author] = ACTIONS(3131), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3131), - [sym__superscript_open] = ACTIONS(3131), - [sym__inline_note_start_token] = ACTIONS(3131), - [sym__strong_emphasis_open_star] = ACTIONS(3131), - [sym__strong_emphasis_open_underscore] = ACTIONS(3131), - [sym__emphasis_open_star] = ACTIONS(3131), - [sym__emphasis_open_underscore] = ACTIONS(3131), - [sym_inline_note_reference] = ACTIONS(3131), - [sym_html_element] = ACTIONS(3131), + [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(3083), - [sym_entity_reference] = ACTIONS(3083), - [sym_numeric_character_reference] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_BANG_LBRACK] = ACTIONS(3083), - [anon_sym_DOLLAR] = ACTIONS(3085), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3083), - [aux_sym_pandoc_str_token1] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3083), - [aux_sym__prose_punctuation_token1] = ACTIONS(3085), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3085), - [sym__line_ending] = ACTIONS(3083), - [sym__soft_line_ending] = ACTIONS(3083), - [sym__block_close] = ACTIONS(3083), - [sym_block_continuation] = ACTIONS(3796), - [sym__block_quote_start] = ACTIONS(3083), - [sym_atx_h1_marker] = ACTIONS(3083), - [sym_atx_h2_marker] = ACTIONS(3083), - [sym_atx_h3_marker] = ACTIONS(3083), - [sym_atx_h4_marker] = ACTIONS(3083), - [sym_atx_h5_marker] = ACTIONS(3083), - [sym_atx_h6_marker] = ACTIONS(3083), - [sym__thematic_break] = ACTIONS(3083), - [sym__list_marker_minus] = ACTIONS(3083), - [sym__list_marker_plus] = ACTIONS(3083), - [sym__list_marker_star] = ACTIONS(3083), - [sym__list_marker_parenthesis] = ACTIONS(3083), - [sym__list_marker_dot] = ACTIONS(3083), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3083), - [sym__list_marker_example] = ACTIONS(3083), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3083), - [sym__fenced_code_block_start_backtick] = ACTIONS(3083), - [sym_minus_metadata] = ACTIONS(3083), - [sym__pipe_table_start] = ACTIONS(3083), - [sym__fenced_div_start] = ACTIONS(3083), - [sym_ref_id_specifier] = ACTIONS(3083), - [sym__code_span_start] = ACTIONS(3083), - [sym__html_comment] = ACTIONS(3083), - [sym__autolink] = ACTIONS(3083), - [sym__highlight_span_start] = ACTIONS(3083), - [sym__insert_span_start] = ACTIONS(3083), - [sym__delete_span_start] = ACTIONS(3083), - [sym__edit_comment_span_start] = ACTIONS(3083), - [sym__single_quote_span_open] = ACTIONS(3083), - [sym__double_quote_span_open] = ACTIONS(3083), - [sym__shortcode_open_escaped] = ACTIONS(3083), - [sym__shortcode_open] = ACTIONS(3083), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3083), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3083), - [sym__cite_author_in_text] = ACTIONS(3083), - [sym__cite_suppress_author] = ACTIONS(3083), - [sym__strikeout_open] = ACTIONS(3083), - [sym__subscript_open] = ACTIONS(3083), - [sym__superscript_open] = ACTIONS(3083), - [sym__inline_note_start_token] = ACTIONS(3083), - [sym__strong_emphasis_open_star] = ACTIONS(3083), - [sym__strong_emphasis_open_underscore] = ACTIONS(3083), - [sym__emphasis_open_star] = ACTIONS(3083), - [sym__emphasis_open_underscore] = ACTIONS(3083), - [sym_inline_note_reference] = ACTIONS(3083), - [sym_html_element] = ACTIONS(3083), + [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)] = { - [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), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3091), - [sym__line_ending] = ACTIONS(3089), - [sym__soft_line_ending] = ACTIONS(3089), - [sym__block_close] = ACTIONS(3089), - [sym_block_continuation] = ACTIONS(3798), - [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_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), + [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)] = { - [sym__inlines] = STATE(2901), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1806), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3800), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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)] = { - [sym__inlines] = STATE(2902), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(1808), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3802), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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)] = { - [anon_sym_COLON] = ACTIONS(3095), - [sym_entity_reference] = ACTIONS(3095), - [sym_numeric_character_reference] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_BANG_LBRACK] = ACTIONS(3095), - [anon_sym_DOLLAR] = ACTIONS(3097), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3095), - [aux_sym_pandoc_str_token1] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3095), - [aux_sym__prose_punctuation_token1] = ACTIONS(3097), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3097), - [sym__line_ending] = ACTIONS(3095), - [sym__soft_line_ending] = ACTIONS(3095), - [sym__block_close] = ACTIONS(3095), - [sym_block_continuation] = ACTIONS(3804), - [sym__block_quote_start] = ACTIONS(3095), - [sym_atx_h1_marker] = ACTIONS(3095), - [sym_atx_h2_marker] = ACTIONS(3095), - [sym_atx_h3_marker] = ACTIONS(3095), - [sym_atx_h4_marker] = ACTIONS(3095), - [sym_atx_h5_marker] = ACTIONS(3095), - [sym_atx_h6_marker] = ACTIONS(3095), - [sym__thematic_break] = ACTIONS(3095), - [sym__list_marker_minus] = ACTIONS(3095), - [sym__list_marker_plus] = ACTIONS(3095), - [sym__list_marker_star] = ACTIONS(3095), - [sym__list_marker_parenthesis] = ACTIONS(3095), - [sym__list_marker_dot] = ACTIONS(3095), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3095), - [sym__list_marker_example] = ACTIONS(3095), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3095), - [sym__fenced_code_block_start_backtick] = ACTIONS(3095), - [sym_minus_metadata] = ACTIONS(3095), - [sym__pipe_table_start] = ACTIONS(3095), - [sym__fenced_div_start] = ACTIONS(3095), - [sym_ref_id_specifier] = ACTIONS(3095), - [sym__code_span_start] = ACTIONS(3095), - [sym__html_comment] = ACTIONS(3095), - [sym__autolink] = ACTIONS(3095), - [sym__highlight_span_start] = ACTIONS(3095), - [sym__insert_span_start] = ACTIONS(3095), - [sym__delete_span_start] = ACTIONS(3095), - [sym__edit_comment_span_start] = ACTIONS(3095), - [sym__single_quote_span_open] = ACTIONS(3095), - [sym__double_quote_span_open] = ACTIONS(3095), - [sym__shortcode_open_escaped] = ACTIONS(3095), - [sym__shortcode_open] = ACTIONS(3095), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3095), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3095), - [sym__cite_author_in_text] = ACTIONS(3095), - [sym__cite_suppress_author] = ACTIONS(3095), - [sym__strikeout_open] = ACTIONS(3095), - [sym__subscript_open] = ACTIONS(3095), - [sym__superscript_open] = ACTIONS(3095), - [sym__inline_note_start_token] = ACTIONS(3095), - [sym__strong_emphasis_open_star] = ACTIONS(3095), - [sym__strong_emphasis_open_underscore] = ACTIONS(3095), - [sym__emphasis_open_star] = ACTIONS(3095), - [sym__emphasis_open_underscore] = ACTIONS(3095), - [sym_inline_note_reference] = ACTIONS(3095), - [sym_html_element] = ACTIONS(3095), + [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)] = { - [anon_sym_COLON] = ACTIONS(3101), - [sym_entity_reference] = ACTIONS(3101), - [sym_numeric_character_reference] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_BANG_LBRACK] = ACTIONS(3101), - [anon_sym_DOLLAR] = ACTIONS(3103), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [aux_sym_pandoc_str_token1] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3101), - [aux_sym__prose_punctuation_token1] = ACTIONS(3103), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3103), - [sym__line_ending] = ACTIONS(3101), - [sym__soft_line_ending] = ACTIONS(3101), - [sym__block_close] = ACTIONS(3101), - [sym_block_continuation] = ACTIONS(3806), - [sym__block_quote_start] = ACTIONS(3101), - [sym_atx_h1_marker] = ACTIONS(3101), - [sym_atx_h2_marker] = ACTIONS(3101), - [sym_atx_h3_marker] = ACTIONS(3101), - [sym_atx_h4_marker] = ACTIONS(3101), - [sym_atx_h5_marker] = ACTIONS(3101), - [sym_atx_h6_marker] = ACTIONS(3101), - [sym__thematic_break] = ACTIONS(3101), - [sym__list_marker_minus] = ACTIONS(3101), - [sym__list_marker_plus] = ACTIONS(3101), - [sym__list_marker_star] = ACTIONS(3101), - [sym__list_marker_parenthesis] = ACTIONS(3101), - [sym__list_marker_dot] = ACTIONS(3101), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3101), - [sym__list_marker_example] = ACTIONS(3101), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3101), - [sym__fenced_code_block_start_backtick] = ACTIONS(3101), - [sym_minus_metadata] = ACTIONS(3101), - [sym__pipe_table_start] = ACTIONS(3101), - [sym__fenced_div_start] = ACTIONS(3101), - [sym_ref_id_specifier] = ACTIONS(3101), - [sym__code_span_start] = ACTIONS(3101), - [sym__html_comment] = ACTIONS(3101), - [sym__autolink] = ACTIONS(3101), - [sym__highlight_span_start] = ACTIONS(3101), - [sym__insert_span_start] = ACTIONS(3101), - [sym__delete_span_start] = ACTIONS(3101), - [sym__edit_comment_span_start] = ACTIONS(3101), - [sym__single_quote_span_open] = ACTIONS(3101), - [sym__double_quote_span_open] = ACTIONS(3101), - [sym__shortcode_open_escaped] = ACTIONS(3101), - [sym__shortcode_open] = ACTIONS(3101), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3101), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3101), - [sym__cite_author_in_text] = ACTIONS(3101), - [sym__cite_suppress_author] = ACTIONS(3101), - [sym__strikeout_open] = ACTIONS(3101), - [sym__subscript_open] = ACTIONS(3101), - [sym__superscript_open] = ACTIONS(3101), - [sym__inline_note_start_token] = ACTIONS(3101), - [sym__strong_emphasis_open_star] = ACTIONS(3101), - [sym__strong_emphasis_open_underscore] = ACTIONS(3101), - [sym__emphasis_open_star] = ACTIONS(3101), - [sym__emphasis_open_underscore] = ACTIONS(3101), - [sym_inline_note_reference] = ACTIONS(3101), - [sym_html_element] = ACTIONS(3101), + [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)] = { - [anon_sym_COLON] = ACTIONS(3107), - [sym_entity_reference] = ACTIONS(3107), - [sym_numeric_character_reference] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_BANG_LBRACK] = ACTIONS(3107), - [anon_sym_DOLLAR] = ACTIONS(3109), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [aux_sym_pandoc_str_token1] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3107), - [aux_sym__prose_punctuation_token1] = ACTIONS(3109), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3109), - [sym__line_ending] = ACTIONS(3107), - [sym__soft_line_ending] = ACTIONS(3107), - [sym__block_close] = ACTIONS(3107), - [sym_block_continuation] = ACTIONS(3808), - [sym__block_quote_start] = ACTIONS(3107), - [sym_atx_h1_marker] = ACTIONS(3107), - [sym_atx_h2_marker] = ACTIONS(3107), - [sym_atx_h3_marker] = ACTIONS(3107), - [sym_atx_h4_marker] = ACTIONS(3107), - [sym_atx_h5_marker] = ACTIONS(3107), - [sym_atx_h6_marker] = ACTIONS(3107), - [sym__thematic_break] = ACTIONS(3107), - [sym__list_marker_minus] = ACTIONS(3107), - [sym__list_marker_plus] = ACTIONS(3107), - [sym__list_marker_star] = ACTIONS(3107), - [sym__list_marker_parenthesis] = ACTIONS(3107), - [sym__list_marker_dot] = ACTIONS(3107), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3107), - [sym__list_marker_example] = ACTIONS(3107), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3107), - [sym__fenced_code_block_start_backtick] = ACTIONS(3107), - [sym_minus_metadata] = ACTIONS(3107), - [sym__pipe_table_start] = ACTIONS(3107), - [sym__fenced_div_start] = ACTIONS(3107), - [sym_ref_id_specifier] = ACTIONS(3107), - [sym__code_span_start] = ACTIONS(3107), - [sym__html_comment] = ACTIONS(3107), - [sym__autolink] = ACTIONS(3107), - [sym__highlight_span_start] = ACTIONS(3107), - [sym__insert_span_start] = ACTIONS(3107), - [sym__delete_span_start] = ACTIONS(3107), - [sym__edit_comment_span_start] = ACTIONS(3107), - [sym__single_quote_span_open] = ACTIONS(3107), - [sym__double_quote_span_open] = ACTIONS(3107), - [sym__shortcode_open_escaped] = ACTIONS(3107), - [sym__shortcode_open] = ACTIONS(3107), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3107), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3107), - [sym__cite_author_in_text] = ACTIONS(3107), - [sym__cite_suppress_author] = ACTIONS(3107), - [sym__strikeout_open] = ACTIONS(3107), - [sym__subscript_open] = ACTIONS(3107), - [sym__superscript_open] = ACTIONS(3107), - [sym__inline_note_start_token] = ACTIONS(3107), - [sym__strong_emphasis_open_star] = ACTIONS(3107), - [sym__strong_emphasis_open_underscore] = ACTIONS(3107), - [sym__emphasis_open_star] = ACTIONS(3107), - [sym__emphasis_open_underscore] = ACTIONS(3107), - [sym_inline_note_reference] = ACTIONS(3107), - [sym_html_element] = ACTIONS(3107), + [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)] = { - [anon_sym_COLON] = ACTIONS(3113), - [sym_entity_reference] = ACTIONS(3113), - [sym_numeric_character_reference] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3113), - [anon_sym_BANG_LBRACK] = ACTIONS(3113), - [anon_sym_DOLLAR] = ACTIONS(3115), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3113), - [aux_sym_pandoc_str_token1] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3113), - [aux_sym__prose_punctuation_token1] = ACTIONS(3115), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3115), - [sym__line_ending] = ACTIONS(3113), - [sym__soft_line_ending] = ACTIONS(3113), - [sym__block_close] = ACTIONS(3113), - [sym_block_continuation] = ACTIONS(3810), - [sym__block_quote_start] = ACTIONS(3113), - [sym_atx_h1_marker] = ACTIONS(3113), - [sym_atx_h2_marker] = ACTIONS(3113), - [sym_atx_h3_marker] = ACTIONS(3113), - [sym_atx_h4_marker] = ACTIONS(3113), - [sym_atx_h5_marker] = ACTIONS(3113), - [sym_atx_h6_marker] = ACTIONS(3113), - [sym__thematic_break] = ACTIONS(3113), - [sym__list_marker_minus] = ACTIONS(3113), - [sym__list_marker_plus] = ACTIONS(3113), - [sym__list_marker_star] = ACTIONS(3113), - [sym__list_marker_parenthesis] = ACTIONS(3113), - [sym__list_marker_dot] = ACTIONS(3113), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3113), - [sym__list_marker_example] = ACTIONS(3113), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3113), - [sym__fenced_code_block_start_backtick] = ACTIONS(3113), - [sym_minus_metadata] = ACTIONS(3113), - [sym__pipe_table_start] = ACTIONS(3113), - [sym__fenced_div_start] = ACTIONS(3113), - [sym_ref_id_specifier] = ACTIONS(3113), - [sym__code_span_start] = ACTIONS(3113), - [sym__html_comment] = ACTIONS(3113), - [sym__autolink] = ACTIONS(3113), - [sym__highlight_span_start] = ACTIONS(3113), - [sym__insert_span_start] = ACTIONS(3113), - [sym__delete_span_start] = ACTIONS(3113), - [sym__edit_comment_span_start] = ACTIONS(3113), - [sym__single_quote_span_open] = ACTIONS(3113), - [sym__double_quote_span_open] = ACTIONS(3113), - [sym__shortcode_open_escaped] = ACTIONS(3113), - [sym__shortcode_open] = ACTIONS(3113), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3113), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3113), - [sym__cite_author_in_text] = ACTIONS(3113), - [sym__cite_suppress_author] = ACTIONS(3113), - [sym__strikeout_open] = ACTIONS(3113), - [sym__subscript_open] = ACTIONS(3113), - [sym__superscript_open] = ACTIONS(3113), - [sym__inline_note_start_token] = ACTIONS(3113), - [sym__strong_emphasis_open_star] = ACTIONS(3113), - [sym__strong_emphasis_open_underscore] = ACTIONS(3113), - [sym__emphasis_open_star] = ACTIONS(3113), - [sym__emphasis_open_underscore] = ACTIONS(3113), - [sym_inline_note_reference] = ACTIONS(3113), - [sym_html_element] = ACTIONS(3113), + [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)] = { - [anon_sym_COLON] = ACTIONS(3119), - [sym_entity_reference] = ACTIONS(3119), - [sym_numeric_character_reference] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_BANG_LBRACK] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3119), - [aux_sym_pandoc_str_token1] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3119), - [aux_sym__prose_punctuation_token1] = ACTIONS(3121), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3121), - [sym__line_ending] = ACTIONS(3119), - [sym__soft_line_ending] = ACTIONS(3119), - [sym__block_close] = ACTIONS(3119), - [sym_block_continuation] = ACTIONS(3812), - [sym__block_quote_start] = ACTIONS(3119), - [sym_atx_h1_marker] = ACTIONS(3119), - [sym_atx_h2_marker] = ACTIONS(3119), - [sym_atx_h3_marker] = ACTIONS(3119), - [sym_atx_h4_marker] = ACTIONS(3119), - [sym_atx_h5_marker] = ACTIONS(3119), - [sym_atx_h6_marker] = ACTIONS(3119), - [sym__thematic_break] = ACTIONS(3119), - [sym__list_marker_minus] = ACTIONS(3119), - [sym__list_marker_plus] = ACTIONS(3119), - [sym__list_marker_star] = ACTIONS(3119), - [sym__list_marker_parenthesis] = ACTIONS(3119), - [sym__list_marker_dot] = ACTIONS(3119), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_example] = ACTIONS(3119), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3119), - [sym__fenced_code_block_start_backtick] = ACTIONS(3119), - [sym_minus_metadata] = ACTIONS(3119), - [sym__pipe_table_start] = ACTIONS(3119), - [sym__fenced_div_start] = ACTIONS(3119), - [sym_ref_id_specifier] = ACTIONS(3119), - [sym__code_span_start] = ACTIONS(3119), - [sym__html_comment] = ACTIONS(3119), - [sym__autolink] = ACTIONS(3119), - [sym__highlight_span_start] = ACTIONS(3119), - [sym__insert_span_start] = ACTIONS(3119), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3119), - [sym__single_quote_span_open] = ACTIONS(3119), - [sym__double_quote_span_open] = ACTIONS(3119), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3119), - [sym__cite_author_in_text] = ACTIONS(3119), - [sym__cite_suppress_author] = ACTIONS(3119), - [sym__strikeout_open] = ACTIONS(3119), - [sym__subscript_open] = ACTIONS(3119), - [sym__superscript_open] = ACTIONS(3119), - [sym__inline_note_start_token] = ACTIONS(3119), - [sym__strong_emphasis_open_star] = ACTIONS(3119), - [sym__strong_emphasis_open_underscore] = ACTIONS(3119), - [sym__emphasis_open_star] = ACTIONS(3119), - [sym__emphasis_open_underscore] = ACTIONS(3119), - [sym_inline_note_reference] = ACTIONS(3119), - [sym_html_element] = ACTIONS(3119), + [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(2923), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(912), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3814), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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)] = { - [sym__inlines] = STATE(2924), - [sym_pandoc_span] = STATE(402), - [sym_pandoc_image] = STATE(402), - [sym_target] = STATE(922), - [sym_pandoc_math] = STATE(402), - [sym_pandoc_display_math] = STATE(402), - [sym_pandoc_code_span] = STATE(402), - [sym_pandoc_single_quote] = STATE(402), - [sym_pandoc_double_quote] = STATE(402), - [sym_insert] = STATE(402), - [sym_delete] = STATE(402), - [sym_edit_comment] = STATE(402), - [sym_highlight] = STATE(402), - [sym__pandoc_attr_specifier] = STATE(402), - [sym__line] = STATE(2643), - [sym__inline_element] = STATE(402), - [sym_shortcode_escaped] = STATE(402), - [sym_shortcode] = STATE(402), - [sym_citation] = STATE(402), - [sym_inline_note] = STATE(402), - [sym_pandoc_superscript] = STATE(402), - [sym_pandoc_subscript] = STATE(402), - [sym_pandoc_strikeout] = STATE(402), - [sym_pandoc_emph] = STATE(402), - [sym_pandoc_strong] = STATE(402), - [sym_pandoc_str] = STATE(402), - [sym__prose_punctuation] = STATE(402), - [sym_pandoc_line_break] = STATE(402), - [sym_entity_reference] = ACTIONS(2059), - [sym_numeric_character_reference] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2061), - [aux_sym_pandoc_span_token1] = ACTIONS(3816), - [anon_sym_BANG_LBRACK] = ACTIONS(2065), - [aux_sym_target_token1] = ACTIONS(2131), - [anon_sym_DOLLAR] = ACTIONS(2069), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [aux_sym_pandoc_str_token1] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2077), - [aux_sym__prose_punctuation_token1] = ACTIONS(2079), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2081), - [sym__code_span_start] = ACTIONS(2087), - [sym__html_comment] = ACTIONS(2059), - [sym__autolink] = ACTIONS(2059), - [sym__highlight_span_start] = ACTIONS(2089), - [sym__insert_span_start] = ACTIONS(2091), - [sym__delete_span_start] = ACTIONS(2093), - [sym__edit_comment_span_start] = ACTIONS(2095), - [sym__single_quote_span_open] = ACTIONS(2097), - [sym__double_quote_span_open] = ACTIONS(2099), - [sym__shortcode_open_escaped] = ACTIONS(2101), - [sym__shortcode_open] = ACTIONS(2103), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2105), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2107), - [sym__cite_author_in_text] = ACTIONS(2109), - [sym__cite_suppress_author] = ACTIONS(2111), - [sym__strikeout_open] = ACTIONS(2113), - [sym__subscript_open] = ACTIONS(2115), - [sym__superscript_open] = ACTIONS(2117), - [sym__inline_note_start_token] = ACTIONS(2119), - [sym__strong_emphasis_open_star] = ACTIONS(2121), - [sym__strong_emphasis_open_underscore] = ACTIONS(2123), - [sym__emphasis_open_star] = ACTIONS(2125), - [sym__emphasis_open_underscore] = ACTIONS(2127), - [sym_inline_note_reference] = ACTIONS(2059), - [sym_html_element] = ACTIONS(2059), + [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)] = { - [anon_sym_COLON] = ACTIONS(3818), - [sym_entity_reference] = ACTIONS(3818), - [sym_numeric_character_reference] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3818), - [anon_sym_BANG_LBRACK] = ACTIONS(3818), - [anon_sym_DOLLAR] = ACTIONS(3820), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3818), - [aux_sym_pandoc_str_token1] = ACTIONS(3820), - [anon_sym_PIPE] = ACTIONS(3818), - [aux_sym__prose_punctuation_token1] = ACTIONS(3820), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3820), - [sym__line_ending] = ACTIONS(3818), - [sym__soft_line_ending] = ACTIONS(3818), - [sym__block_close] = ACTIONS(3818), - [sym__block_quote_start] = ACTIONS(3818), - [sym_atx_h1_marker] = ACTIONS(3818), - [sym_atx_h2_marker] = ACTIONS(3818), - [sym_atx_h3_marker] = ACTIONS(3818), - [sym_atx_h4_marker] = ACTIONS(3818), - [sym_atx_h5_marker] = ACTIONS(3818), - [sym_atx_h6_marker] = ACTIONS(3818), - [sym__thematic_break] = ACTIONS(3818), - [sym__list_marker_minus] = ACTIONS(3818), - [sym__list_marker_plus] = ACTIONS(3818), - [sym__list_marker_star] = ACTIONS(3818), - [sym__list_marker_parenthesis] = ACTIONS(3818), - [sym__list_marker_dot] = ACTIONS(3818), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_example] = ACTIONS(3818), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3818), - [sym__fenced_code_block_start_backtick] = ACTIONS(3818), - [sym_minus_metadata] = ACTIONS(3818), - [sym__pipe_table_start] = ACTIONS(3818), - [sym__fenced_div_start] = ACTIONS(3818), - [sym__fenced_div_end] = ACTIONS(3818), - [sym_ref_id_specifier] = ACTIONS(3818), - [sym__code_span_start] = ACTIONS(3818), - [sym__html_comment] = ACTIONS(3818), - [sym__autolink] = ACTIONS(3818), - [sym__highlight_span_start] = ACTIONS(3818), - [sym__insert_span_start] = ACTIONS(3818), - [sym__delete_span_start] = ACTIONS(3818), - [sym__edit_comment_span_start] = ACTIONS(3818), - [sym__single_quote_span_open] = ACTIONS(3818), - [sym__double_quote_span_open] = ACTIONS(3818), - [sym__shortcode_open_escaped] = ACTIONS(3818), - [sym__shortcode_open] = ACTIONS(3818), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3818), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3818), - [sym__cite_author_in_text] = ACTIONS(3818), - [sym__cite_suppress_author] = ACTIONS(3818), - [sym__strikeout_open] = ACTIONS(3818), - [sym__subscript_open] = ACTIONS(3818), - [sym__superscript_open] = ACTIONS(3818), - [sym__inline_note_start_token] = ACTIONS(3818), - [sym__strong_emphasis_open_star] = ACTIONS(3818), - [sym__strong_emphasis_open_underscore] = ACTIONS(3818), - [sym__emphasis_open_star] = ACTIONS(3818), - [sym__emphasis_open_underscore] = ACTIONS(3818), - [sym_inline_note_reference] = ACTIONS(3818), - [sym_html_element] = ACTIONS(3818), + [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)] = { - [sym_pipe_table_cell] = STATE(3253), - [sym_pandoc_span] = STATE(742), - [sym_pandoc_image] = STATE(742), - [sym_pandoc_math] = STATE(742), - [sym_pandoc_display_math] = STATE(742), - [sym_pandoc_code_span] = STATE(742), - [sym_pandoc_single_quote] = STATE(742), - [sym_pandoc_double_quote] = STATE(742), - [sym_insert] = STATE(742), - [sym_delete] = STATE(742), - [sym_edit_comment] = STATE(742), - [sym_highlight] = STATE(742), - [sym__pandoc_attr_specifier] = STATE(742), - [sym__line_with_maybe_spaces] = STATE(3118), - [sym__inline_element] = STATE(742), - [sym_shortcode_escaped] = STATE(742), - [sym_shortcode] = STATE(742), - [sym_citation] = STATE(742), - [sym_inline_note] = STATE(742), - [sym_pandoc_superscript] = STATE(742), - [sym_pandoc_subscript] = STATE(742), - [sym_pandoc_strikeout] = STATE(742), - [sym_pandoc_emph] = STATE(742), - [sym_pandoc_strong] = STATE(742), - [sym_pandoc_str] = STATE(742), - [sym__prose_punctuation] = STATE(742), - [sym_pandoc_line_break] = STATE(742), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(742), - [sym_entity_reference] = ACTIONS(3242), - [sym_numeric_character_reference] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_BANG_LBRACK] = ACTIONS(3246), - [anon_sym_DOLLAR] = ACTIONS(3248), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3252), - [aux_sym_pandoc_str_token1] = ACTIONS(3254), - [anon_sym_PIPE] = ACTIONS(3256), - [aux_sym__prose_punctuation_token1] = ACTIONS(3258), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3260), - [sym__whitespace] = ACTIONS(3262), - [sym__code_span_start] = ACTIONS(3264), - [sym__html_comment] = ACTIONS(3242), - [sym__autolink] = ACTIONS(3242), - [sym__highlight_span_start] = ACTIONS(3266), - [sym__insert_span_start] = ACTIONS(3268), - [sym__delete_span_start] = ACTIONS(3270), - [sym__edit_comment_span_start] = ACTIONS(3272), - [sym__single_quote_span_open] = ACTIONS(3274), - [sym__double_quote_span_open] = ACTIONS(3276), - [sym__shortcode_open_escaped] = ACTIONS(3278), - [sym__shortcode_open] = ACTIONS(3280), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3282), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3284), - [sym__cite_author_in_text] = ACTIONS(3286), - [sym__cite_suppress_author] = ACTIONS(3288), - [sym__strikeout_open] = ACTIONS(3290), - [sym__subscript_open] = ACTIONS(3292), - [sym__superscript_open] = ACTIONS(3294), - [sym__inline_note_start_token] = ACTIONS(3296), - [sym__strong_emphasis_open_star] = ACTIONS(3298), - [sym__strong_emphasis_open_underscore] = ACTIONS(3300), - [sym__emphasis_open_star] = ACTIONS(3302), - [sym__emphasis_open_underscore] = ACTIONS(3304), - [sym_inline_note_reference] = ACTIONS(3242), - [sym_html_element] = ACTIONS(3242), - [sym__pipe_table_delimiter] = ACTIONS(2397), + [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(3137), - [anon_sym_COLON] = ACTIONS(3137), - [sym_entity_reference] = ACTIONS(3137), - [sym_numeric_character_reference] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_BANG_LBRACK] = ACTIONS(3137), - [anon_sym_DOLLAR] = ACTIONS(3139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [aux_sym_pandoc_str_token1] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3137), - [aux_sym__prose_punctuation_token1] = ACTIONS(3139), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3139), - [sym__line_ending] = ACTIONS(3137), - [sym__soft_line_ending] = ACTIONS(3137), - [sym_block_continuation] = ACTIONS(3822), - [sym__block_quote_start] = ACTIONS(3137), - [sym_atx_h1_marker] = ACTIONS(3137), - [sym_atx_h2_marker] = ACTIONS(3137), - [sym_atx_h3_marker] = ACTIONS(3137), - [sym_atx_h4_marker] = ACTIONS(3137), - [sym_atx_h5_marker] = ACTIONS(3137), - [sym_atx_h6_marker] = ACTIONS(3137), - [sym__thematic_break] = ACTIONS(3137), - [sym__list_marker_minus] = ACTIONS(3137), - [sym__list_marker_plus] = ACTIONS(3137), - [sym__list_marker_star] = ACTIONS(3137), - [sym__list_marker_parenthesis] = ACTIONS(3137), - [sym__list_marker_dot] = ACTIONS(3137), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_example] = ACTIONS(3137), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3137), - [sym__fenced_code_block_start_backtick] = ACTIONS(3137), - [sym_minus_metadata] = ACTIONS(3137), - [sym__pipe_table_start] = ACTIONS(3137), - [sym__fenced_div_start] = ACTIONS(3137), - [sym_ref_id_specifier] = ACTIONS(3137), - [sym__code_span_start] = ACTIONS(3137), - [sym__html_comment] = ACTIONS(3137), - [sym__autolink] = ACTIONS(3137), - [sym__highlight_span_start] = ACTIONS(3137), - [sym__insert_span_start] = ACTIONS(3137), - [sym__delete_span_start] = ACTIONS(3137), - [sym__edit_comment_span_start] = ACTIONS(3137), - [sym__single_quote_span_open] = ACTIONS(3137), - [sym__double_quote_span_open] = ACTIONS(3137), - [sym__shortcode_open_escaped] = ACTIONS(3137), - [sym__shortcode_open] = ACTIONS(3137), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3137), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3137), - [sym__cite_author_in_text] = ACTIONS(3137), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3137), - [sym__subscript_open] = ACTIONS(3137), - [sym__superscript_open] = ACTIONS(3137), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3137), - [sym__strong_emphasis_open_underscore] = ACTIONS(3137), - [sym__emphasis_open_star] = ACTIONS(3137), - [sym__emphasis_open_underscore] = ACTIONS(3137), - [sym_inline_note_reference] = ACTIONS(3137), - [sym_html_element] = ACTIONS(3137), + [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)] = { - [anon_sym_COLON] = ACTIONS(3131), - [sym_entity_reference] = ACTIONS(3131), - [sym_numeric_character_reference] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_BANG_LBRACK] = ACTIONS(3131), - [anon_sym_DOLLAR] = ACTIONS(3133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [aux_sym_pandoc_str_token1] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [aux_sym__prose_punctuation_token1] = ACTIONS(3133), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3133), - [sym__line_ending] = ACTIONS(3131), - [sym__soft_line_ending] = ACTIONS(3131), - [sym__block_close] = ACTIONS(3131), - [sym_block_continuation] = ACTIONS(3824), - [sym__block_quote_start] = ACTIONS(3131), - [sym_atx_h1_marker] = ACTIONS(3131), - [sym_atx_h2_marker] = ACTIONS(3131), - [sym_atx_h3_marker] = ACTIONS(3131), - [sym_atx_h4_marker] = ACTIONS(3131), - [sym_atx_h5_marker] = ACTIONS(3131), - [sym_atx_h6_marker] = ACTIONS(3131), - [sym__thematic_break] = ACTIONS(3131), - [sym__list_marker_minus] = ACTIONS(3131), - [sym__list_marker_plus] = ACTIONS(3131), - [sym__list_marker_star] = ACTIONS(3131), - [sym__list_marker_parenthesis] = ACTIONS(3131), - [sym__list_marker_dot] = ACTIONS(3131), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_example] = ACTIONS(3131), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3131), - [sym__fenced_code_block_start_backtick] = ACTIONS(3131), - [sym_minus_metadata] = ACTIONS(3131), - [sym__pipe_table_start] = ACTIONS(3131), - [sym__fenced_div_start] = ACTIONS(3131), - [sym_ref_id_specifier] = ACTIONS(3131), - [sym__code_span_start] = ACTIONS(3131), - [sym__html_comment] = ACTIONS(3131), - [sym__autolink] = ACTIONS(3131), - [sym__highlight_span_start] = ACTIONS(3131), - [sym__insert_span_start] = ACTIONS(3131), - [sym__delete_span_start] = ACTIONS(3131), - [sym__edit_comment_span_start] = ACTIONS(3131), - [sym__single_quote_span_open] = ACTIONS(3131), - [sym__double_quote_span_open] = ACTIONS(3131), - [sym__shortcode_open_escaped] = ACTIONS(3131), - [sym__shortcode_open] = ACTIONS(3131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3131), - [sym__cite_author_in_text] = ACTIONS(3131), - [sym__cite_suppress_author] = ACTIONS(3131), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3131), - [sym__superscript_open] = ACTIONS(3131), - [sym__inline_note_start_token] = ACTIONS(3131), - [sym__strong_emphasis_open_star] = ACTIONS(3131), - [sym__strong_emphasis_open_underscore] = ACTIONS(3131), - [sym__emphasis_open_star] = ACTIONS(3131), - [sym__emphasis_open_underscore] = ACTIONS(3131), - [sym_inline_note_reference] = ACTIONS(3131), - [sym_html_element] = ACTIONS(3131), + [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_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(470)] = { - [anon_sym_COLON] = ACTIONS(3137), - [sym_entity_reference] = ACTIONS(3137), - [sym_numeric_character_reference] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_BANG_LBRACK] = ACTIONS(3137), - [anon_sym_DOLLAR] = ACTIONS(3139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [aux_sym_pandoc_str_token1] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3137), - [aux_sym__prose_punctuation_token1] = ACTIONS(3139), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3139), - [sym__line_ending] = ACTIONS(3137), - [sym__soft_line_ending] = ACTIONS(3137), - [sym__block_close] = ACTIONS(3137), - [sym_block_continuation] = ACTIONS(3826), - [sym__block_quote_start] = ACTIONS(3137), - [sym_atx_h1_marker] = ACTIONS(3137), - [sym_atx_h2_marker] = ACTIONS(3137), - [sym_atx_h3_marker] = ACTIONS(3137), - [sym_atx_h4_marker] = ACTIONS(3137), - [sym_atx_h5_marker] = ACTIONS(3137), - [sym_atx_h6_marker] = ACTIONS(3137), - [sym__thematic_break] = ACTIONS(3137), - [sym__list_marker_minus] = ACTIONS(3137), - [sym__list_marker_plus] = ACTIONS(3137), - [sym__list_marker_star] = ACTIONS(3137), - [sym__list_marker_parenthesis] = ACTIONS(3137), - [sym__list_marker_dot] = ACTIONS(3137), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_example] = ACTIONS(3137), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3137), - [sym__fenced_code_block_start_backtick] = ACTIONS(3137), - [sym_minus_metadata] = ACTIONS(3137), - [sym__pipe_table_start] = ACTIONS(3137), - [sym__fenced_div_start] = ACTIONS(3137), - [sym_ref_id_specifier] = ACTIONS(3137), - [sym__code_span_start] = ACTIONS(3137), - [sym__html_comment] = ACTIONS(3137), - [sym__autolink] = ACTIONS(3137), - [sym__highlight_span_start] = ACTIONS(3137), - [sym__insert_span_start] = ACTIONS(3137), - [sym__delete_span_start] = ACTIONS(3137), - [sym__edit_comment_span_start] = ACTIONS(3137), - [sym__single_quote_span_open] = ACTIONS(3137), - [sym__double_quote_span_open] = ACTIONS(3137), - [sym__shortcode_open_escaped] = ACTIONS(3137), - [sym__shortcode_open] = ACTIONS(3137), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3137), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3137), - [sym__cite_author_in_text] = ACTIONS(3137), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3137), - [sym__subscript_open] = ACTIONS(3137), - [sym__superscript_open] = ACTIONS(3137), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3137), - [sym__strong_emphasis_open_underscore] = ACTIONS(3137), - [sym__emphasis_open_star] = ACTIONS(3137), - [sym__emphasis_open_underscore] = ACTIONS(3137), - [sym_inline_note_reference] = ACTIONS(3137), - [sym_html_element] = ACTIONS(3137), + [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(471)] = { - [anon_sym_COLON] = ACTIONS(3828), - [sym_entity_reference] = ACTIONS(3828), - [sym_numeric_character_reference] = ACTIONS(3828), - [anon_sym_LBRACK] = ACTIONS(3828), - [anon_sym_BANG_LBRACK] = ACTIONS(3828), - [anon_sym_DOLLAR] = ACTIONS(3830), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3828), - [aux_sym_pandoc_str_token1] = ACTIONS(3830), - [anon_sym_PIPE] = ACTIONS(3828), - [aux_sym__prose_punctuation_token1] = ACTIONS(3830), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3830), - [sym__line_ending] = ACTIONS(3828), - [sym__soft_line_ending] = ACTIONS(3828), - [sym__block_close] = ACTIONS(3828), - [sym__block_quote_start] = ACTIONS(3828), - [sym_atx_h1_marker] = ACTIONS(3828), - [sym_atx_h2_marker] = ACTIONS(3828), - [sym_atx_h3_marker] = ACTIONS(3828), - [sym_atx_h4_marker] = ACTIONS(3828), - [sym_atx_h5_marker] = ACTIONS(3828), - [sym_atx_h6_marker] = ACTIONS(3828), - [sym__thematic_break] = ACTIONS(3828), - [sym__list_marker_minus] = ACTIONS(3828), - [sym__list_marker_plus] = ACTIONS(3828), - [sym__list_marker_star] = ACTIONS(3828), - [sym__list_marker_parenthesis] = ACTIONS(3828), - [sym__list_marker_dot] = ACTIONS(3828), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_example] = ACTIONS(3828), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3828), - [sym__fenced_code_block_start_backtick] = ACTIONS(3828), - [sym_minus_metadata] = ACTIONS(3828), - [sym__pipe_table_start] = ACTIONS(3828), - [sym__fenced_div_start] = ACTIONS(3828), - [sym__fenced_div_end] = ACTIONS(3828), - [sym_ref_id_specifier] = ACTIONS(3828), - [sym__code_span_start] = ACTIONS(3828), - [sym__html_comment] = ACTIONS(3828), - [sym__autolink] = ACTIONS(3828), - [sym__highlight_span_start] = ACTIONS(3828), - [sym__insert_span_start] = ACTIONS(3828), - [sym__delete_span_start] = ACTIONS(3828), - [sym__edit_comment_span_start] = ACTIONS(3828), - [sym__single_quote_span_open] = ACTIONS(3828), - [sym__double_quote_span_open] = ACTIONS(3828), - [sym__shortcode_open_escaped] = ACTIONS(3828), - [sym__shortcode_open] = ACTIONS(3828), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3828), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3828), - [sym__cite_author_in_text] = ACTIONS(3828), - [sym__cite_suppress_author] = ACTIONS(3828), - [sym__strikeout_open] = ACTIONS(3828), - [sym__subscript_open] = ACTIONS(3828), - [sym__superscript_open] = ACTIONS(3828), - [sym__inline_note_start_token] = ACTIONS(3828), - [sym__strong_emphasis_open_star] = ACTIONS(3828), - [sym__strong_emphasis_open_underscore] = ACTIONS(3828), - [sym__emphasis_open_star] = ACTIONS(3828), - [sym__emphasis_open_underscore] = ACTIONS(3828), - [sym_inline_note_reference] = ACTIONS(3828), - [sym_html_element] = ACTIONS(3828), + [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(472)] = { - [anon_sym_COLON] = ACTIONS(3143), - [sym_entity_reference] = ACTIONS(3143), - [sym_numeric_character_reference] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_BANG_LBRACK] = ACTIONS(3143), - [anon_sym_DOLLAR] = ACTIONS(3145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3143), - [aux_sym_pandoc_str_token1] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3143), - [aux_sym__prose_punctuation_token1] = ACTIONS(3145), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3145), - [sym__line_ending] = ACTIONS(3143), - [sym__soft_line_ending] = ACTIONS(3143), - [sym__block_close] = ACTIONS(3143), - [sym_block_continuation] = ACTIONS(3832), - [sym__block_quote_start] = ACTIONS(3143), - [sym_atx_h1_marker] = ACTIONS(3143), - [sym_atx_h2_marker] = ACTIONS(3143), - [sym_atx_h3_marker] = ACTIONS(3143), - [sym_atx_h4_marker] = ACTIONS(3143), - [sym_atx_h5_marker] = ACTIONS(3143), - [sym_atx_h6_marker] = ACTIONS(3143), - [sym__thematic_break] = ACTIONS(3143), - [sym__list_marker_minus] = ACTIONS(3143), - [sym__list_marker_plus] = ACTIONS(3143), - [sym__list_marker_star] = ACTIONS(3143), - [sym__list_marker_parenthesis] = ACTIONS(3143), - [sym__list_marker_dot] = ACTIONS(3143), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_example] = ACTIONS(3143), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3143), - [sym__fenced_code_block_start_backtick] = ACTIONS(3143), - [sym_minus_metadata] = ACTIONS(3143), - [sym__pipe_table_start] = ACTIONS(3143), - [sym__fenced_div_start] = ACTIONS(3143), - [sym_ref_id_specifier] = ACTIONS(3143), - [sym__code_span_start] = ACTIONS(3143), - [sym__html_comment] = ACTIONS(3143), - [sym__autolink] = ACTIONS(3143), - [sym__highlight_span_start] = ACTIONS(3143), - [sym__insert_span_start] = ACTIONS(3143), - [sym__delete_span_start] = ACTIONS(3143), - [sym__edit_comment_span_start] = ACTIONS(3143), - [sym__single_quote_span_open] = ACTIONS(3143), - [sym__double_quote_span_open] = ACTIONS(3143), - [sym__shortcode_open_escaped] = ACTIONS(3143), - [sym__shortcode_open] = ACTIONS(3143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3143), - [sym__cite_author_in_text] = ACTIONS(3143), - [sym__cite_suppress_author] = ACTIONS(3143), - [sym__strikeout_open] = ACTIONS(3143), - [sym__subscript_open] = ACTIONS(3143), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3143), - [sym__strong_emphasis_open_star] = ACTIONS(3143), - [sym__strong_emphasis_open_underscore] = ACTIONS(3143), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3143), - [sym_inline_note_reference] = ACTIONS(3143), - [sym_html_element] = ACTIONS(3143), + [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(473)] = { - [anon_sym_COLON] = ACTIONS(3208), - [sym_entity_reference] = ACTIONS(3208), - [sym_numeric_character_reference] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_BANG_LBRACK] = ACTIONS(3208), - [anon_sym_DOLLAR] = ACTIONS(3210), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3208), - [aux_sym_pandoc_str_token1] = ACTIONS(3210), - [anon_sym_PIPE] = ACTIONS(3208), - [aux_sym__prose_punctuation_token1] = ACTIONS(3210), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3210), - [sym__line_ending] = ACTIONS(3208), - [sym__soft_line_ending] = ACTIONS(3208), - [sym__block_close] = ACTIONS(3208), - [sym_block_continuation] = ACTIONS(3834), - [sym__block_quote_start] = ACTIONS(3208), - [sym_atx_h1_marker] = ACTIONS(3208), - [sym_atx_h2_marker] = ACTIONS(3208), - [sym_atx_h3_marker] = ACTIONS(3208), - [sym_atx_h4_marker] = ACTIONS(3208), - [sym_atx_h5_marker] = ACTIONS(3208), - [sym_atx_h6_marker] = ACTIONS(3208), - [sym__thematic_break] = ACTIONS(3208), - [sym__list_marker_minus] = ACTIONS(3208), - [sym__list_marker_plus] = ACTIONS(3208), - [sym__list_marker_star] = ACTIONS(3208), - [sym__list_marker_parenthesis] = ACTIONS(3208), - [sym__list_marker_dot] = ACTIONS(3208), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_example] = ACTIONS(3208), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3208), - [sym__fenced_code_block_start_backtick] = ACTIONS(3208), - [sym_minus_metadata] = ACTIONS(3208), - [sym__pipe_table_start] = ACTIONS(3208), - [sym__fenced_div_start] = ACTIONS(3208), - [sym_ref_id_specifier] = ACTIONS(3208), - [sym__code_span_start] = ACTIONS(3208), - [sym__html_comment] = ACTIONS(3208), - [sym__autolink] = ACTIONS(3208), - [sym__highlight_span_start] = ACTIONS(3208), - [sym__insert_span_start] = ACTIONS(3208), - [sym__delete_span_start] = ACTIONS(3208), - [sym__edit_comment_span_start] = ACTIONS(3208), - [sym__single_quote_span_open] = ACTIONS(3208), - [sym__double_quote_span_open] = ACTIONS(3208), - [sym__shortcode_open_escaped] = ACTIONS(3208), - [sym__shortcode_open] = ACTIONS(3208), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3208), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3208), - [sym__cite_author_in_text] = ACTIONS(3208), - [sym__cite_suppress_author] = ACTIONS(3208), - [sym__strikeout_open] = ACTIONS(3208), - [sym__subscript_open] = ACTIONS(3208), - [sym__superscript_open] = ACTIONS(3208), - [sym__inline_note_start_token] = ACTIONS(3208), - [sym__strong_emphasis_open_star] = ACTIONS(3208), - [sym__strong_emphasis_open_underscore] = ACTIONS(3208), - [sym__emphasis_open_star] = ACTIONS(3208), - [sym__emphasis_open_underscore] = ACTIONS(3208), - [sym_inline_note_reference] = ACTIONS(3208), - [sym_html_element] = ACTIONS(3208), + [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(474)] = { - [anon_sym_COLON] = ACTIONS(3151), - [sym_entity_reference] = ACTIONS(3151), - [sym_numeric_character_reference] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_BANG_LBRACK] = ACTIONS(3151), - [anon_sym_DOLLAR] = ACTIONS(3153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [aux_sym_pandoc_str_token1] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3151), - [aux_sym__prose_punctuation_token1] = ACTIONS(3153), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3153), - [sym__line_ending] = ACTIONS(3151), - [sym__soft_line_ending] = ACTIONS(3151), - [sym__block_close] = ACTIONS(3151), - [sym_block_continuation] = ACTIONS(3836), - [sym__block_quote_start] = ACTIONS(3151), - [sym_atx_h1_marker] = ACTIONS(3151), - [sym_atx_h2_marker] = ACTIONS(3151), - [sym_atx_h3_marker] = ACTIONS(3151), - [sym_atx_h4_marker] = ACTIONS(3151), - [sym_atx_h5_marker] = ACTIONS(3151), - [sym_atx_h6_marker] = ACTIONS(3151), - [sym__thematic_break] = ACTIONS(3151), - [sym__list_marker_minus] = ACTIONS(3151), - [sym__list_marker_plus] = ACTIONS(3151), - [sym__list_marker_star] = ACTIONS(3151), - [sym__list_marker_parenthesis] = ACTIONS(3151), - [sym__list_marker_dot] = ACTIONS(3151), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_example] = ACTIONS(3151), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3151), - [sym__fenced_code_block_start_backtick] = ACTIONS(3151), - [sym_minus_metadata] = ACTIONS(3151), - [sym__pipe_table_start] = ACTIONS(3151), - [sym__fenced_div_start] = ACTIONS(3151), - [sym_ref_id_specifier] = ACTIONS(3151), - [sym__code_span_start] = ACTIONS(3151), - [sym__html_comment] = ACTIONS(3151), - [sym__autolink] = ACTIONS(3151), - [sym__highlight_span_start] = ACTIONS(3151), - [sym__insert_span_start] = ACTIONS(3151), - [sym__delete_span_start] = ACTIONS(3151), - [sym__edit_comment_span_start] = ACTIONS(3151), - [sym__single_quote_span_open] = ACTIONS(3151), - [sym__double_quote_span_open] = ACTIONS(3151), - [sym__shortcode_open_escaped] = ACTIONS(3151), - [sym__shortcode_open] = ACTIONS(3151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3151), - [sym__cite_author_in_text] = ACTIONS(3151), - [sym__cite_suppress_author] = ACTIONS(3151), - [sym__strikeout_open] = ACTIONS(3151), - [sym__subscript_open] = ACTIONS(3151), - [sym__superscript_open] = ACTIONS(3151), - [sym__inline_note_start_token] = ACTIONS(3151), - [sym__strong_emphasis_open_star] = ACTIONS(3151), - [sym__strong_emphasis_open_underscore] = ACTIONS(3151), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3151), - [sym_inline_note_reference] = ACTIONS(3151), - [sym_html_element] = ACTIONS(3151), + [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(475)] = { - [ts_builtin_sym_end] = ACTIONS(3143), - [anon_sym_COLON] = ACTIONS(3143), - [sym_entity_reference] = ACTIONS(3143), - [sym_numeric_character_reference] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_BANG_LBRACK] = ACTIONS(3143), - [anon_sym_DOLLAR] = ACTIONS(3145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3143), - [aux_sym_pandoc_str_token1] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3143), - [aux_sym__prose_punctuation_token1] = ACTIONS(3145), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3145), - [sym__line_ending] = ACTIONS(3143), - [sym__soft_line_ending] = ACTIONS(3143), - [sym_block_continuation] = ACTIONS(3838), - [sym__block_quote_start] = ACTIONS(3143), - [sym_atx_h1_marker] = ACTIONS(3143), - [sym_atx_h2_marker] = ACTIONS(3143), - [sym_atx_h3_marker] = ACTIONS(3143), - [sym_atx_h4_marker] = ACTIONS(3143), - [sym_atx_h5_marker] = ACTIONS(3143), - [sym_atx_h6_marker] = ACTIONS(3143), - [sym__thematic_break] = ACTIONS(3143), - [sym__list_marker_minus] = ACTIONS(3143), - [sym__list_marker_plus] = ACTIONS(3143), - [sym__list_marker_star] = ACTIONS(3143), - [sym__list_marker_parenthesis] = ACTIONS(3143), - [sym__list_marker_dot] = ACTIONS(3143), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_example] = ACTIONS(3143), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3143), - [sym__fenced_code_block_start_backtick] = ACTIONS(3143), - [sym_minus_metadata] = ACTIONS(3143), - [sym__pipe_table_start] = ACTIONS(3143), - [sym__fenced_div_start] = ACTIONS(3143), - [sym_ref_id_specifier] = ACTIONS(3143), - [sym__code_span_start] = ACTIONS(3143), - [sym__html_comment] = ACTIONS(3143), - [sym__autolink] = ACTIONS(3143), - [sym__highlight_span_start] = ACTIONS(3143), - [sym__insert_span_start] = ACTIONS(3143), - [sym__delete_span_start] = ACTIONS(3143), - [sym__edit_comment_span_start] = ACTIONS(3143), - [sym__single_quote_span_open] = ACTIONS(3143), - [sym__double_quote_span_open] = ACTIONS(3143), - [sym__shortcode_open_escaped] = ACTIONS(3143), - [sym__shortcode_open] = ACTIONS(3143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3143), - [sym__cite_author_in_text] = ACTIONS(3143), - [sym__cite_suppress_author] = ACTIONS(3143), - [sym__strikeout_open] = ACTIONS(3143), - [sym__subscript_open] = ACTIONS(3143), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3143), - [sym__strong_emphasis_open_star] = ACTIONS(3143), - [sym__strong_emphasis_open_underscore] = ACTIONS(3143), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3143), - [sym_inline_note_reference] = ACTIONS(3143), - [sym_html_element] = ACTIONS(3143), + [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(476)] = { - [ts_builtin_sym_end] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(3208), - [sym_entity_reference] = ACTIONS(3208), - [sym_numeric_character_reference] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_BANG_LBRACK] = ACTIONS(3208), - [anon_sym_DOLLAR] = ACTIONS(3210), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3208), - [aux_sym_pandoc_str_token1] = ACTIONS(3210), - [anon_sym_PIPE] = ACTIONS(3208), - [aux_sym__prose_punctuation_token1] = ACTIONS(3210), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3210), - [sym__line_ending] = ACTIONS(3208), - [sym__soft_line_ending] = ACTIONS(3208), - [sym_block_continuation] = ACTIONS(3840), - [sym__block_quote_start] = ACTIONS(3208), - [sym_atx_h1_marker] = ACTIONS(3208), - [sym_atx_h2_marker] = ACTIONS(3208), - [sym_atx_h3_marker] = ACTIONS(3208), - [sym_atx_h4_marker] = ACTIONS(3208), - [sym_atx_h5_marker] = ACTIONS(3208), - [sym_atx_h6_marker] = ACTIONS(3208), - [sym__thematic_break] = ACTIONS(3208), - [sym__list_marker_minus] = ACTIONS(3208), - [sym__list_marker_plus] = ACTIONS(3208), - [sym__list_marker_star] = ACTIONS(3208), - [sym__list_marker_parenthesis] = ACTIONS(3208), - [sym__list_marker_dot] = ACTIONS(3208), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_example] = ACTIONS(3208), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3208), - [sym__fenced_code_block_start_backtick] = ACTIONS(3208), - [sym_minus_metadata] = ACTIONS(3208), - [sym__pipe_table_start] = ACTIONS(3208), - [sym__fenced_div_start] = ACTIONS(3208), - [sym_ref_id_specifier] = ACTIONS(3208), - [sym__code_span_start] = ACTIONS(3208), - [sym__html_comment] = ACTIONS(3208), - [sym__autolink] = ACTIONS(3208), - [sym__highlight_span_start] = ACTIONS(3208), - [sym__insert_span_start] = ACTIONS(3208), - [sym__delete_span_start] = ACTIONS(3208), - [sym__edit_comment_span_start] = ACTIONS(3208), - [sym__single_quote_span_open] = ACTIONS(3208), - [sym__double_quote_span_open] = ACTIONS(3208), - [sym__shortcode_open_escaped] = ACTIONS(3208), - [sym__shortcode_open] = ACTIONS(3208), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3208), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3208), - [sym__cite_author_in_text] = ACTIONS(3208), - [sym__cite_suppress_author] = ACTIONS(3208), - [sym__strikeout_open] = ACTIONS(3208), - [sym__subscript_open] = ACTIONS(3208), - [sym__superscript_open] = ACTIONS(3208), - [sym__inline_note_start_token] = ACTIONS(3208), - [sym__strong_emphasis_open_star] = ACTIONS(3208), - [sym__strong_emphasis_open_underscore] = ACTIONS(3208), - [sym__emphasis_open_star] = ACTIONS(3208), - [sym__emphasis_open_underscore] = ACTIONS(3208), - [sym_inline_note_reference] = ACTIONS(3208), - [sym_html_element] = ACTIONS(3208), + [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(477)] = { - [ts_builtin_sym_end] = ACTIONS(3151), - [anon_sym_COLON] = ACTIONS(3151), - [sym_entity_reference] = ACTIONS(3151), - [sym_numeric_character_reference] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_BANG_LBRACK] = ACTIONS(3151), - [anon_sym_DOLLAR] = ACTIONS(3153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [aux_sym_pandoc_str_token1] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3151), - [aux_sym__prose_punctuation_token1] = ACTIONS(3153), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3153), - [sym__line_ending] = ACTIONS(3151), - [sym__soft_line_ending] = ACTIONS(3151), - [sym_block_continuation] = ACTIONS(3842), - [sym__block_quote_start] = ACTIONS(3151), - [sym_atx_h1_marker] = ACTIONS(3151), - [sym_atx_h2_marker] = ACTIONS(3151), - [sym_atx_h3_marker] = ACTIONS(3151), - [sym_atx_h4_marker] = ACTIONS(3151), - [sym_atx_h5_marker] = ACTIONS(3151), - [sym_atx_h6_marker] = ACTIONS(3151), - [sym__thematic_break] = ACTIONS(3151), - [sym__list_marker_minus] = ACTIONS(3151), - [sym__list_marker_plus] = ACTIONS(3151), - [sym__list_marker_star] = ACTIONS(3151), - [sym__list_marker_parenthesis] = ACTIONS(3151), - [sym__list_marker_dot] = ACTIONS(3151), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_example] = ACTIONS(3151), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3151), - [sym__fenced_code_block_start_backtick] = ACTIONS(3151), - [sym_minus_metadata] = ACTIONS(3151), - [sym__pipe_table_start] = ACTIONS(3151), - [sym__fenced_div_start] = ACTIONS(3151), - [sym_ref_id_specifier] = ACTIONS(3151), - [sym__code_span_start] = ACTIONS(3151), - [sym__html_comment] = ACTIONS(3151), - [sym__autolink] = ACTIONS(3151), - [sym__highlight_span_start] = ACTIONS(3151), - [sym__insert_span_start] = ACTIONS(3151), - [sym__delete_span_start] = ACTIONS(3151), - [sym__edit_comment_span_start] = ACTIONS(3151), - [sym__single_quote_span_open] = ACTIONS(3151), - [sym__double_quote_span_open] = ACTIONS(3151), - [sym__shortcode_open_escaped] = ACTIONS(3151), - [sym__shortcode_open] = ACTIONS(3151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3151), - [sym__cite_author_in_text] = ACTIONS(3151), - [sym__cite_suppress_author] = ACTIONS(3151), - [sym__strikeout_open] = ACTIONS(3151), - [sym__subscript_open] = ACTIONS(3151), - [sym__superscript_open] = ACTIONS(3151), - [sym__inline_note_start_token] = ACTIONS(3151), - [sym__strong_emphasis_open_star] = ACTIONS(3151), - [sym__strong_emphasis_open_underscore] = ACTIONS(3151), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3151), - [sym_inline_note_reference] = ACTIONS(3151), - [sym_html_element] = ACTIONS(3151), + [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(478)] = { - [ts_builtin_sym_end] = ACTIONS(3163), - [anon_sym_COLON] = ACTIONS(3163), - [sym_entity_reference] = ACTIONS(3163), - [sym_numeric_character_reference] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_BANG_LBRACK] = ACTIONS(3163), - [anon_sym_DOLLAR] = ACTIONS(3165), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [aux_sym_pandoc_str_token1] = ACTIONS(3165), - [anon_sym_PIPE] = ACTIONS(3163), - [aux_sym__prose_punctuation_token1] = ACTIONS(3165), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3165), - [sym__line_ending] = ACTIONS(3163), - [sym__soft_line_ending] = ACTIONS(3163), - [sym_block_continuation] = ACTIONS(3844), - [sym__block_quote_start] = ACTIONS(3163), - [sym_atx_h1_marker] = ACTIONS(3163), - [sym_atx_h2_marker] = ACTIONS(3163), - [sym_atx_h3_marker] = ACTIONS(3163), - [sym_atx_h4_marker] = ACTIONS(3163), - [sym_atx_h5_marker] = ACTIONS(3163), - [sym_atx_h6_marker] = ACTIONS(3163), - [sym__thematic_break] = ACTIONS(3163), - [sym__list_marker_minus] = ACTIONS(3163), - [sym__list_marker_plus] = ACTIONS(3163), - [sym__list_marker_star] = ACTIONS(3163), - [sym__list_marker_parenthesis] = ACTIONS(3163), - [sym__list_marker_dot] = ACTIONS(3163), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3163), - [sym__list_marker_example] = ACTIONS(3163), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3163), - [sym__fenced_code_block_start_backtick] = ACTIONS(3163), - [sym_minus_metadata] = ACTIONS(3163), - [sym__pipe_table_start] = ACTIONS(3163), - [sym__fenced_div_start] = ACTIONS(3163), - [sym_ref_id_specifier] = ACTIONS(3163), - [sym__code_span_start] = ACTIONS(3163), - [sym__html_comment] = ACTIONS(3163), - [sym__autolink] = ACTIONS(3163), - [sym__highlight_span_start] = ACTIONS(3163), - [sym__insert_span_start] = ACTIONS(3163), - [sym__delete_span_start] = ACTIONS(3163), - [sym__edit_comment_span_start] = ACTIONS(3163), - [sym__single_quote_span_open] = ACTIONS(3163), - [sym__double_quote_span_open] = ACTIONS(3163), - [sym__shortcode_open_escaped] = ACTIONS(3163), - [sym__shortcode_open] = ACTIONS(3163), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3163), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3163), - [sym__cite_author_in_text] = ACTIONS(3163), - [sym__cite_suppress_author] = ACTIONS(3163), - [sym__strikeout_open] = ACTIONS(3163), - [sym__subscript_open] = ACTIONS(3163), - [sym__superscript_open] = ACTIONS(3163), - [sym__inline_note_start_token] = ACTIONS(3163), - [sym__strong_emphasis_open_star] = ACTIONS(3163), - [sym__strong_emphasis_open_underscore] = ACTIONS(3163), - [sym__emphasis_open_star] = ACTIONS(3163), - [sym__emphasis_open_underscore] = ACTIONS(3163), - [sym_inline_note_reference] = ACTIONS(3163), - [sym_html_element] = ACTIONS(3163), + [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(479)] = { - [anon_sym_COLON] = ACTIONS(2979), - [sym_entity_reference] = ACTIONS(2979), - [sym_numeric_character_reference] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_BANG_LBRACK] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2981), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2979), - [aux_sym_pandoc_str_token1] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2979), - [aux_sym__prose_punctuation_token1] = ACTIONS(2981), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2981), - [sym__line_ending] = ACTIONS(2979), - [sym__soft_line_ending] = ACTIONS(2979), - [sym__block_close] = ACTIONS(2979), - [sym__block_quote_start] = ACTIONS(2979), - [sym_atx_h1_marker] = ACTIONS(2979), - [sym_atx_h2_marker] = ACTIONS(2979), - [sym_atx_h3_marker] = ACTIONS(2979), - [sym_atx_h4_marker] = ACTIONS(2979), - [sym_atx_h5_marker] = ACTIONS(2979), - [sym_atx_h6_marker] = ACTIONS(2979), - [sym__thematic_break] = ACTIONS(2979), - [sym__list_marker_minus] = ACTIONS(2979), - [sym__list_marker_plus] = ACTIONS(2979), - [sym__list_marker_star] = ACTIONS(2979), - [sym__list_marker_parenthesis] = ACTIONS(2979), - [sym__list_marker_dot] = ACTIONS(2979), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_example] = ACTIONS(2979), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2979), - [sym__fenced_code_block_start_backtick] = ACTIONS(2979), - [sym_minus_metadata] = ACTIONS(2979), - [sym__pipe_table_start] = ACTIONS(2979), - [sym__fenced_div_start] = ACTIONS(2979), - [sym__fenced_div_end] = ACTIONS(2979), - [sym_ref_id_specifier] = ACTIONS(2979), - [sym__code_span_start] = ACTIONS(2979), - [sym__html_comment] = ACTIONS(2979), - [sym__autolink] = ACTIONS(2979), - [sym__highlight_span_start] = ACTIONS(2979), - [sym__insert_span_start] = ACTIONS(2979), - [sym__delete_span_start] = ACTIONS(2979), - [sym__edit_comment_span_start] = ACTIONS(2979), - [sym__single_quote_span_open] = ACTIONS(2979), - [sym__double_quote_span_open] = ACTIONS(2979), - [sym__shortcode_open_escaped] = ACTIONS(2979), - [sym__shortcode_open] = ACTIONS(2979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2979), - [sym__cite_author_in_text] = ACTIONS(2979), - [sym__cite_suppress_author] = ACTIONS(2979), - [sym__strikeout_open] = ACTIONS(2979), - [sym__subscript_open] = ACTIONS(2979), - [sym__superscript_open] = ACTIONS(2979), - [sym__inline_note_start_token] = ACTIONS(2979), - [sym__strong_emphasis_open_star] = ACTIONS(2979), - [sym__strong_emphasis_open_underscore] = ACTIONS(2979), - [sym__emphasis_open_star] = ACTIONS(2979), - [sym__emphasis_open_underscore] = ACTIONS(2979), - [sym_inline_note_reference] = ACTIONS(2979), - [sym_html_element] = ACTIONS(2979), + [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(480)] = { - [anon_sym_COLON] = ACTIONS(3846), - [sym_entity_reference] = ACTIONS(3846), - [sym_numeric_character_reference] = ACTIONS(3846), - [anon_sym_LBRACK] = ACTIONS(3846), - [anon_sym_BANG_LBRACK] = ACTIONS(3846), - [anon_sym_DOLLAR] = ACTIONS(3848), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3846), - [anon_sym_LBRACE] = ACTIONS(3846), - [aux_sym_pandoc_str_token1] = ACTIONS(3848), - [anon_sym_PIPE] = ACTIONS(3846), - [aux_sym__prose_punctuation_token1] = ACTIONS(3848), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3848), - [sym__line_ending] = ACTIONS(3846), - [sym__soft_line_ending] = ACTIONS(3846), - [sym__block_close] = ACTIONS(3846), - [sym__block_quote_start] = ACTIONS(3846), - [sym_atx_h1_marker] = ACTIONS(3846), - [sym_atx_h2_marker] = ACTIONS(3846), - [sym_atx_h3_marker] = ACTIONS(3846), - [sym_atx_h4_marker] = ACTIONS(3846), - [sym_atx_h5_marker] = ACTIONS(3846), - [sym_atx_h6_marker] = ACTIONS(3846), - [sym__thematic_break] = ACTIONS(3846), - [sym__list_marker_minus] = ACTIONS(3846), - [sym__list_marker_plus] = ACTIONS(3846), - [sym__list_marker_star] = ACTIONS(3846), - [sym__list_marker_parenthesis] = ACTIONS(3846), - [sym__list_marker_dot] = ACTIONS(3846), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_example] = ACTIONS(3846), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3846), - [sym__fenced_code_block_start_backtick] = ACTIONS(3846), - [sym_minus_metadata] = ACTIONS(3846), - [sym__pipe_table_start] = ACTIONS(3846), - [sym__fenced_div_start] = ACTIONS(3846), - [sym__fenced_div_end] = ACTIONS(3846), - [sym_ref_id_specifier] = ACTIONS(3846), - [sym__code_span_start] = ACTIONS(3846), - [sym__html_comment] = ACTIONS(3846), - [sym__autolink] = ACTIONS(3846), - [sym__highlight_span_start] = ACTIONS(3846), - [sym__insert_span_start] = ACTIONS(3846), - [sym__delete_span_start] = ACTIONS(3846), - [sym__edit_comment_span_start] = ACTIONS(3846), - [sym__single_quote_span_open] = ACTIONS(3846), - [sym__double_quote_span_open] = ACTIONS(3846), - [sym__shortcode_open_escaped] = ACTIONS(3846), - [sym__shortcode_open] = ACTIONS(3846), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3846), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3846), - [sym__cite_author_in_text] = ACTIONS(3846), - [sym__cite_suppress_author] = ACTIONS(3846), - [sym__strikeout_open] = ACTIONS(3846), - [sym__subscript_open] = ACTIONS(3846), - [sym__superscript_open] = ACTIONS(3846), - [sym__inline_note_start_token] = ACTIONS(3846), - [sym__strong_emphasis_open_star] = ACTIONS(3846), - [sym__strong_emphasis_open_underscore] = ACTIONS(3846), - [sym__emphasis_open_star] = ACTIONS(3846), - [sym__emphasis_open_underscore] = ACTIONS(3846), - [sym_inline_note_reference] = ACTIONS(3846), - [sym_html_element] = ACTIONS(3846), + [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)] = { - [anon_sym_COLON] = ACTIONS(3850), - [sym_entity_reference] = ACTIONS(3850), - [sym_numeric_character_reference] = ACTIONS(3850), - [anon_sym_LBRACK] = ACTIONS(3850), - [anon_sym_BANG_LBRACK] = ACTIONS(3850), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3850), - [anon_sym_LBRACE] = ACTIONS(3850), - [aux_sym_pandoc_str_token1] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3850), - [aux_sym__prose_punctuation_token1] = ACTIONS(3852), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3852), - [sym__line_ending] = ACTIONS(3850), - [sym__soft_line_ending] = ACTIONS(3850), - [sym__block_close] = ACTIONS(3850), - [sym__block_quote_start] = ACTIONS(3850), - [sym_atx_h1_marker] = ACTIONS(3850), - [sym_atx_h2_marker] = ACTIONS(3850), - [sym_atx_h3_marker] = ACTIONS(3850), - [sym_atx_h4_marker] = ACTIONS(3850), - [sym_atx_h5_marker] = ACTIONS(3850), - [sym_atx_h6_marker] = ACTIONS(3850), - [sym__thematic_break] = ACTIONS(3850), - [sym__list_marker_minus] = ACTIONS(3850), - [sym__list_marker_plus] = ACTIONS(3850), - [sym__list_marker_star] = ACTIONS(3850), - [sym__list_marker_parenthesis] = ACTIONS(3850), - [sym__list_marker_dot] = ACTIONS(3850), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_example] = ACTIONS(3850), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3850), - [sym__fenced_code_block_start_backtick] = ACTIONS(3850), - [sym_minus_metadata] = ACTIONS(3850), - [sym__pipe_table_start] = ACTIONS(3850), - [sym__fenced_div_start] = ACTIONS(3850), - [sym__fenced_div_end] = ACTIONS(3850), - [sym_ref_id_specifier] = ACTIONS(3850), - [sym__code_span_start] = ACTIONS(3850), - [sym__html_comment] = ACTIONS(3850), - [sym__autolink] = ACTIONS(3850), - [sym__highlight_span_start] = ACTIONS(3850), - [sym__insert_span_start] = ACTIONS(3850), - [sym__delete_span_start] = ACTIONS(3850), - [sym__edit_comment_span_start] = ACTIONS(3850), - [sym__single_quote_span_open] = ACTIONS(3850), - [sym__double_quote_span_open] = ACTIONS(3850), - [sym__shortcode_open_escaped] = ACTIONS(3850), - [sym__shortcode_open] = ACTIONS(3850), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3850), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3850), - [sym__cite_author_in_text] = ACTIONS(3850), - [sym__cite_suppress_author] = ACTIONS(3850), - [sym__strikeout_open] = ACTIONS(3850), - [sym__subscript_open] = ACTIONS(3850), - [sym__superscript_open] = ACTIONS(3850), - [sym__inline_note_start_token] = ACTIONS(3850), - [sym__strong_emphasis_open_star] = ACTIONS(3850), - [sym__strong_emphasis_open_underscore] = ACTIONS(3850), - [sym__emphasis_open_star] = ACTIONS(3850), - [sym__emphasis_open_underscore] = ACTIONS(3850), - [sym_inline_note_reference] = ACTIONS(3850), - [sym_html_element] = ACTIONS(3850), + [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)] = { - [anon_sym_COLON] = ACTIONS(3854), - [sym_entity_reference] = ACTIONS(3854), - [sym_numeric_character_reference] = ACTIONS(3854), - [anon_sym_LBRACK] = ACTIONS(3854), - [anon_sym_BANG_LBRACK] = ACTIONS(3854), - [anon_sym_DOLLAR] = ACTIONS(3856), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3854), - [anon_sym_LBRACE] = ACTIONS(3854), - [aux_sym_pandoc_str_token1] = ACTIONS(3856), - [anon_sym_PIPE] = ACTIONS(3854), - [aux_sym__prose_punctuation_token1] = ACTIONS(3856), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3856), - [sym__line_ending] = ACTIONS(3854), - [sym__soft_line_ending] = ACTIONS(3854), - [sym__block_close] = ACTIONS(3854), - [sym__block_quote_start] = ACTIONS(3854), - [sym_atx_h1_marker] = ACTIONS(3854), - [sym_atx_h2_marker] = ACTIONS(3854), - [sym_atx_h3_marker] = ACTIONS(3854), - [sym_atx_h4_marker] = ACTIONS(3854), - [sym_atx_h5_marker] = ACTIONS(3854), - [sym_atx_h6_marker] = ACTIONS(3854), - [sym__thematic_break] = ACTIONS(3854), - [sym__list_marker_minus] = ACTIONS(3854), - [sym__list_marker_plus] = ACTIONS(3854), - [sym__list_marker_star] = ACTIONS(3854), - [sym__list_marker_parenthesis] = ACTIONS(3854), - [sym__list_marker_dot] = ACTIONS(3854), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_example] = ACTIONS(3854), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3854), - [sym__fenced_code_block_start_backtick] = ACTIONS(3854), - [sym_minus_metadata] = ACTIONS(3854), - [sym__pipe_table_start] = ACTIONS(3854), - [sym__fenced_div_start] = ACTIONS(3854), - [sym__fenced_div_end] = ACTIONS(3854), - [sym_ref_id_specifier] = ACTIONS(3854), - [sym__code_span_start] = ACTIONS(3854), - [sym__html_comment] = ACTIONS(3854), - [sym__autolink] = ACTIONS(3854), - [sym__highlight_span_start] = ACTIONS(3854), - [sym__insert_span_start] = ACTIONS(3854), - [sym__delete_span_start] = ACTIONS(3854), - [sym__edit_comment_span_start] = ACTIONS(3854), - [sym__single_quote_span_open] = ACTIONS(3854), - [sym__double_quote_span_open] = ACTIONS(3854), - [sym__shortcode_open_escaped] = ACTIONS(3854), - [sym__shortcode_open] = ACTIONS(3854), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3854), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3854), - [sym__cite_author_in_text] = ACTIONS(3854), - [sym__cite_suppress_author] = ACTIONS(3854), - [sym__strikeout_open] = ACTIONS(3854), - [sym__subscript_open] = ACTIONS(3854), - [sym__superscript_open] = ACTIONS(3854), - [sym__inline_note_start_token] = ACTIONS(3854), - [sym__strong_emphasis_open_star] = ACTIONS(3854), - [sym__strong_emphasis_open_underscore] = ACTIONS(3854), - [sym__emphasis_open_star] = ACTIONS(3854), - [sym__emphasis_open_underscore] = ACTIONS(3854), - [sym_inline_note_reference] = ACTIONS(3854), - [sym_html_element] = ACTIONS(3854), + [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)] = { - [anon_sym_COLON] = ACTIONS(3858), - [sym_entity_reference] = ACTIONS(3858), - [sym_numeric_character_reference] = ACTIONS(3858), - [anon_sym_LBRACK] = ACTIONS(3858), - [anon_sym_BANG_LBRACK] = ACTIONS(3858), - [anon_sym_DOLLAR] = ACTIONS(3860), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3858), - [anon_sym_LBRACE] = ACTIONS(3858), - [aux_sym_pandoc_str_token1] = ACTIONS(3860), - [anon_sym_PIPE] = ACTIONS(3858), - [aux_sym__prose_punctuation_token1] = ACTIONS(3860), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3860), - [sym__line_ending] = ACTIONS(3858), - [sym__soft_line_ending] = ACTIONS(3858), - [sym__block_close] = ACTIONS(3858), - [sym__block_quote_start] = ACTIONS(3858), - [sym_atx_h1_marker] = ACTIONS(3858), - [sym_atx_h2_marker] = ACTIONS(3858), - [sym_atx_h3_marker] = ACTIONS(3858), - [sym_atx_h4_marker] = ACTIONS(3858), - [sym_atx_h5_marker] = ACTIONS(3858), - [sym_atx_h6_marker] = ACTIONS(3858), - [sym__thematic_break] = ACTIONS(3858), - [sym__list_marker_minus] = ACTIONS(3858), - [sym__list_marker_plus] = ACTIONS(3858), - [sym__list_marker_star] = ACTIONS(3858), - [sym__list_marker_parenthesis] = ACTIONS(3858), - [sym__list_marker_dot] = ACTIONS(3858), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_example] = ACTIONS(3858), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3858), - [sym__fenced_code_block_start_backtick] = ACTIONS(3858), - [sym_minus_metadata] = ACTIONS(3858), - [sym__pipe_table_start] = ACTIONS(3858), - [sym__fenced_div_start] = ACTIONS(3858), - [sym__fenced_div_end] = ACTIONS(3858), - [sym_ref_id_specifier] = ACTIONS(3858), - [sym__code_span_start] = ACTIONS(3858), - [sym__html_comment] = ACTIONS(3858), - [sym__autolink] = ACTIONS(3858), - [sym__highlight_span_start] = ACTIONS(3858), - [sym__insert_span_start] = ACTIONS(3858), - [sym__delete_span_start] = ACTIONS(3858), - [sym__edit_comment_span_start] = ACTIONS(3858), - [sym__single_quote_span_open] = ACTIONS(3858), - [sym__double_quote_span_open] = ACTIONS(3858), - [sym__shortcode_open_escaped] = ACTIONS(3858), - [sym__shortcode_open] = ACTIONS(3858), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3858), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3858), - [sym__cite_author_in_text] = ACTIONS(3858), - [sym__cite_suppress_author] = ACTIONS(3858), - [sym__strikeout_open] = ACTIONS(3858), - [sym__subscript_open] = ACTIONS(3858), - [sym__superscript_open] = ACTIONS(3858), - [sym__inline_note_start_token] = ACTIONS(3858), - [sym__strong_emphasis_open_star] = ACTIONS(3858), - [sym__strong_emphasis_open_underscore] = ACTIONS(3858), - [sym__emphasis_open_star] = ACTIONS(3858), - [sym__emphasis_open_underscore] = ACTIONS(3858), - [sym_inline_note_reference] = ACTIONS(3858), - [sym_html_element] = ACTIONS(3858), + [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)] = { - [anon_sym_COLON] = ACTIONS(3862), - [sym_entity_reference] = ACTIONS(3862), - [sym_numeric_character_reference] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(3862), - [anon_sym_BANG_LBRACK] = ACTIONS(3862), - [anon_sym_DOLLAR] = ACTIONS(3864), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3862), - [aux_sym_pandoc_str_token1] = ACTIONS(3864), - [anon_sym_PIPE] = ACTIONS(3862), - [aux_sym__prose_punctuation_token1] = ACTIONS(3864), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3864), - [sym__line_ending] = ACTIONS(3862), - [sym__soft_line_ending] = ACTIONS(3862), - [sym__block_close] = ACTIONS(3862), - [sym__block_quote_start] = ACTIONS(3862), - [sym_atx_h1_marker] = ACTIONS(3862), - [sym_atx_h2_marker] = ACTIONS(3862), - [sym_atx_h3_marker] = ACTIONS(3862), - [sym_atx_h4_marker] = ACTIONS(3862), - [sym_atx_h5_marker] = ACTIONS(3862), - [sym_atx_h6_marker] = ACTIONS(3862), - [sym__thematic_break] = ACTIONS(3862), - [sym__list_marker_minus] = ACTIONS(3862), - [sym__list_marker_plus] = ACTIONS(3862), - [sym__list_marker_star] = ACTIONS(3862), - [sym__list_marker_parenthesis] = ACTIONS(3862), - [sym__list_marker_dot] = ACTIONS(3862), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_example] = ACTIONS(3862), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3862), - [sym__fenced_code_block_start_backtick] = ACTIONS(3862), - [sym_minus_metadata] = ACTIONS(3862), - [sym__pipe_table_start] = ACTIONS(3862), - [sym__fenced_div_start] = ACTIONS(3862), - [sym__fenced_div_end] = ACTIONS(3862), - [sym_ref_id_specifier] = ACTIONS(3862), - [sym__code_span_start] = ACTIONS(3862), - [sym__html_comment] = ACTIONS(3862), - [sym__autolink] = ACTIONS(3862), - [sym__highlight_span_start] = ACTIONS(3862), - [sym__insert_span_start] = ACTIONS(3862), - [sym__delete_span_start] = ACTIONS(3862), - [sym__edit_comment_span_start] = ACTIONS(3862), - [sym__single_quote_span_open] = ACTIONS(3862), - [sym__double_quote_span_open] = ACTIONS(3862), - [sym__shortcode_open_escaped] = ACTIONS(3862), - [sym__shortcode_open] = ACTIONS(3862), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3862), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3862), - [sym__cite_author_in_text] = ACTIONS(3862), - [sym__cite_suppress_author] = ACTIONS(3862), - [sym__strikeout_open] = ACTIONS(3862), - [sym__subscript_open] = ACTIONS(3862), - [sym__superscript_open] = ACTIONS(3862), - [sym__inline_note_start_token] = ACTIONS(3862), - [sym__strong_emphasis_open_star] = ACTIONS(3862), - [sym__strong_emphasis_open_underscore] = ACTIONS(3862), - [sym__emphasis_open_star] = ACTIONS(3862), - [sym__emphasis_open_underscore] = ACTIONS(3862), - [sym_inline_note_reference] = ACTIONS(3862), - [sym_html_element] = ACTIONS(3862), + [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(3866), - [sym_entity_reference] = ACTIONS(3866), - [sym_numeric_character_reference] = ACTIONS(3866), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_BANG_LBRACK] = ACTIONS(3866), - [anon_sym_DOLLAR] = ACTIONS(3868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3866), - [aux_sym_pandoc_str_token1] = ACTIONS(3868), - [anon_sym_PIPE] = ACTIONS(3866), - [aux_sym__prose_punctuation_token1] = ACTIONS(3868), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3868), - [sym__line_ending] = ACTIONS(3866), - [sym__soft_line_ending] = ACTIONS(3866), - [sym__block_close] = ACTIONS(3866), - [sym__block_quote_start] = ACTIONS(3866), - [sym_atx_h1_marker] = ACTIONS(3866), - [sym_atx_h2_marker] = ACTIONS(3866), - [sym_atx_h3_marker] = ACTIONS(3866), - [sym_atx_h4_marker] = ACTIONS(3866), - [sym_atx_h5_marker] = ACTIONS(3866), - [sym_atx_h6_marker] = ACTIONS(3866), - [sym__thematic_break] = ACTIONS(3866), - [sym__list_marker_minus] = ACTIONS(3866), - [sym__list_marker_plus] = ACTIONS(3866), - [sym__list_marker_star] = ACTIONS(3866), - [sym__list_marker_parenthesis] = ACTIONS(3866), - [sym__list_marker_dot] = ACTIONS(3866), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_example] = ACTIONS(3866), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3866), - [sym__fenced_code_block_start_backtick] = ACTIONS(3866), - [sym_minus_metadata] = ACTIONS(3866), - [sym__pipe_table_start] = ACTIONS(3866), - [sym__fenced_div_start] = ACTIONS(3866), - [sym__fenced_div_end] = ACTIONS(3866), - [sym_ref_id_specifier] = ACTIONS(3866), - [sym__code_span_start] = ACTIONS(3866), - [sym__html_comment] = ACTIONS(3866), - [sym__autolink] = ACTIONS(3866), - [sym__highlight_span_start] = ACTIONS(3866), - [sym__insert_span_start] = ACTIONS(3866), - [sym__delete_span_start] = ACTIONS(3866), - [sym__edit_comment_span_start] = ACTIONS(3866), - [sym__single_quote_span_open] = ACTIONS(3866), - [sym__double_quote_span_open] = ACTIONS(3866), - [sym__shortcode_open_escaped] = ACTIONS(3866), - [sym__shortcode_open] = ACTIONS(3866), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3866), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3866), - [sym__cite_author_in_text] = ACTIONS(3866), - [sym__cite_suppress_author] = ACTIONS(3866), - [sym__strikeout_open] = ACTIONS(3866), - [sym__subscript_open] = ACTIONS(3866), - [sym__superscript_open] = ACTIONS(3866), - [sym__inline_note_start_token] = ACTIONS(3866), - [sym__strong_emphasis_open_star] = ACTIONS(3866), - [sym__strong_emphasis_open_underscore] = ACTIONS(3866), - [sym__emphasis_open_star] = ACTIONS(3866), - [sym__emphasis_open_underscore] = ACTIONS(3866), - [sym_inline_note_reference] = ACTIONS(3866), - [sym_html_element] = ACTIONS(3866), + [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)] = { - [anon_sym_COLON] = ACTIONS(3870), - [sym_entity_reference] = ACTIONS(3870), - [sym_numeric_character_reference] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(3870), - [anon_sym_BANG_LBRACK] = ACTIONS(3870), - [anon_sym_DOLLAR] = ACTIONS(3872), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3870), - [aux_sym_pandoc_str_token1] = ACTIONS(3872), - [anon_sym_PIPE] = ACTIONS(3870), - [aux_sym__prose_punctuation_token1] = ACTIONS(3872), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3872), - [sym__line_ending] = ACTIONS(3870), - [sym__soft_line_ending] = ACTIONS(3870), - [sym__block_close] = ACTIONS(3870), - [sym__block_quote_start] = ACTIONS(3870), - [sym_atx_h1_marker] = ACTIONS(3870), - [sym_atx_h2_marker] = ACTIONS(3870), - [sym_atx_h3_marker] = ACTIONS(3870), - [sym_atx_h4_marker] = ACTIONS(3870), - [sym_atx_h5_marker] = ACTIONS(3870), - [sym_atx_h6_marker] = ACTIONS(3870), - [sym__thematic_break] = ACTIONS(3870), - [sym__list_marker_minus] = ACTIONS(3870), - [sym__list_marker_plus] = ACTIONS(3870), - [sym__list_marker_star] = ACTIONS(3870), - [sym__list_marker_parenthesis] = ACTIONS(3870), - [sym__list_marker_dot] = ACTIONS(3870), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_example] = ACTIONS(3870), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3870), - [sym__fenced_code_block_start_backtick] = ACTIONS(3870), - [sym_minus_metadata] = ACTIONS(3870), - [sym__pipe_table_start] = ACTIONS(3870), - [sym__fenced_div_start] = ACTIONS(3870), - [sym__fenced_div_end] = ACTIONS(3870), - [sym_ref_id_specifier] = ACTIONS(3870), - [sym__code_span_start] = ACTIONS(3870), - [sym__html_comment] = ACTIONS(3870), - [sym__autolink] = ACTIONS(3870), - [sym__highlight_span_start] = ACTIONS(3870), - [sym__insert_span_start] = ACTIONS(3870), - [sym__delete_span_start] = ACTIONS(3870), - [sym__edit_comment_span_start] = ACTIONS(3870), - [sym__single_quote_span_open] = ACTIONS(3870), - [sym__double_quote_span_open] = ACTIONS(3870), - [sym__shortcode_open_escaped] = ACTIONS(3870), - [sym__shortcode_open] = ACTIONS(3870), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3870), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3870), - [sym__cite_author_in_text] = ACTIONS(3870), - [sym__cite_suppress_author] = ACTIONS(3870), - [sym__strikeout_open] = ACTIONS(3870), - [sym__subscript_open] = ACTIONS(3870), - [sym__superscript_open] = ACTIONS(3870), - [sym__inline_note_start_token] = ACTIONS(3870), - [sym__strong_emphasis_open_star] = ACTIONS(3870), - [sym__strong_emphasis_open_underscore] = ACTIONS(3870), - [sym__emphasis_open_star] = ACTIONS(3870), - [sym__emphasis_open_underscore] = ACTIONS(3870), - [sym_inline_note_reference] = ACTIONS(3870), - [sym_html_element] = ACTIONS(3870), + [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), + [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(3157), - [anon_sym_COLON] = ACTIONS(3157), - [sym_entity_reference] = ACTIONS(3157), - [sym_numeric_character_reference] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3157), - [anon_sym_BANG_LBRACK] = ACTIONS(3157), - [anon_sym_DOLLAR] = ACTIONS(3159), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [aux_sym_pandoc_str_token1] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3157), - [aux_sym__prose_punctuation_token1] = ACTIONS(3159), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3159), - [sym__line_ending] = ACTIONS(3157), - [sym__soft_line_ending] = ACTIONS(3157), - [sym_block_continuation] = ACTIONS(3874), - [sym__block_quote_start] = ACTIONS(3157), - [sym_atx_h1_marker] = ACTIONS(3157), - [sym_atx_h2_marker] = ACTIONS(3157), - [sym_atx_h3_marker] = ACTIONS(3157), - [sym_atx_h4_marker] = ACTIONS(3157), - [sym_atx_h5_marker] = ACTIONS(3157), - [sym_atx_h6_marker] = ACTIONS(3157), - [sym__thematic_break] = ACTIONS(3157), - [sym__list_marker_minus] = ACTIONS(3157), - [sym__list_marker_plus] = ACTIONS(3157), - [sym__list_marker_star] = ACTIONS(3157), - [sym__list_marker_parenthesis] = ACTIONS(3157), - [sym__list_marker_dot] = ACTIONS(3157), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3157), - [sym__list_marker_example] = ACTIONS(3157), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3157), - [sym__fenced_code_block_start_backtick] = ACTIONS(3157), - [sym_minus_metadata] = ACTIONS(3157), - [sym__pipe_table_start] = ACTIONS(3157), - [sym__fenced_div_start] = ACTIONS(3157), - [sym_ref_id_specifier] = ACTIONS(3157), - [sym__code_span_start] = ACTIONS(3157), - [sym__html_comment] = ACTIONS(3157), - [sym__autolink] = ACTIONS(3157), - [sym__highlight_span_start] = ACTIONS(3157), - [sym__insert_span_start] = ACTIONS(3157), - [sym__delete_span_start] = ACTIONS(3157), - [sym__edit_comment_span_start] = ACTIONS(3157), - [sym__single_quote_span_open] = ACTIONS(3157), - [sym__double_quote_span_open] = ACTIONS(3157), - [sym__shortcode_open_escaped] = ACTIONS(3157), - [sym__shortcode_open] = ACTIONS(3157), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3157), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3157), - [sym__cite_author_in_text] = ACTIONS(3157), - [sym__cite_suppress_author] = ACTIONS(3157), - [sym__strikeout_open] = ACTIONS(3157), - [sym__subscript_open] = ACTIONS(3157), - [sym__superscript_open] = ACTIONS(3157), - [sym__inline_note_start_token] = ACTIONS(3157), - [sym__strong_emphasis_open_star] = ACTIONS(3157), - [sym__strong_emphasis_open_underscore] = ACTIONS(3157), - [sym__emphasis_open_star] = ACTIONS(3157), - [sym__emphasis_open_underscore] = ACTIONS(3157), - [sym_inline_note_reference] = ACTIONS(3157), - [sym_html_element] = ACTIONS(3157), + [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(2967), - [anon_sym_COLON] = ACTIONS(2967), - [sym_entity_reference] = ACTIONS(2967), - [sym_numeric_character_reference] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_BANG_LBRACK] = ACTIONS(2967), - [anon_sym_DOLLAR] = ACTIONS(2969), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [aux_sym_pandoc_str_token1] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2967), - [aux_sym__prose_punctuation_token1] = ACTIONS(2969), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2969), - [sym__line_ending] = ACTIONS(2967), - [sym__soft_line_ending] = ACTIONS(2967), - [sym_block_continuation] = ACTIONS(3876), - [sym__block_quote_start] = ACTIONS(2967), - [sym_atx_h1_marker] = ACTIONS(2967), - [sym_atx_h2_marker] = ACTIONS(2967), - [sym_atx_h3_marker] = ACTIONS(2967), - [sym_atx_h4_marker] = ACTIONS(2967), - [sym_atx_h5_marker] = ACTIONS(2967), - [sym_atx_h6_marker] = ACTIONS(2967), - [sym__thematic_break] = ACTIONS(2967), - [sym__list_marker_minus] = ACTIONS(2967), - [sym__list_marker_plus] = ACTIONS(2967), - [sym__list_marker_star] = ACTIONS(2967), - [sym__list_marker_parenthesis] = ACTIONS(2967), - [sym__list_marker_dot] = ACTIONS(2967), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2967), - [sym__list_marker_example] = ACTIONS(2967), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2967), - [sym__fenced_code_block_start_backtick] = ACTIONS(2967), - [sym_minus_metadata] = ACTIONS(2967), - [sym__pipe_table_start] = ACTIONS(2967), - [sym__fenced_div_start] = ACTIONS(2967), - [sym_ref_id_specifier] = ACTIONS(2967), - [sym__code_span_start] = ACTIONS(2967), - [sym__html_comment] = ACTIONS(2967), - [sym__autolink] = ACTIONS(2967), - [sym__highlight_span_start] = ACTIONS(2967), - [sym__insert_span_start] = ACTIONS(2967), - [sym__delete_span_start] = ACTIONS(2967), - [sym__edit_comment_span_start] = ACTIONS(2967), - [sym__single_quote_span_open] = ACTIONS(2967), - [sym__double_quote_span_open] = ACTIONS(2967), - [sym__shortcode_open_escaped] = ACTIONS(2967), - [sym__shortcode_open] = ACTIONS(2967), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2967), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2967), - [sym__cite_author_in_text] = ACTIONS(2967), - [sym__cite_suppress_author] = ACTIONS(2967), - [sym__strikeout_open] = ACTIONS(2967), - [sym__subscript_open] = ACTIONS(2967), - [sym__superscript_open] = ACTIONS(2967), - [sym__inline_note_start_token] = ACTIONS(2967), - [sym__strong_emphasis_open_star] = ACTIONS(2967), - [sym__strong_emphasis_open_underscore] = ACTIONS(2967), - [sym__emphasis_open_star] = ACTIONS(2967), - [sym__emphasis_open_underscore] = ACTIONS(2967), - [sym_inline_note_reference] = ACTIONS(2967), - [sym_html_element] = ACTIONS(2967), + [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(3324), - [anon_sym_COLON] = ACTIONS(3324), - [sym_entity_reference] = ACTIONS(3324), - [sym_numeric_character_reference] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_BANG_LBRACK] = ACTIONS(3324), - [anon_sym_DOLLAR] = ACTIONS(3326), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [aux_sym_pandoc_str_token1] = ACTIONS(3326), - [anon_sym_PIPE] = ACTIONS(3324), - [aux_sym__prose_punctuation_token1] = ACTIONS(3326), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3326), - [sym__line_ending] = ACTIONS(3324), - [sym__soft_line_ending] = ACTIONS(3324), - [sym__block_quote_start] = ACTIONS(3324), - [sym_atx_h1_marker] = ACTIONS(3324), - [sym_atx_h2_marker] = ACTIONS(3324), - [sym_atx_h3_marker] = ACTIONS(3324), - [sym_atx_h4_marker] = ACTIONS(3324), - [sym_atx_h5_marker] = ACTIONS(3324), - [sym_atx_h6_marker] = ACTIONS(3324), - [sym__thematic_break] = ACTIONS(3324), - [sym__list_marker_minus] = ACTIONS(3324), - [sym__list_marker_plus] = ACTIONS(3324), - [sym__list_marker_star] = ACTIONS(3324), - [sym__list_marker_parenthesis] = ACTIONS(3324), - [sym__list_marker_dot] = ACTIONS(3324), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_example] = ACTIONS(3324), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3324), - [sym__fenced_code_block_start_backtick] = ACTIONS(3324), - [sym_minus_metadata] = ACTIONS(3324), - [sym__pipe_table_start] = ACTIONS(3324), - [sym__fenced_div_start] = ACTIONS(3324), - [sym_ref_id_specifier] = ACTIONS(3324), - [sym__code_span_start] = ACTIONS(3324), - [sym__html_comment] = ACTIONS(3324), - [sym__autolink] = ACTIONS(3324), - [sym__highlight_span_start] = ACTIONS(3324), - [sym__insert_span_start] = ACTIONS(3324), - [sym__delete_span_start] = ACTIONS(3324), - [sym__edit_comment_span_start] = ACTIONS(3324), - [sym__single_quote_span_open] = ACTIONS(3324), - [sym__double_quote_span_open] = ACTIONS(3324), - [sym__shortcode_open_escaped] = ACTIONS(3324), - [sym__shortcode_open] = ACTIONS(3324), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3324), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3324), - [sym__cite_author_in_text] = ACTIONS(3324), - [sym__cite_suppress_author] = ACTIONS(3324), - [sym__strikeout_open] = ACTIONS(3324), - [sym__subscript_open] = ACTIONS(3324), - [sym__superscript_open] = ACTIONS(3324), - [sym__inline_note_start_token] = ACTIONS(3324), - [sym__strong_emphasis_open_star] = ACTIONS(3324), - [sym__strong_emphasis_open_underscore] = ACTIONS(3324), - [sym__emphasis_open_star] = ACTIONS(3324), - [sym__emphasis_open_underscore] = ACTIONS(3324), - [sym_inline_note_reference] = ACTIONS(3324), - [sym_html_element] = ACTIONS(3324), + [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__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(3392), - [sym_entity_reference] = ACTIONS(3392), - [sym_numeric_character_reference] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3392), - [anon_sym_BANG_LBRACK] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(3394), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3392), - [aux_sym_pandoc_str_token1] = ACTIONS(3394), - [anon_sym_PIPE] = ACTIONS(3392), - [aux_sym__prose_punctuation_token1] = ACTIONS(3394), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3394), - [sym__line_ending] = ACTIONS(3392), - [sym__soft_line_ending] = ACTIONS(3392), - [sym__block_close] = ACTIONS(3392), - [sym__block_quote_start] = ACTIONS(3392), - [sym_atx_h1_marker] = ACTIONS(3392), - [sym_atx_h2_marker] = ACTIONS(3392), - [sym_atx_h3_marker] = ACTIONS(3392), - [sym_atx_h4_marker] = ACTIONS(3392), - [sym_atx_h5_marker] = ACTIONS(3392), - [sym_atx_h6_marker] = ACTIONS(3392), - [sym__thematic_break] = ACTIONS(3392), - [sym__list_marker_minus] = ACTIONS(3392), - [sym__list_marker_plus] = ACTIONS(3392), - [sym__list_marker_star] = ACTIONS(3392), - [sym__list_marker_parenthesis] = ACTIONS(3392), - [sym__list_marker_dot] = ACTIONS(3392), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_example] = ACTIONS(3392), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3392), - [sym__fenced_code_block_start_backtick] = ACTIONS(3392), - [sym_minus_metadata] = ACTIONS(3392), - [sym__pipe_table_start] = ACTIONS(3392), - [sym__fenced_div_start] = ACTIONS(3392), - [sym_ref_id_specifier] = ACTIONS(3392), - [sym__code_span_start] = ACTIONS(3392), - [sym__html_comment] = ACTIONS(3392), - [sym__autolink] = ACTIONS(3392), - [sym__highlight_span_start] = ACTIONS(3392), - [sym__insert_span_start] = ACTIONS(3392), - [sym__delete_span_start] = ACTIONS(3392), - [sym__edit_comment_span_start] = ACTIONS(3392), - [sym__single_quote_span_open] = ACTIONS(3392), - [sym__double_quote_span_open] = ACTIONS(3392), - [sym__shortcode_open_escaped] = ACTIONS(3392), - [sym__shortcode_open] = ACTIONS(3392), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3392), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3392), - [sym__cite_author_in_text] = ACTIONS(3392), - [sym__cite_suppress_author] = ACTIONS(3392), - [sym__strikeout_open] = ACTIONS(3392), - [sym__subscript_open] = ACTIONS(3392), - [sym__superscript_open] = ACTIONS(3392), - [sym__inline_note_start_token] = ACTIONS(3392), - [sym__strong_emphasis_open_star] = ACTIONS(3392), - [sym__strong_emphasis_open_underscore] = ACTIONS(3392), - [sym__emphasis_open_star] = ACTIONS(3392), - [sym__emphasis_open_underscore] = ACTIONS(3392), - [sym_inline_note_reference] = ACTIONS(3392), - [sym_html_element] = ACTIONS(3392), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3392), - [anon_sym_COLON] = ACTIONS(3392), - [sym_entity_reference] = ACTIONS(3392), - [sym_numeric_character_reference] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3392), - [anon_sym_BANG_LBRACK] = ACTIONS(3392), - [anon_sym_DOLLAR] = ACTIONS(3394), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3392), - [aux_sym_pandoc_str_token1] = ACTIONS(3394), - [anon_sym_PIPE] = ACTIONS(3392), - [aux_sym__prose_punctuation_token1] = ACTIONS(3394), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3394), - [sym__line_ending] = ACTIONS(3392), - [sym__soft_line_ending] = ACTIONS(3392), - [sym__block_quote_start] = ACTIONS(3392), - [sym_atx_h1_marker] = ACTIONS(3392), - [sym_atx_h2_marker] = ACTIONS(3392), - [sym_atx_h3_marker] = ACTIONS(3392), - [sym_atx_h4_marker] = ACTIONS(3392), - [sym_atx_h5_marker] = ACTIONS(3392), - [sym_atx_h6_marker] = ACTIONS(3392), - [sym__thematic_break] = ACTIONS(3392), - [sym__list_marker_minus] = ACTIONS(3392), - [sym__list_marker_plus] = ACTIONS(3392), - [sym__list_marker_star] = ACTIONS(3392), - [sym__list_marker_parenthesis] = ACTIONS(3392), - [sym__list_marker_dot] = ACTIONS(3392), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3392), - [sym__list_marker_example] = ACTIONS(3392), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3392), - [sym__fenced_code_block_start_backtick] = ACTIONS(3392), - [sym_minus_metadata] = ACTIONS(3392), - [sym__pipe_table_start] = ACTIONS(3392), - [sym__fenced_div_start] = ACTIONS(3392), - [sym_ref_id_specifier] = ACTIONS(3392), - [sym__code_span_start] = ACTIONS(3392), - [sym__html_comment] = ACTIONS(3392), - [sym__autolink] = ACTIONS(3392), - [sym__highlight_span_start] = ACTIONS(3392), - [sym__insert_span_start] = ACTIONS(3392), - [sym__delete_span_start] = ACTIONS(3392), - [sym__edit_comment_span_start] = ACTIONS(3392), - [sym__single_quote_span_open] = ACTIONS(3392), - [sym__double_quote_span_open] = ACTIONS(3392), - [sym__shortcode_open_escaped] = ACTIONS(3392), - [sym__shortcode_open] = ACTIONS(3392), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3392), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3392), - [sym__cite_author_in_text] = ACTIONS(3392), - [sym__cite_suppress_author] = ACTIONS(3392), - [sym__strikeout_open] = ACTIONS(3392), - [sym__subscript_open] = ACTIONS(3392), - [sym__superscript_open] = ACTIONS(3392), - [sym__inline_note_start_token] = ACTIONS(3392), - [sym__strong_emphasis_open_star] = ACTIONS(3392), - [sym__strong_emphasis_open_underscore] = ACTIONS(3392), - [sym__emphasis_open_star] = ACTIONS(3392), - [sym__emphasis_open_underscore] = ACTIONS(3392), - [sym_inline_note_reference] = ACTIONS(3392), - [sym_html_element] = ACTIONS(3392), + [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(3396), - [anon_sym_COLON] = ACTIONS(3396), - [sym_entity_reference] = ACTIONS(3396), - [sym_numeric_character_reference] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_BANG_LBRACK] = ACTIONS(3396), - [anon_sym_DOLLAR] = ACTIONS(3398), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3396), - [aux_sym_pandoc_str_token1] = ACTIONS(3398), - [anon_sym_PIPE] = ACTIONS(3396), - [aux_sym__prose_punctuation_token1] = ACTIONS(3398), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3398), - [sym__line_ending] = ACTIONS(3396), - [sym__soft_line_ending] = ACTIONS(3396), - [sym__block_quote_start] = ACTIONS(3396), - [sym_atx_h1_marker] = ACTIONS(3396), - [sym_atx_h2_marker] = ACTIONS(3396), - [sym_atx_h3_marker] = ACTIONS(3396), - [sym_atx_h4_marker] = ACTIONS(3396), - [sym_atx_h5_marker] = ACTIONS(3396), - [sym_atx_h6_marker] = ACTIONS(3396), - [sym__thematic_break] = ACTIONS(3396), - [sym__list_marker_minus] = ACTIONS(3396), - [sym__list_marker_plus] = ACTIONS(3396), - [sym__list_marker_star] = ACTIONS(3396), - [sym__list_marker_parenthesis] = ACTIONS(3396), - [sym__list_marker_dot] = ACTIONS(3396), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_example] = ACTIONS(3396), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3396), - [sym__fenced_code_block_start_backtick] = ACTIONS(3396), - [sym_minus_metadata] = ACTIONS(3396), - [sym__pipe_table_start] = ACTIONS(3396), - [sym__fenced_div_start] = ACTIONS(3396), - [sym_ref_id_specifier] = ACTIONS(3396), - [sym__code_span_start] = ACTIONS(3396), - [sym__html_comment] = ACTIONS(3396), - [sym__autolink] = ACTIONS(3396), - [sym__highlight_span_start] = ACTIONS(3396), - [sym__insert_span_start] = ACTIONS(3396), - [sym__delete_span_start] = ACTIONS(3396), - [sym__edit_comment_span_start] = ACTIONS(3396), - [sym__single_quote_span_open] = ACTIONS(3396), - [sym__double_quote_span_open] = ACTIONS(3396), - [sym__shortcode_open_escaped] = ACTIONS(3396), - [sym__shortcode_open] = ACTIONS(3396), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3396), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3396), - [sym__cite_author_in_text] = ACTIONS(3396), - [sym__cite_suppress_author] = ACTIONS(3396), - [sym__strikeout_open] = ACTIONS(3396), - [sym__subscript_open] = ACTIONS(3396), - [sym__superscript_open] = ACTIONS(3396), - [sym__inline_note_start_token] = ACTIONS(3396), - [sym__strong_emphasis_open_star] = ACTIONS(3396), - [sym__strong_emphasis_open_underscore] = ACTIONS(3396), - [sym__emphasis_open_star] = ACTIONS(3396), - [sym__emphasis_open_underscore] = ACTIONS(3396), - [sym_inline_note_reference] = ACTIONS(3396), - [sym_html_element] = ACTIONS(3396), + [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__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)] = { - [ts_builtin_sym_end] = ACTIONS(3400), - [anon_sym_COLON] = ACTIONS(3400), - [sym_entity_reference] = ACTIONS(3400), - [sym_numeric_character_reference] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_BANG_LBRACK] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(3402), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3400), - [aux_sym_pandoc_str_token1] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3400), - [aux_sym__prose_punctuation_token1] = ACTIONS(3402), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3402), - [sym__line_ending] = ACTIONS(3400), - [sym__soft_line_ending] = ACTIONS(3400), - [sym__block_quote_start] = ACTIONS(3400), - [sym_atx_h1_marker] = ACTIONS(3400), - [sym_atx_h2_marker] = ACTIONS(3400), - [sym_atx_h3_marker] = ACTIONS(3400), - [sym_atx_h4_marker] = ACTIONS(3400), - [sym_atx_h5_marker] = ACTIONS(3400), - [sym_atx_h6_marker] = ACTIONS(3400), - [sym__thematic_break] = ACTIONS(3400), - [sym__list_marker_minus] = ACTIONS(3400), - [sym__list_marker_plus] = ACTIONS(3400), - [sym__list_marker_star] = ACTIONS(3400), - [sym__list_marker_parenthesis] = ACTIONS(3400), - [sym__list_marker_dot] = ACTIONS(3400), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_example] = ACTIONS(3400), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3400), - [sym__fenced_code_block_start_backtick] = ACTIONS(3400), - [sym_minus_metadata] = ACTIONS(3400), - [sym__pipe_table_start] = ACTIONS(3400), - [sym__fenced_div_start] = ACTIONS(3400), - [sym_ref_id_specifier] = ACTIONS(3400), - [sym__code_span_start] = ACTIONS(3400), - [sym__html_comment] = ACTIONS(3400), - [sym__autolink] = ACTIONS(3400), - [sym__highlight_span_start] = ACTIONS(3400), - [sym__insert_span_start] = ACTIONS(3400), - [sym__delete_span_start] = ACTIONS(3400), - [sym__edit_comment_span_start] = ACTIONS(3400), - [sym__single_quote_span_open] = ACTIONS(3400), - [sym__double_quote_span_open] = ACTIONS(3400), - [sym__shortcode_open_escaped] = ACTIONS(3400), - [sym__shortcode_open] = ACTIONS(3400), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3400), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3400), - [sym__cite_author_in_text] = ACTIONS(3400), - [sym__cite_suppress_author] = ACTIONS(3400), - [sym__strikeout_open] = ACTIONS(3400), - [sym__subscript_open] = ACTIONS(3400), - [sym__superscript_open] = ACTIONS(3400), - [sym__inline_note_start_token] = ACTIONS(3400), - [sym__strong_emphasis_open_star] = ACTIONS(3400), - [sym__strong_emphasis_open_underscore] = ACTIONS(3400), - [sym__emphasis_open_star] = ACTIONS(3400), - [sym__emphasis_open_underscore] = ACTIONS(3400), - [sym_inline_note_reference] = ACTIONS(3400), - [sym_html_element] = ACTIONS(3400), + [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(3404), - [anon_sym_COLON] = ACTIONS(3404), - [sym_entity_reference] = ACTIONS(3404), - [sym_numeric_character_reference] = ACTIONS(3404), - [anon_sym_LBRACK] = ACTIONS(3404), - [anon_sym_BANG_LBRACK] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3406), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3404), - [aux_sym_pandoc_str_token1] = ACTIONS(3406), - [anon_sym_PIPE] = ACTIONS(3404), - [aux_sym__prose_punctuation_token1] = ACTIONS(3406), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3406), - [sym__line_ending] = ACTIONS(3404), - [sym__soft_line_ending] = ACTIONS(3404), - [sym__block_quote_start] = ACTIONS(3404), - [sym_atx_h1_marker] = ACTIONS(3404), - [sym_atx_h2_marker] = ACTIONS(3404), - [sym_atx_h3_marker] = ACTIONS(3404), - [sym_atx_h4_marker] = ACTIONS(3404), - [sym_atx_h5_marker] = ACTIONS(3404), - [sym_atx_h6_marker] = ACTIONS(3404), - [sym__thematic_break] = ACTIONS(3404), - [sym__list_marker_minus] = ACTIONS(3404), - [sym__list_marker_plus] = ACTIONS(3404), - [sym__list_marker_star] = ACTIONS(3404), - [sym__list_marker_parenthesis] = ACTIONS(3404), - [sym__list_marker_dot] = ACTIONS(3404), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_example] = ACTIONS(3404), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3404), - [sym__fenced_code_block_start_backtick] = ACTIONS(3404), - [sym_minus_metadata] = ACTIONS(3404), - [sym__pipe_table_start] = ACTIONS(3404), - [sym__fenced_div_start] = ACTIONS(3404), - [sym_ref_id_specifier] = ACTIONS(3404), - [sym__code_span_start] = ACTIONS(3404), - [sym__html_comment] = ACTIONS(3404), - [sym__autolink] = ACTIONS(3404), - [sym__highlight_span_start] = ACTIONS(3404), - [sym__insert_span_start] = ACTIONS(3404), - [sym__delete_span_start] = ACTIONS(3404), - [sym__edit_comment_span_start] = ACTIONS(3404), - [sym__single_quote_span_open] = ACTIONS(3404), - [sym__double_quote_span_open] = ACTIONS(3404), - [sym__shortcode_open_escaped] = ACTIONS(3404), - [sym__shortcode_open] = ACTIONS(3404), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3404), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3404), - [sym__cite_author_in_text] = ACTIONS(3404), - [sym__cite_suppress_author] = ACTIONS(3404), - [sym__strikeout_open] = ACTIONS(3404), - [sym__subscript_open] = ACTIONS(3404), - [sym__superscript_open] = ACTIONS(3404), - [sym__inline_note_start_token] = ACTIONS(3404), - [sym__strong_emphasis_open_star] = ACTIONS(3404), - [sym__strong_emphasis_open_underscore] = ACTIONS(3404), - [sym__emphasis_open_star] = ACTIONS(3404), - [sym__emphasis_open_underscore] = ACTIONS(3404), - [sym_inline_note_reference] = ACTIONS(3404), - [sym_html_element] = ACTIONS(3404), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3780), - [anon_sym_COLON] = ACTIONS(3780), - [sym_entity_reference] = ACTIONS(3780), - [sym_numeric_character_reference] = ACTIONS(3780), - [anon_sym_LBRACK] = ACTIONS(3780), - [anon_sym_BANG_LBRACK] = ACTIONS(3780), - [anon_sym_DOLLAR] = ACTIONS(3782), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3780), - [anon_sym_LBRACE] = ACTIONS(3780), - [aux_sym_pandoc_str_token1] = ACTIONS(3782), - [anon_sym_PIPE] = ACTIONS(3780), - [aux_sym__prose_punctuation_token1] = ACTIONS(3782), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3782), - [sym__line_ending] = ACTIONS(3780), - [sym__soft_line_ending] = ACTIONS(3780), - [sym__block_quote_start] = ACTIONS(3780), - [sym_atx_h1_marker] = ACTIONS(3780), - [sym_atx_h2_marker] = ACTIONS(3780), - [sym_atx_h3_marker] = ACTIONS(3780), - [sym_atx_h4_marker] = ACTIONS(3780), - [sym_atx_h5_marker] = ACTIONS(3780), - [sym_atx_h6_marker] = ACTIONS(3780), - [sym__thematic_break] = ACTIONS(3780), - [sym__list_marker_minus] = ACTIONS(3780), - [sym__list_marker_plus] = ACTIONS(3780), - [sym__list_marker_star] = ACTIONS(3780), - [sym__list_marker_parenthesis] = ACTIONS(3780), - [sym__list_marker_dot] = ACTIONS(3780), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_example] = ACTIONS(3780), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3780), - [sym__fenced_code_block_start_backtick] = ACTIONS(3780), - [sym_minus_metadata] = ACTIONS(3780), - [sym__pipe_table_start] = ACTIONS(3780), - [sym__fenced_div_start] = ACTIONS(3780), - [sym_ref_id_specifier] = ACTIONS(3780), - [sym__code_span_start] = ACTIONS(3780), - [sym__html_comment] = ACTIONS(3780), - [sym__autolink] = ACTIONS(3780), - [sym__highlight_span_start] = ACTIONS(3780), - [sym__insert_span_start] = ACTIONS(3780), - [sym__delete_span_start] = ACTIONS(3780), - [sym__edit_comment_span_start] = ACTIONS(3780), - [sym__single_quote_span_open] = ACTIONS(3780), - [sym__double_quote_span_open] = ACTIONS(3780), - [sym__shortcode_open_escaped] = ACTIONS(3780), - [sym__shortcode_open] = ACTIONS(3780), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3780), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3780), - [sym__cite_author_in_text] = ACTIONS(3780), - [sym__cite_suppress_author] = ACTIONS(3780), - [sym__strikeout_open] = ACTIONS(3780), - [sym__subscript_open] = ACTIONS(3780), - [sym__superscript_open] = ACTIONS(3780), - [sym__inline_note_start_token] = ACTIONS(3780), - [sym__strong_emphasis_open_star] = ACTIONS(3780), - [sym__strong_emphasis_open_underscore] = ACTIONS(3780), - [sym__emphasis_open_star] = ACTIONS(3780), - [sym__emphasis_open_underscore] = ACTIONS(3780), - [sym_inline_note_reference] = ACTIONS(3780), - [sym_html_element] = ACTIONS(3780), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3408), - [anon_sym_COLON] = ACTIONS(3408), - [sym_entity_reference] = ACTIONS(3408), - [sym_numeric_character_reference] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_BANG_LBRACK] = ACTIONS(3408), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3408), - [aux_sym_pandoc_str_token1] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3408), - [aux_sym__prose_punctuation_token1] = ACTIONS(3410), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3410), - [sym__line_ending] = ACTIONS(3408), - [sym__soft_line_ending] = ACTIONS(3408), - [sym__block_quote_start] = ACTIONS(3408), - [sym_atx_h1_marker] = ACTIONS(3408), - [sym_atx_h2_marker] = ACTIONS(3408), - [sym_atx_h3_marker] = ACTIONS(3408), - [sym_atx_h4_marker] = ACTIONS(3408), - [sym_atx_h5_marker] = ACTIONS(3408), - [sym_atx_h6_marker] = ACTIONS(3408), - [sym__thematic_break] = ACTIONS(3408), - [sym__list_marker_minus] = ACTIONS(3408), - [sym__list_marker_plus] = ACTIONS(3408), - [sym__list_marker_star] = ACTIONS(3408), - [sym__list_marker_parenthesis] = ACTIONS(3408), - [sym__list_marker_dot] = ACTIONS(3408), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_example] = ACTIONS(3408), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3408), - [sym__fenced_code_block_start_backtick] = ACTIONS(3408), - [sym_minus_metadata] = ACTIONS(3408), - [sym__pipe_table_start] = ACTIONS(3408), - [sym__fenced_div_start] = ACTIONS(3408), - [sym_ref_id_specifier] = ACTIONS(3408), - [sym__code_span_start] = ACTIONS(3408), - [sym__html_comment] = ACTIONS(3408), - [sym__autolink] = ACTIONS(3408), - [sym__highlight_span_start] = ACTIONS(3408), - [sym__insert_span_start] = ACTIONS(3408), - [sym__delete_span_start] = ACTIONS(3408), - [sym__edit_comment_span_start] = ACTIONS(3408), - [sym__single_quote_span_open] = ACTIONS(3408), - [sym__double_quote_span_open] = ACTIONS(3408), - [sym__shortcode_open_escaped] = ACTIONS(3408), - [sym__shortcode_open] = ACTIONS(3408), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3408), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3408), - [sym__cite_author_in_text] = ACTIONS(3408), - [sym__cite_suppress_author] = ACTIONS(3408), - [sym__strikeout_open] = ACTIONS(3408), - [sym__subscript_open] = ACTIONS(3408), - [sym__superscript_open] = ACTIONS(3408), - [sym__inline_note_start_token] = ACTIONS(3408), - [sym__strong_emphasis_open_star] = ACTIONS(3408), - [sym__strong_emphasis_open_underscore] = ACTIONS(3408), - [sym__emphasis_open_star] = ACTIONS(3408), - [sym__emphasis_open_underscore] = ACTIONS(3408), - [sym_inline_note_reference] = ACTIONS(3408), - [sym_html_element] = ACTIONS(3408), + [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(3412), - [anon_sym_COLON] = ACTIONS(3412), - [sym_entity_reference] = ACTIONS(3412), - [sym_numeric_character_reference] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3412), - [anon_sym_BANG_LBRACK] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3414), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3412), - [aux_sym_pandoc_str_token1] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3412), - [aux_sym__prose_punctuation_token1] = ACTIONS(3414), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3414), - [sym__line_ending] = ACTIONS(3412), - [sym__soft_line_ending] = ACTIONS(3412), - [sym__block_quote_start] = ACTIONS(3412), - [sym_atx_h1_marker] = ACTIONS(3412), - [sym_atx_h2_marker] = ACTIONS(3412), - [sym_atx_h3_marker] = ACTIONS(3412), - [sym_atx_h4_marker] = ACTIONS(3412), - [sym_atx_h5_marker] = ACTIONS(3412), - [sym_atx_h6_marker] = ACTIONS(3412), - [sym__thematic_break] = ACTIONS(3412), - [sym__list_marker_minus] = ACTIONS(3412), - [sym__list_marker_plus] = ACTIONS(3412), - [sym__list_marker_star] = ACTIONS(3412), - [sym__list_marker_parenthesis] = ACTIONS(3412), - [sym__list_marker_dot] = ACTIONS(3412), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_example] = ACTIONS(3412), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3412), - [sym__fenced_code_block_start_backtick] = ACTIONS(3412), - [sym_minus_metadata] = ACTIONS(3412), - [sym__pipe_table_start] = ACTIONS(3412), - [sym__fenced_div_start] = ACTIONS(3412), - [sym_ref_id_specifier] = ACTIONS(3412), - [sym__code_span_start] = ACTIONS(3412), - [sym__html_comment] = ACTIONS(3412), - [sym__autolink] = ACTIONS(3412), - [sym__highlight_span_start] = ACTIONS(3412), - [sym__insert_span_start] = ACTIONS(3412), - [sym__delete_span_start] = ACTIONS(3412), - [sym__edit_comment_span_start] = ACTIONS(3412), - [sym__single_quote_span_open] = ACTIONS(3412), - [sym__double_quote_span_open] = ACTIONS(3412), - [sym__shortcode_open_escaped] = ACTIONS(3412), - [sym__shortcode_open] = ACTIONS(3412), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3412), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3412), - [sym__cite_author_in_text] = ACTIONS(3412), - [sym__cite_suppress_author] = ACTIONS(3412), - [sym__strikeout_open] = ACTIONS(3412), - [sym__subscript_open] = ACTIONS(3412), - [sym__superscript_open] = ACTIONS(3412), - [sym__inline_note_start_token] = ACTIONS(3412), - [sym__strong_emphasis_open_star] = ACTIONS(3412), - [sym__strong_emphasis_open_underscore] = ACTIONS(3412), - [sym__emphasis_open_star] = ACTIONS(3412), - [sym__emphasis_open_underscore] = ACTIONS(3412), - [sym_inline_note_reference] = ACTIONS(3412), - [sym_html_element] = ACTIONS(3412), + [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] = 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(3416), - [anon_sym_COLON] = ACTIONS(3416), - [sym_entity_reference] = ACTIONS(3416), - [sym_numeric_character_reference] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [anon_sym_BANG_LBRACK] = ACTIONS(3416), - [anon_sym_DOLLAR] = ACTIONS(3418), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3416), - [aux_sym_pandoc_str_token1] = ACTIONS(3418), - [anon_sym_PIPE] = ACTIONS(3416), - [aux_sym__prose_punctuation_token1] = ACTIONS(3418), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3418), - [sym__line_ending] = ACTIONS(3416), - [sym__soft_line_ending] = ACTIONS(3416), - [sym__block_quote_start] = ACTIONS(3416), - [sym_atx_h1_marker] = ACTIONS(3416), - [sym_atx_h2_marker] = ACTIONS(3416), - [sym_atx_h3_marker] = ACTIONS(3416), - [sym_atx_h4_marker] = ACTIONS(3416), - [sym_atx_h5_marker] = ACTIONS(3416), - [sym_atx_h6_marker] = ACTIONS(3416), - [sym__thematic_break] = ACTIONS(3416), - [sym__list_marker_minus] = ACTIONS(3416), - [sym__list_marker_plus] = ACTIONS(3416), - [sym__list_marker_star] = ACTIONS(3416), - [sym__list_marker_parenthesis] = ACTIONS(3416), - [sym__list_marker_dot] = ACTIONS(3416), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_example] = ACTIONS(3416), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3416), - [sym__fenced_code_block_start_backtick] = ACTIONS(3416), - [sym_minus_metadata] = ACTIONS(3416), - [sym__pipe_table_start] = ACTIONS(3416), - [sym__fenced_div_start] = ACTIONS(3416), - [sym_ref_id_specifier] = ACTIONS(3416), - [sym__code_span_start] = ACTIONS(3416), - [sym__html_comment] = ACTIONS(3416), - [sym__autolink] = ACTIONS(3416), - [sym__highlight_span_start] = ACTIONS(3416), - [sym__insert_span_start] = ACTIONS(3416), - [sym__delete_span_start] = ACTIONS(3416), - [sym__edit_comment_span_start] = ACTIONS(3416), - [sym__single_quote_span_open] = ACTIONS(3416), - [sym__double_quote_span_open] = ACTIONS(3416), - [sym__shortcode_open_escaped] = ACTIONS(3416), - [sym__shortcode_open] = ACTIONS(3416), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3416), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3416), - [sym__cite_author_in_text] = ACTIONS(3416), - [sym__cite_suppress_author] = ACTIONS(3416), - [sym__strikeout_open] = ACTIONS(3416), - [sym__subscript_open] = ACTIONS(3416), - [sym__superscript_open] = ACTIONS(3416), - [sym__inline_note_start_token] = ACTIONS(3416), - [sym__strong_emphasis_open_star] = ACTIONS(3416), - [sym__strong_emphasis_open_underscore] = ACTIONS(3416), - [sym__emphasis_open_star] = ACTIONS(3416), - [sym__emphasis_open_underscore] = ACTIONS(3416), - [sym_inline_note_reference] = ACTIONS(3416), - [sym_html_element] = ACTIONS(3416), + [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_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)] = { - [ts_builtin_sym_end] = ACTIONS(3420), - [anon_sym_COLON] = ACTIONS(3420), - [sym_entity_reference] = ACTIONS(3420), - [sym_numeric_character_reference] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3420), - [anon_sym_BANG_LBRACK] = ACTIONS(3420), - [anon_sym_DOLLAR] = ACTIONS(3422), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3420), - [aux_sym_pandoc_str_token1] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3420), - [aux_sym__prose_punctuation_token1] = ACTIONS(3422), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3422), - [sym__line_ending] = ACTIONS(3420), - [sym__soft_line_ending] = ACTIONS(3420), - [sym__block_quote_start] = ACTIONS(3420), - [sym_atx_h1_marker] = ACTIONS(3420), - [sym_atx_h2_marker] = ACTIONS(3420), - [sym_atx_h3_marker] = ACTIONS(3420), - [sym_atx_h4_marker] = ACTIONS(3420), - [sym_atx_h5_marker] = ACTIONS(3420), - [sym_atx_h6_marker] = ACTIONS(3420), - [sym__thematic_break] = ACTIONS(3420), - [sym__list_marker_minus] = ACTIONS(3420), - [sym__list_marker_plus] = ACTIONS(3420), - [sym__list_marker_star] = ACTIONS(3420), - [sym__list_marker_parenthesis] = ACTIONS(3420), - [sym__list_marker_dot] = ACTIONS(3420), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_example] = ACTIONS(3420), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3420), - [sym__fenced_code_block_start_backtick] = ACTIONS(3420), - [sym_minus_metadata] = ACTIONS(3420), - [sym__pipe_table_start] = ACTIONS(3420), - [sym__fenced_div_start] = ACTIONS(3420), - [sym_ref_id_specifier] = ACTIONS(3420), - [sym__code_span_start] = ACTIONS(3420), - [sym__html_comment] = ACTIONS(3420), - [sym__autolink] = ACTIONS(3420), - [sym__highlight_span_start] = ACTIONS(3420), - [sym__insert_span_start] = ACTIONS(3420), - [sym__delete_span_start] = ACTIONS(3420), - [sym__edit_comment_span_start] = ACTIONS(3420), - [sym__single_quote_span_open] = ACTIONS(3420), - [sym__double_quote_span_open] = ACTIONS(3420), - [sym__shortcode_open_escaped] = ACTIONS(3420), - [sym__shortcode_open] = ACTIONS(3420), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3420), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3420), - [sym__cite_author_in_text] = ACTIONS(3420), - [sym__cite_suppress_author] = ACTIONS(3420), - [sym__strikeout_open] = ACTIONS(3420), - [sym__subscript_open] = ACTIONS(3420), - [sym__superscript_open] = ACTIONS(3420), - [sym__inline_note_start_token] = ACTIONS(3420), - [sym__strong_emphasis_open_star] = ACTIONS(3420), - [sym__strong_emphasis_open_underscore] = ACTIONS(3420), - [sym__emphasis_open_star] = ACTIONS(3420), - [sym__emphasis_open_underscore] = ACTIONS(3420), - [sym_inline_note_reference] = ACTIONS(3420), - [sym_html_element] = ACTIONS(3420), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3424), - [anon_sym_COLON] = ACTIONS(3424), - [sym_entity_reference] = ACTIONS(3424), - [sym_numeric_character_reference] = ACTIONS(3424), - [anon_sym_LBRACK] = ACTIONS(3424), - [anon_sym_BANG_LBRACK] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3426), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3424), - [aux_sym_pandoc_str_token1] = ACTIONS(3426), - [anon_sym_PIPE] = ACTIONS(3424), - [aux_sym__prose_punctuation_token1] = ACTIONS(3426), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3426), - [sym__line_ending] = ACTIONS(3424), - [sym__soft_line_ending] = ACTIONS(3424), - [sym__block_quote_start] = ACTIONS(3424), - [sym_atx_h1_marker] = ACTIONS(3424), - [sym_atx_h2_marker] = ACTIONS(3424), - [sym_atx_h3_marker] = ACTIONS(3424), - [sym_atx_h4_marker] = ACTIONS(3424), - [sym_atx_h5_marker] = ACTIONS(3424), - [sym_atx_h6_marker] = ACTIONS(3424), - [sym__thematic_break] = ACTIONS(3424), - [sym__list_marker_minus] = ACTIONS(3424), - [sym__list_marker_plus] = ACTIONS(3424), - [sym__list_marker_star] = ACTIONS(3424), - [sym__list_marker_parenthesis] = ACTIONS(3424), - [sym__list_marker_dot] = ACTIONS(3424), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_example] = ACTIONS(3424), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3424), - [sym__fenced_code_block_start_backtick] = ACTIONS(3424), - [sym_minus_metadata] = ACTIONS(3424), - [sym__pipe_table_start] = ACTIONS(3424), - [sym__fenced_div_start] = ACTIONS(3424), - [sym_ref_id_specifier] = ACTIONS(3424), - [sym__code_span_start] = ACTIONS(3424), - [sym__html_comment] = ACTIONS(3424), - [sym__autolink] = ACTIONS(3424), - [sym__highlight_span_start] = ACTIONS(3424), - [sym__insert_span_start] = ACTIONS(3424), - [sym__delete_span_start] = ACTIONS(3424), - [sym__edit_comment_span_start] = ACTIONS(3424), - [sym__single_quote_span_open] = ACTIONS(3424), - [sym__double_quote_span_open] = ACTIONS(3424), - [sym__shortcode_open_escaped] = ACTIONS(3424), - [sym__shortcode_open] = ACTIONS(3424), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3424), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3424), - [sym__cite_author_in_text] = ACTIONS(3424), - [sym__cite_suppress_author] = ACTIONS(3424), - [sym__strikeout_open] = ACTIONS(3424), - [sym__subscript_open] = ACTIONS(3424), - [sym__superscript_open] = ACTIONS(3424), - [sym__inline_note_start_token] = ACTIONS(3424), - [sym__strong_emphasis_open_star] = ACTIONS(3424), - [sym__strong_emphasis_open_underscore] = ACTIONS(3424), - [sym__emphasis_open_star] = ACTIONS(3424), - [sym__emphasis_open_underscore] = ACTIONS(3424), - [sym_inline_note_reference] = ACTIONS(3424), - [sym_html_element] = ACTIONS(3424), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3428), - [anon_sym_COLON] = ACTIONS(3428), - [sym_entity_reference] = ACTIONS(3428), - [sym_numeric_character_reference] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_BANG_LBRACK] = ACTIONS(3428), - [anon_sym_DOLLAR] = ACTIONS(3430), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3428), - [aux_sym_pandoc_str_token1] = ACTIONS(3430), - [anon_sym_PIPE] = ACTIONS(3428), - [aux_sym__prose_punctuation_token1] = ACTIONS(3430), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3430), - [sym__line_ending] = ACTIONS(3428), - [sym__soft_line_ending] = ACTIONS(3428), - [sym__block_quote_start] = ACTIONS(3428), - [sym_atx_h1_marker] = ACTIONS(3428), - [sym_atx_h2_marker] = ACTIONS(3428), - [sym_atx_h3_marker] = ACTIONS(3428), - [sym_atx_h4_marker] = ACTIONS(3428), - [sym_atx_h5_marker] = ACTIONS(3428), - [sym_atx_h6_marker] = ACTIONS(3428), - [sym__thematic_break] = ACTIONS(3428), - [sym__list_marker_minus] = ACTIONS(3428), - [sym__list_marker_plus] = ACTIONS(3428), - [sym__list_marker_star] = ACTIONS(3428), - [sym__list_marker_parenthesis] = ACTIONS(3428), - [sym__list_marker_dot] = ACTIONS(3428), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_example] = ACTIONS(3428), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3428), - [sym__fenced_code_block_start_backtick] = ACTIONS(3428), - [sym_minus_metadata] = ACTIONS(3428), - [sym__pipe_table_start] = ACTIONS(3428), - [sym__fenced_div_start] = ACTIONS(3428), - [sym_ref_id_specifier] = ACTIONS(3428), - [sym__code_span_start] = ACTIONS(3428), - [sym__html_comment] = ACTIONS(3428), - [sym__autolink] = ACTIONS(3428), - [sym__highlight_span_start] = ACTIONS(3428), - [sym__insert_span_start] = ACTIONS(3428), - [sym__delete_span_start] = ACTIONS(3428), - [sym__edit_comment_span_start] = ACTIONS(3428), - [sym__single_quote_span_open] = ACTIONS(3428), - [sym__double_quote_span_open] = ACTIONS(3428), - [sym__shortcode_open_escaped] = ACTIONS(3428), - [sym__shortcode_open] = ACTIONS(3428), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3428), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3428), - [sym__cite_author_in_text] = ACTIONS(3428), - [sym__cite_suppress_author] = ACTIONS(3428), - [sym__strikeout_open] = ACTIONS(3428), - [sym__subscript_open] = ACTIONS(3428), - [sym__superscript_open] = ACTIONS(3428), - [sym__inline_note_start_token] = ACTIONS(3428), - [sym__strong_emphasis_open_star] = ACTIONS(3428), - [sym__strong_emphasis_open_underscore] = ACTIONS(3428), - [sym__emphasis_open_star] = ACTIONS(3428), - [sym__emphasis_open_underscore] = ACTIONS(3428), - [sym_inline_note_reference] = ACTIONS(3428), - [sym_html_element] = ACTIONS(3428), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3432), - [anon_sym_COLON] = ACTIONS(3432), - [sym_entity_reference] = ACTIONS(3432), - [sym_numeric_character_reference] = ACTIONS(3432), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_BANG_LBRACK] = ACTIONS(3432), - [anon_sym_DOLLAR] = ACTIONS(3434), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3432), - [aux_sym_pandoc_str_token1] = ACTIONS(3434), - [anon_sym_PIPE] = ACTIONS(3432), - [aux_sym__prose_punctuation_token1] = ACTIONS(3434), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3434), - [sym__line_ending] = ACTIONS(3432), - [sym__soft_line_ending] = ACTIONS(3432), - [sym__block_quote_start] = ACTIONS(3432), - [sym_atx_h1_marker] = ACTIONS(3432), - [sym_atx_h2_marker] = ACTIONS(3432), - [sym_atx_h3_marker] = ACTIONS(3432), - [sym_atx_h4_marker] = ACTIONS(3432), - [sym_atx_h5_marker] = ACTIONS(3432), - [sym_atx_h6_marker] = ACTIONS(3432), - [sym__thematic_break] = ACTIONS(3432), - [sym__list_marker_minus] = ACTIONS(3432), - [sym__list_marker_plus] = ACTIONS(3432), - [sym__list_marker_star] = ACTIONS(3432), - [sym__list_marker_parenthesis] = ACTIONS(3432), - [sym__list_marker_dot] = ACTIONS(3432), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_example] = ACTIONS(3432), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3432), - [sym__fenced_code_block_start_backtick] = ACTIONS(3432), - [sym_minus_metadata] = ACTIONS(3432), - [sym__pipe_table_start] = ACTIONS(3432), - [sym__fenced_div_start] = ACTIONS(3432), - [sym_ref_id_specifier] = ACTIONS(3432), - [sym__code_span_start] = ACTIONS(3432), - [sym__html_comment] = ACTIONS(3432), - [sym__autolink] = ACTIONS(3432), - [sym__highlight_span_start] = ACTIONS(3432), - [sym__insert_span_start] = ACTIONS(3432), - [sym__delete_span_start] = ACTIONS(3432), - [sym__edit_comment_span_start] = ACTIONS(3432), - [sym__single_quote_span_open] = ACTIONS(3432), - [sym__double_quote_span_open] = ACTIONS(3432), - [sym__shortcode_open_escaped] = ACTIONS(3432), - [sym__shortcode_open] = ACTIONS(3432), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3432), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3432), - [sym__cite_author_in_text] = ACTIONS(3432), - [sym__cite_suppress_author] = ACTIONS(3432), - [sym__strikeout_open] = ACTIONS(3432), - [sym__subscript_open] = ACTIONS(3432), - [sym__superscript_open] = ACTIONS(3432), - [sym__inline_note_start_token] = ACTIONS(3432), - [sym__strong_emphasis_open_star] = ACTIONS(3432), - [sym__strong_emphasis_open_underscore] = ACTIONS(3432), - [sym__emphasis_open_star] = ACTIONS(3432), - [sym__emphasis_open_underscore] = ACTIONS(3432), - [sym_inline_note_reference] = ACTIONS(3432), - [sym_html_element] = ACTIONS(3432), + [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(3368), - [sym_entity_reference] = ACTIONS(3368), - [sym_numeric_character_reference] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_BANG_LBRACK] = ACTIONS(3368), - [anon_sym_DOLLAR] = ACTIONS(3370), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [aux_sym_pandoc_str_token1] = ACTIONS(3370), - [anon_sym_PIPE] = ACTIONS(3368), - [aux_sym__prose_punctuation_token1] = ACTIONS(3370), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3370), - [sym__line_ending] = ACTIONS(3368), - [sym__soft_line_ending] = ACTIONS(3368), - [sym__block_close] = ACTIONS(3368), - [sym__block_quote_start] = ACTIONS(3368), - [sym_atx_h1_marker] = ACTIONS(3368), - [sym_atx_h2_marker] = ACTIONS(3368), - [sym_atx_h3_marker] = ACTIONS(3368), - [sym_atx_h4_marker] = ACTIONS(3368), - [sym_atx_h5_marker] = ACTIONS(3368), - [sym_atx_h6_marker] = ACTIONS(3368), - [sym__thematic_break] = ACTIONS(3368), - [sym__list_marker_minus] = ACTIONS(3368), - [sym__list_marker_plus] = ACTIONS(3368), - [sym__list_marker_star] = ACTIONS(3368), - [sym__list_marker_parenthesis] = ACTIONS(3368), - [sym__list_marker_dot] = ACTIONS(3368), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_example] = ACTIONS(3368), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3368), - [sym__fenced_code_block_start_backtick] = ACTIONS(3368), - [sym_minus_metadata] = ACTIONS(3368), - [sym__pipe_table_start] = ACTIONS(3368), - [sym__fenced_div_start] = ACTIONS(3368), - [sym_ref_id_specifier] = ACTIONS(3368), - [sym__code_span_start] = ACTIONS(3368), - [sym__html_comment] = ACTIONS(3368), - [sym__autolink] = ACTIONS(3368), - [sym__highlight_span_start] = ACTIONS(3368), - [sym__insert_span_start] = ACTIONS(3368), - [sym__delete_span_start] = ACTIONS(3368), - [sym__edit_comment_span_start] = ACTIONS(3368), - [sym__single_quote_span_open] = ACTIONS(3368), - [sym__double_quote_span_open] = ACTIONS(3368), - [sym__shortcode_open_escaped] = ACTIONS(3368), - [sym__shortcode_open] = ACTIONS(3368), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3368), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3368), - [sym__cite_author_in_text] = ACTIONS(3368), - [sym__cite_suppress_author] = ACTIONS(3368), - [sym__strikeout_open] = ACTIONS(3368), - [sym__subscript_open] = ACTIONS(3368), - [sym__superscript_open] = ACTIONS(3368), - [sym__inline_note_start_token] = ACTIONS(3368), - [sym__strong_emphasis_open_star] = ACTIONS(3368), - [sym__strong_emphasis_open_underscore] = ACTIONS(3368), - [sym__emphasis_open_star] = ACTIONS(3368), - [sym__emphasis_open_underscore] = ACTIONS(3368), - [sym_inline_note_reference] = ACTIONS(3368), - [sym_html_element] = ACTIONS(3368), + [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(3396), - [sym_entity_reference] = ACTIONS(3396), - [sym_numeric_character_reference] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3396), - [anon_sym_BANG_LBRACK] = ACTIONS(3396), - [anon_sym_DOLLAR] = ACTIONS(3398), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3396), - [aux_sym_pandoc_str_token1] = ACTIONS(3398), - [anon_sym_PIPE] = ACTIONS(3396), - [aux_sym__prose_punctuation_token1] = ACTIONS(3398), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3398), - [sym__line_ending] = ACTIONS(3396), - [sym__soft_line_ending] = ACTIONS(3396), - [sym__block_close] = ACTIONS(3396), - [sym__block_quote_start] = ACTIONS(3396), - [sym_atx_h1_marker] = ACTIONS(3396), - [sym_atx_h2_marker] = ACTIONS(3396), - [sym_atx_h3_marker] = ACTIONS(3396), - [sym_atx_h4_marker] = ACTIONS(3396), - [sym_atx_h5_marker] = ACTIONS(3396), - [sym_atx_h6_marker] = ACTIONS(3396), - [sym__thematic_break] = ACTIONS(3396), - [sym__list_marker_minus] = ACTIONS(3396), - [sym__list_marker_plus] = ACTIONS(3396), - [sym__list_marker_star] = ACTIONS(3396), - [sym__list_marker_parenthesis] = ACTIONS(3396), - [sym__list_marker_dot] = ACTIONS(3396), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3396), - [sym__list_marker_example] = ACTIONS(3396), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3396), - [sym__fenced_code_block_start_backtick] = ACTIONS(3396), - [sym_minus_metadata] = ACTIONS(3396), - [sym__pipe_table_start] = ACTIONS(3396), - [sym__fenced_div_start] = ACTIONS(3396), - [sym_ref_id_specifier] = ACTIONS(3396), - [sym__code_span_start] = ACTIONS(3396), - [sym__html_comment] = ACTIONS(3396), - [sym__autolink] = ACTIONS(3396), - [sym__highlight_span_start] = ACTIONS(3396), - [sym__insert_span_start] = ACTIONS(3396), - [sym__delete_span_start] = ACTIONS(3396), - [sym__edit_comment_span_start] = ACTIONS(3396), - [sym__single_quote_span_open] = ACTIONS(3396), - [sym__double_quote_span_open] = ACTIONS(3396), - [sym__shortcode_open_escaped] = ACTIONS(3396), - [sym__shortcode_open] = ACTIONS(3396), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3396), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3396), - [sym__cite_author_in_text] = ACTIONS(3396), - [sym__cite_suppress_author] = ACTIONS(3396), - [sym__strikeout_open] = ACTIONS(3396), - [sym__subscript_open] = ACTIONS(3396), - [sym__superscript_open] = ACTIONS(3396), - [sym__inline_note_start_token] = ACTIONS(3396), - [sym__strong_emphasis_open_star] = ACTIONS(3396), - [sym__strong_emphasis_open_underscore] = ACTIONS(3396), - [sym__emphasis_open_star] = ACTIONS(3396), - [sym__emphasis_open_underscore] = ACTIONS(3396), - [sym_inline_note_reference] = ACTIONS(3396), - [sym_html_element] = ACTIONS(3396), + [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)] = { - [anon_sym_COLON] = ACTIONS(3400), - [sym_entity_reference] = ACTIONS(3400), - [sym_numeric_character_reference] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3400), - [anon_sym_BANG_LBRACK] = ACTIONS(3400), - [anon_sym_DOLLAR] = ACTIONS(3402), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3400), - [aux_sym_pandoc_str_token1] = ACTIONS(3402), - [anon_sym_PIPE] = ACTIONS(3400), - [aux_sym__prose_punctuation_token1] = ACTIONS(3402), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3402), - [sym__line_ending] = ACTIONS(3400), - [sym__soft_line_ending] = ACTIONS(3400), - [sym__block_close] = ACTIONS(3400), - [sym__block_quote_start] = ACTIONS(3400), - [sym_atx_h1_marker] = ACTIONS(3400), - [sym_atx_h2_marker] = ACTIONS(3400), - [sym_atx_h3_marker] = ACTIONS(3400), - [sym_atx_h4_marker] = ACTIONS(3400), - [sym_atx_h5_marker] = ACTIONS(3400), - [sym_atx_h6_marker] = ACTIONS(3400), - [sym__thematic_break] = ACTIONS(3400), - [sym__list_marker_minus] = ACTIONS(3400), - [sym__list_marker_plus] = ACTIONS(3400), - [sym__list_marker_star] = ACTIONS(3400), - [sym__list_marker_parenthesis] = ACTIONS(3400), - [sym__list_marker_dot] = ACTIONS(3400), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3400), - [sym__list_marker_example] = ACTIONS(3400), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3400), - [sym__fenced_code_block_start_backtick] = ACTIONS(3400), - [sym_minus_metadata] = ACTIONS(3400), - [sym__pipe_table_start] = ACTIONS(3400), - [sym__fenced_div_start] = ACTIONS(3400), - [sym_ref_id_specifier] = ACTIONS(3400), - [sym__code_span_start] = ACTIONS(3400), - [sym__html_comment] = ACTIONS(3400), - [sym__autolink] = ACTIONS(3400), - [sym__highlight_span_start] = ACTIONS(3400), - [sym__insert_span_start] = ACTIONS(3400), - [sym__delete_span_start] = ACTIONS(3400), - [sym__edit_comment_span_start] = ACTIONS(3400), - [sym__single_quote_span_open] = ACTIONS(3400), - [sym__double_quote_span_open] = ACTIONS(3400), - [sym__shortcode_open_escaped] = ACTIONS(3400), - [sym__shortcode_open] = ACTIONS(3400), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3400), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3400), - [sym__cite_author_in_text] = ACTIONS(3400), - [sym__cite_suppress_author] = ACTIONS(3400), - [sym__strikeout_open] = ACTIONS(3400), - [sym__subscript_open] = ACTIONS(3400), - [sym__superscript_open] = ACTIONS(3400), - [sym__inline_note_start_token] = ACTIONS(3400), - [sym__strong_emphasis_open_star] = ACTIONS(3400), - [sym__strong_emphasis_open_underscore] = ACTIONS(3400), - [sym__emphasis_open_star] = ACTIONS(3400), - [sym__emphasis_open_underscore] = ACTIONS(3400), - [sym_inline_note_reference] = ACTIONS(3400), - [sym_html_element] = ACTIONS(3400), + [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_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)] = { - [anon_sym_COLON] = ACTIONS(3404), - [sym_entity_reference] = ACTIONS(3404), - [sym_numeric_character_reference] = ACTIONS(3404), - [anon_sym_LBRACK] = ACTIONS(3404), - [anon_sym_BANG_LBRACK] = ACTIONS(3404), - [anon_sym_DOLLAR] = ACTIONS(3406), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3404), - [aux_sym_pandoc_str_token1] = ACTIONS(3406), - [anon_sym_PIPE] = ACTIONS(3404), - [aux_sym__prose_punctuation_token1] = ACTIONS(3406), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3406), - [sym__line_ending] = ACTIONS(3404), - [sym__soft_line_ending] = ACTIONS(3404), - [sym__block_close] = ACTIONS(3404), - [sym__block_quote_start] = ACTIONS(3404), - [sym_atx_h1_marker] = ACTIONS(3404), - [sym_atx_h2_marker] = ACTIONS(3404), - [sym_atx_h3_marker] = ACTIONS(3404), - [sym_atx_h4_marker] = ACTIONS(3404), - [sym_atx_h5_marker] = ACTIONS(3404), - [sym_atx_h6_marker] = ACTIONS(3404), - [sym__thematic_break] = ACTIONS(3404), - [sym__list_marker_minus] = ACTIONS(3404), - [sym__list_marker_plus] = ACTIONS(3404), - [sym__list_marker_star] = ACTIONS(3404), - [sym__list_marker_parenthesis] = ACTIONS(3404), - [sym__list_marker_dot] = ACTIONS(3404), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3404), - [sym__list_marker_example] = ACTIONS(3404), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3404), - [sym__fenced_code_block_start_backtick] = ACTIONS(3404), - [sym_minus_metadata] = ACTIONS(3404), - [sym__pipe_table_start] = ACTIONS(3404), - [sym__fenced_div_start] = ACTIONS(3404), - [sym_ref_id_specifier] = ACTIONS(3404), - [sym__code_span_start] = ACTIONS(3404), - [sym__html_comment] = ACTIONS(3404), - [sym__autolink] = ACTIONS(3404), - [sym__highlight_span_start] = ACTIONS(3404), - [sym__insert_span_start] = ACTIONS(3404), - [sym__delete_span_start] = ACTIONS(3404), - [sym__edit_comment_span_start] = ACTIONS(3404), - [sym__single_quote_span_open] = ACTIONS(3404), - [sym__double_quote_span_open] = ACTIONS(3404), - [sym__shortcode_open_escaped] = ACTIONS(3404), - [sym__shortcode_open] = ACTIONS(3404), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3404), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3404), - [sym__cite_author_in_text] = ACTIONS(3404), - [sym__cite_suppress_author] = ACTIONS(3404), - [sym__strikeout_open] = ACTIONS(3404), - [sym__subscript_open] = ACTIONS(3404), - [sym__superscript_open] = ACTIONS(3404), - [sym__inline_note_start_token] = ACTIONS(3404), - [sym__strong_emphasis_open_star] = ACTIONS(3404), - [sym__strong_emphasis_open_underscore] = ACTIONS(3404), - [sym__emphasis_open_star] = ACTIONS(3404), - [sym__emphasis_open_underscore] = ACTIONS(3404), - [sym_inline_note_reference] = ACTIONS(3404), - [sym_html_element] = ACTIONS(3404), + [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__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)] = { - [ts_builtin_sym_end] = ACTIONS(3119), - [anon_sym_COLON] = ACTIONS(3119), - [sym_entity_reference] = ACTIONS(3119), - [sym_numeric_character_reference] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_BANG_LBRACK] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3119), - [aux_sym_pandoc_str_token1] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3119), - [aux_sym__prose_punctuation_token1] = ACTIONS(3121), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3121), - [sym__line_ending] = ACTIONS(3119), - [sym__soft_line_ending] = ACTIONS(3119), - [sym__block_quote_start] = ACTIONS(3119), - [sym_atx_h1_marker] = ACTIONS(3119), - [sym_atx_h2_marker] = ACTIONS(3119), - [sym_atx_h3_marker] = ACTIONS(3119), - [sym_atx_h4_marker] = ACTIONS(3119), - [sym_atx_h5_marker] = ACTIONS(3119), - [sym_atx_h6_marker] = ACTIONS(3119), - [sym__thematic_break] = ACTIONS(3119), - [sym__list_marker_minus] = ACTIONS(3119), - [sym__list_marker_plus] = ACTIONS(3119), - [sym__list_marker_star] = ACTIONS(3119), - [sym__list_marker_parenthesis] = ACTIONS(3119), - [sym__list_marker_dot] = ACTIONS(3119), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_example] = ACTIONS(3119), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3119), - [sym__fenced_code_block_start_backtick] = ACTIONS(3119), - [sym_minus_metadata] = ACTIONS(3119), - [sym__pipe_table_start] = ACTIONS(3119), - [sym__fenced_div_start] = ACTIONS(3119), - [sym_ref_id_specifier] = ACTIONS(3119), - [sym__code_span_start] = ACTIONS(3119), - [sym__html_comment] = ACTIONS(3119), - [sym__autolink] = ACTIONS(3119), - [sym__highlight_span_start] = ACTIONS(3119), - [sym__insert_span_start] = ACTIONS(3119), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3119), - [sym__single_quote_span_open] = ACTIONS(3119), - [sym__double_quote_span_open] = ACTIONS(3119), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3119), - [sym__cite_author_in_text] = ACTIONS(3119), - [sym__cite_suppress_author] = ACTIONS(3119), - [sym__strikeout_open] = ACTIONS(3119), - [sym__subscript_open] = ACTIONS(3119), - [sym__superscript_open] = ACTIONS(3119), - [sym__inline_note_start_token] = ACTIONS(3119), - [sym__strong_emphasis_open_star] = ACTIONS(3119), - [sym__strong_emphasis_open_underscore] = ACTIONS(3119), - [sym__emphasis_open_star] = ACTIONS(3119), - [sym__emphasis_open_underscore] = ACTIONS(3119), - [sym_inline_note_reference] = ACTIONS(3119), - [sym_html_element] = ACTIONS(3119), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3340), - [anon_sym_COLON] = ACTIONS(3340), - [sym_entity_reference] = ACTIONS(3340), - [sym_numeric_character_reference] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_BANG_LBRACK] = ACTIONS(3340), - [anon_sym_DOLLAR] = ACTIONS(3342), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [aux_sym_pandoc_str_token1] = ACTIONS(3342), - [anon_sym_PIPE] = ACTIONS(3340), - [aux_sym__prose_punctuation_token1] = ACTIONS(3342), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3342), - [sym__line_ending] = ACTIONS(3340), - [sym__soft_line_ending] = ACTIONS(3340), - [sym__block_quote_start] = ACTIONS(3340), - [sym_atx_h1_marker] = ACTIONS(3340), - [sym_atx_h2_marker] = ACTIONS(3340), - [sym_atx_h3_marker] = ACTIONS(3340), - [sym_atx_h4_marker] = ACTIONS(3340), - [sym_atx_h5_marker] = ACTIONS(3340), - [sym_atx_h6_marker] = ACTIONS(3340), - [sym__thematic_break] = ACTIONS(3340), - [sym__list_marker_minus] = ACTIONS(3340), - [sym__list_marker_plus] = ACTIONS(3340), - [sym__list_marker_star] = ACTIONS(3340), - [sym__list_marker_parenthesis] = ACTIONS(3340), - [sym__list_marker_dot] = ACTIONS(3340), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_example] = ACTIONS(3340), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3340), - [sym__fenced_code_block_start_backtick] = ACTIONS(3340), - [sym_minus_metadata] = ACTIONS(3340), - [sym__pipe_table_start] = ACTIONS(3340), - [sym__fenced_div_start] = ACTIONS(3340), - [sym_ref_id_specifier] = ACTIONS(3340), - [sym__code_span_start] = ACTIONS(3340), - [sym__html_comment] = ACTIONS(3340), - [sym__autolink] = ACTIONS(3340), - [sym__highlight_span_start] = ACTIONS(3340), - [sym__insert_span_start] = ACTIONS(3340), - [sym__delete_span_start] = ACTIONS(3340), - [sym__edit_comment_span_start] = ACTIONS(3340), - [sym__single_quote_span_open] = ACTIONS(3340), - [sym__double_quote_span_open] = ACTIONS(3340), - [sym__shortcode_open_escaped] = ACTIONS(3340), - [sym__shortcode_open] = ACTIONS(3340), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3340), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3340), - [sym__cite_author_in_text] = ACTIONS(3340), - [sym__cite_suppress_author] = ACTIONS(3340), - [sym__strikeout_open] = ACTIONS(3340), - [sym__subscript_open] = ACTIONS(3340), - [sym__superscript_open] = ACTIONS(3340), - [sym__inline_note_start_token] = ACTIONS(3340), - [sym__strong_emphasis_open_star] = ACTIONS(3340), - [sym__strong_emphasis_open_underscore] = ACTIONS(3340), - [sym__emphasis_open_star] = ACTIONS(3340), - [sym__emphasis_open_underscore] = ACTIONS(3340), - [sym_inline_note_reference] = ACTIONS(3340), - [sym_html_element] = ACTIONS(3340), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3790), - [anon_sym_COLON] = ACTIONS(3790), - [sym_entity_reference] = ACTIONS(3790), - [sym_numeric_character_reference] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3790), - [anon_sym_BANG_LBRACK] = ACTIONS(3790), - [anon_sym_DOLLAR] = ACTIONS(3792), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3790), - [anon_sym_LBRACE] = ACTIONS(3790), - [aux_sym_pandoc_str_token1] = ACTIONS(3792), - [anon_sym_PIPE] = ACTIONS(3790), - [aux_sym__prose_punctuation_token1] = ACTIONS(3792), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3792), - [sym__line_ending] = ACTIONS(3790), - [sym__soft_line_ending] = ACTIONS(3790), - [sym__block_quote_start] = ACTIONS(3790), - [sym_atx_h1_marker] = ACTIONS(3790), - [sym_atx_h2_marker] = ACTIONS(3790), - [sym_atx_h3_marker] = ACTIONS(3790), - [sym_atx_h4_marker] = ACTIONS(3790), - [sym_atx_h5_marker] = ACTIONS(3790), - [sym_atx_h6_marker] = ACTIONS(3790), - [sym__thematic_break] = ACTIONS(3790), - [sym__list_marker_minus] = ACTIONS(3790), - [sym__list_marker_plus] = ACTIONS(3790), - [sym__list_marker_star] = ACTIONS(3790), - [sym__list_marker_parenthesis] = ACTIONS(3790), - [sym__list_marker_dot] = ACTIONS(3790), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_example] = ACTIONS(3790), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3790), - [sym__fenced_code_block_start_backtick] = ACTIONS(3790), - [sym_minus_metadata] = ACTIONS(3790), - [sym__pipe_table_start] = ACTIONS(3790), - [sym__fenced_div_start] = ACTIONS(3790), - [sym_ref_id_specifier] = ACTIONS(3790), - [sym__code_span_start] = ACTIONS(3790), - [sym__html_comment] = ACTIONS(3790), - [sym__autolink] = ACTIONS(3790), - [sym__highlight_span_start] = ACTIONS(3790), - [sym__insert_span_start] = ACTIONS(3790), - [sym__delete_span_start] = ACTIONS(3790), - [sym__edit_comment_span_start] = ACTIONS(3790), - [sym__single_quote_span_open] = ACTIONS(3790), - [sym__double_quote_span_open] = ACTIONS(3790), - [sym__shortcode_open_escaped] = ACTIONS(3790), - [sym__shortcode_open] = ACTIONS(3790), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3790), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3790), - [sym__cite_author_in_text] = ACTIONS(3790), - [sym__cite_suppress_author] = ACTIONS(3790), - [sym__strikeout_open] = ACTIONS(3790), - [sym__subscript_open] = ACTIONS(3790), - [sym__superscript_open] = ACTIONS(3790), - [sym__inline_note_start_token] = ACTIONS(3790), - [sym__strong_emphasis_open_star] = ACTIONS(3790), - [sym__strong_emphasis_open_underscore] = ACTIONS(3790), - [sym__emphasis_open_star] = ACTIONS(3790), - [sym__emphasis_open_underscore] = ACTIONS(3790), - [sym_inline_note_reference] = ACTIONS(3790), - [sym_html_element] = ACTIONS(3790), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3344), - [anon_sym_COLON] = ACTIONS(3344), - [sym_entity_reference] = ACTIONS(3344), - [sym_numeric_character_reference] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_BANG_LBRACK] = ACTIONS(3344), - [anon_sym_DOLLAR] = ACTIONS(3346), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [aux_sym_pandoc_str_token1] = ACTIONS(3346), - [anon_sym_PIPE] = ACTIONS(3344), - [aux_sym__prose_punctuation_token1] = ACTIONS(3346), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3346), - [sym__line_ending] = ACTIONS(3344), - [sym__soft_line_ending] = ACTIONS(3344), - [sym__block_quote_start] = ACTIONS(3344), - [sym_atx_h1_marker] = ACTIONS(3344), - [sym_atx_h2_marker] = ACTIONS(3344), - [sym_atx_h3_marker] = ACTIONS(3344), - [sym_atx_h4_marker] = ACTIONS(3344), - [sym_atx_h5_marker] = ACTIONS(3344), - [sym_atx_h6_marker] = ACTIONS(3344), - [sym__thematic_break] = ACTIONS(3344), - [sym__list_marker_minus] = ACTIONS(3344), - [sym__list_marker_plus] = ACTIONS(3344), - [sym__list_marker_star] = ACTIONS(3344), - [sym__list_marker_parenthesis] = ACTIONS(3344), - [sym__list_marker_dot] = ACTIONS(3344), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_example] = ACTIONS(3344), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3344), - [sym__fenced_code_block_start_backtick] = ACTIONS(3344), - [sym_minus_metadata] = ACTIONS(3344), - [sym__pipe_table_start] = ACTIONS(3344), - [sym__fenced_div_start] = ACTIONS(3344), - [sym_ref_id_specifier] = ACTIONS(3344), - [sym__code_span_start] = ACTIONS(3344), - [sym__html_comment] = ACTIONS(3344), - [sym__autolink] = ACTIONS(3344), - [sym__highlight_span_start] = ACTIONS(3344), - [sym__insert_span_start] = ACTIONS(3344), - [sym__delete_span_start] = ACTIONS(3344), - [sym__edit_comment_span_start] = ACTIONS(3344), - [sym__single_quote_span_open] = ACTIONS(3344), - [sym__double_quote_span_open] = ACTIONS(3344), - [sym__shortcode_open_escaped] = ACTIONS(3344), - [sym__shortcode_open] = ACTIONS(3344), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3344), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3344), - [sym__cite_author_in_text] = ACTIONS(3344), - [sym__cite_suppress_author] = ACTIONS(3344), - [sym__strikeout_open] = ACTIONS(3344), - [sym__subscript_open] = ACTIONS(3344), - [sym__superscript_open] = ACTIONS(3344), - [sym__inline_note_start_token] = ACTIONS(3344), - [sym__strong_emphasis_open_star] = ACTIONS(3344), - [sym__strong_emphasis_open_underscore] = ACTIONS(3344), - [sym__emphasis_open_star] = ACTIONS(3344), - [sym__emphasis_open_underscore] = ACTIONS(3344), - [sym_inline_note_reference] = ACTIONS(3344), - [sym_html_element] = ACTIONS(3344), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3818), - [anon_sym_COLON] = ACTIONS(3818), - [sym_entity_reference] = ACTIONS(3818), - [sym_numeric_character_reference] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3818), - [anon_sym_BANG_LBRACK] = ACTIONS(3818), - [anon_sym_DOLLAR] = ACTIONS(3820), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3818), - [aux_sym_pandoc_str_token1] = ACTIONS(3820), - [anon_sym_PIPE] = ACTIONS(3818), - [aux_sym__prose_punctuation_token1] = ACTIONS(3820), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3820), - [sym__line_ending] = ACTIONS(3818), - [sym__soft_line_ending] = ACTIONS(3818), - [sym__block_quote_start] = ACTIONS(3818), - [sym_atx_h1_marker] = ACTIONS(3818), - [sym_atx_h2_marker] = ACTIONS(3818), - [sym_atx_h3_marker] = ACTIONS(3818), - [sym_atx_h4_marker] = ACTIONS(3818), - [sym_atx_h5_marker] = ACTIONS(3818), - [sym_atx_h6_marker] = ACTIONS(3818), - [sym__thematic_break] = ACTIONS(3818), - [sym__list_marker_minus] = ACTIONS(3818), - [sym__list_marker_plus] = ACTIONS(3818), - [sym__list_marker_star] = ACTIONS(3818), - [sym__list_marker_parenthesis] = ACTIONS(3818), - [sym__list_marker_dot] = ACTIONS(3818), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_example] = ACTIONS(3818), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3818), - [sym__fenced_code_block_start_backtick] = ACTIONS(3818), - [sym_minus_metadata] = ACTIONS(3818), - [sym__pipe_table_start] = ACTIONS(3818), - [sym__fenced_div_start] = ACTIONS(3818), - [sym_ref_id_specifier] = ACTIONS(3818), - [sym__code_span_start] = ACTIONS(3818), - [sym__html_comment] = ACTIONS(3818), - [sym__autolink] = ACTIONS(3818), - [sym__highlight_span_start] = ACTIONS(3818), - [sym__insert_span_start] = ACTIONS(3818), - [sym__delete_span_start] = ACTIONS(3818), - [sym__edit_comment_span_start] = ACTIONS(3818), - [sym__single_quote_span_open] = ACTIONS(3818), - [sym__double_quote_span_open] = ACTIONS(3818), - [sym__shortcode_open_escaped] = ACTIONS(3818), - [sym__shortcode_open] = ACTIONS(3818), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3818), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3818), - [sym__cite_author_in_text] = ACTIONS(3818), - [sym__cite_suppress_author] = ACTIONS(3818), - [sym__strikeout_open] = ACTIONS(3818), - [sym__subscript_open] = ACTIONS(3818), - [sym__superscript_open] = ACTIONS(3818), - [sym__inline_note_start_token] = ACTIONS(3818), - [sym__strong_emphasis_open_star] = ACTIONS(3818), - [sym__strong_emphasis_open_underscore] = ACTIONS(3818), - [sym__emphasis_open_star] = ACTIONS(3818), - [sym__emphasis_open_underscore] = ACTIONS(3818), - [sym_inline_note_reference] = ACTIONS(3818), - [sym_html_element] = ACTIONS(3818), + [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(3846), - [sym_entity_reference] = ACTIONS(3846), - [sym_numeric_character_reference] = ACTIONS(3846), - [anon_sym_LBRACK] = ACTIONS(3846), - [anon_sym_BANG_LBRACK] = ACTIONS(3846), - [anon_sym_DOLLAR] = ACTIONS(3848), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3846), - [anon_sym_LBRACE] = ACTIONS(3846), - [aux_sym_pandoc_str_token1] = ACTIONS(3848), - [anon_sym_PIPE] = ACTIONS(3846), - [aux_sym__prose_punctuation_token1] = ACTIONS(3848), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3848), - [sym__line_ending] = ACTIONS(3846), - [sym__soft_line_ending] = ACTIONS(3846), - [sym__block_close] = ACTIONS(3846), - [sym__block_quote_start] = ACTIONS(3846), - [sym_atx_h1_marker] = ACTIONS(3846), - [sym_atx_h2_marker] = ACTIONS(3846), - [sym_atx_h3_marker] = ACTIONS(3846), - [sym_atx_h4_marker] = ACTIONS(3846), - [sym_atx_h5_marker] = ACTIONS(3846), - [sym_atx_h6_marker] = ACTIONS(3846), - [sym__thematic_break] = ACTIONS(3846), - [sym__list_marker_minus] = ACTIONS(3846), - [sym__list_marker_plus] = ACTIONS(3846), - [sym__list_marker_star] = ACTIONS(3846), - [sym__list_marker_parenthesis] = ACTIONS(3846), - [sym__list_marker_dot] = ACTIONS(3846), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_example] = ACTIONS(3846), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3846), - [sym__fenced_code_block_start_backtick] = ACTIONS(3846), - [sym_minus_metadata] = ACTIONS(3846), - [sym__pipe_table_start] = ACTIONS(3846), - [sym__fenced_div_start] = ACTIONS(3846), - [sym_ref_id_specifier] = ACTIONS(3846), - [sym__code_span_start] = ACTIONS(3846), - [sym__html_comment] = ACTIONS(3846), - [sym__autolink] = ACTIONS(3846), - [sym__highlight_span_start] = ACTIONS(3846), - [sym__insert_span_start] = ACTIONS(3846), - [sym__delete_span_start] = ACTIONS(3846), - [sym__edit_comment_span_start] = ACTIONS(3846), - [sym__single_quote_span_open] = ACTIONS(3846), - [sym__double_quote_span_open] = ACTIONS(3846), - [sym__shortcode_open_escaped] = ACTIONS(3846), - [sym__shortcode_open] = ACTIONS(3846), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3846), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3846), - [sym__cite_author_in_text] = ACTIONS(3846), - [sym__cite_suppress_author] = ACTIONS(3846), - [sym__strikeout_open] = ACTIONS(3846), - [sym__subscript_open] = ACTIONS(3846), - [sym__superscript_open] = ACTIONS(3846), - [sym__inline_note_start_token] = ACTIONS(3846), - [sym__strong_emphasis_open_star] = ACTIONS(3846), - [sym__strong_emphasis_open_underscore] = ACTIONS(3846), - [sym__emphasis_open_star] = ACTIONS(3846), - [sym__emphasis_open_underscore] = ACTIONS(3846), - [sym_inline_note_reference] = ACTIONS(3846), - [sym_html_element] = ACTIONS(3846), + [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)] = { - [anon_sym_COLON] = ACTIONS(3220), - [sym_entity_reference] = ACTIONS(3220), - [sym_numeric_character_reference] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_BANG_LBRACK] = ACTIONS(3220), - [anon_sym_DOLLAR] = ACTIONS(3222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3220), - [aux_sym_pandoc_str_token1] = ACTIONS(3222), - [anon_sym_PIPE] = ACTIONS(3220), - [aux_sym__prose_punctuation_token1] = ACTIONS(3222), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3222), - [sym__line_ending] = ACTIONS(3220), - [sym__soft_line_ending] = ACTIONS(3220), - [sym__block_close] = ACTIONS(3220), - [sym__block_quote_start] = ACTIONS(3220), - [sym_atx_h1_marker] = ACTIONS(3220), - [sym_atx_h2_marker] = ACTIONS(3220), - [sym_atx_h3_marker] = ACTIONS(3220), - [sym_atx_h4_marker] = ACTIONS(3220), - [sym_atx_h5_marker] = ACTIONS(3220), - [sym_atx_h6_marker] = ACTIONS(3220), - [sym__thematic_break] = ACTIONS(3220), - [sym__list_marker_minus] = ACTIONS(3220), - [sym__list_marker_plus] = ACTIONS(3220), - [sym__list_marker_star] = ACTIONS(3220), - [sym__list_marker_parenthesis] = ACTIONS(3220), - [sym__list_marker_dot] = ACTIONS(3220), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3220), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3220), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3220), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3220), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3220), - [sym__list_marker_example] = ACTIONS(3220), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3220), - [sym__fenced_code_block_start_backtick] = ACTIONS(3220), - [sym_minus_metadata] = ACTIONS(3220), - [sym__pipe_table_start] = ACTIONS(3220), - [sym__fenced_div_start] = ACTIONS(3220), - [sym_ref_id_specifier] = ACTIONS(3220), - [sym__code_span_start] = ACTIONS(3220), - [sym__html_comment] = ACTIONS(3220), - [sym__autolink] = ACTIONS(3220), - [sym__highlight_span_start] = ACTIONS(3220), - [sym__insert_span_start] = ACTIONS(3220), - [sym__delete_span_start] = ACTIONS(3220), - [sym__edit_comment_span_start] = ACTIONS(3220), - [sym__single_quote_span_open] = ACTIONS(3220), - [sym__double_quote_span_open] = ACTIONS(3220), - [sym__shortcode_open_escaped] = ACTIONS(3220), - [sym__shortcode_open] = ACTIONS(3220), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3220), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3220), - [sym__cite_author_in_text] = ACTIONS(3220), - [sym__cite_suppress_author] = ACTIONS(3220), - [sym__strikeout_open] = ACTIONS(3220), - [sym__subscript_open] = ACTIONS(3220), - [sym__superscript_open] = ACTIONS(3220), - [sym__inline_note_start_token] = ACTIONS(3220), - [sym__strong_emphasis_open_star] = ACTIONS(3220), - [sym__strong_emphasis_open_underscore] = ACTIONS(3220), - [sym__emphasis_open_star] = ACTIONS(3220), - [sym__emphasis_open_underscore] = ACTIONS(3220), - [sym_inline_note_reference] = ACTIONS(3220), - [sym_html_element] = ACTIONS(3220), + [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__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(3828), - [anon_sym_COLON] = ACTIONS(3828), - [sym_entity_reference] = ACTIONS(3828), - [sym_numeric_character_reference] = ACTIONS(3828), - [anon_sym_LBRACK] = ACTIONS(3828), - [anon_sym_BANG_LBRACK] = ACTIONS(3828), - [anon_sym_DOLLAR] = ACTIONS(3830), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3828), - [aux_sym_pandoc_str_token1] = ACTIONS(3830), - [anon_sym_PIPE] = ACTIONS(3828), - [aux_sym__prose_punctuation_token1] = ACTIONS(3830), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3830), - [sym__line_ending] = ACTIONS(3828), - [sym__soft_line_ending] = ACTIONS(3828), - [sym__block_quote_start] = ACTIONS(3828), - [sym_atx_h1_marker] = ACTIONS(3828), - [sym_atx_h2_marker] = ACTIONS(3828), - [sym_atx_h3_marker] = ACTIONS(3828), - [sym_atx_h4_marker] = ACTIONS(3828), - [sym_atx_h5_marker] = ACTIONS(3828), - [sym_atx_h6_marker] = ACTIONS(3828), - [sym__thematic_break] = ACTIONS(3828), - [sym__list_marker_minus] = ACTIONS(3828), - [sym__list_marker_plus] = ACTIONS(3828), - [sym__list_marker_star] = ACTIONS(3828), - [sym__list_marker_parenthesis] = ACTIONS(3828), - [sym__list_marker_dot] = ACTIONS(3828), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_example] = ACTIONS(3828), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3828), - [sym__fenced_code_block_start_backtick] = ACTIONS(3828), - [sym_minus_metadata] = ACTIONS(3828), - [sym__pipe_table_start] = ACTIONS(3828), - [sym__fenced_div_start] = ACTIONS(3828), - [sym_ref_id_specifier] = ACTIONS(3828), - [sym__code_span_start] = ACTIONS(3828), - [sym__html_comment] = ACTIONS(3828), - [sym__autolink] = ACTIONS(3828), - [sym__highlight_span_start] = ACTIONS(3828), - [sym__insert_span_start] = ACTIONS(3828), - [sym__delete_span_start] = ACTIONS(3828), - [sym__edit_comment_span_start] = ACTIONS(3828), - [sym__single_quote_span_open] = ACTIONS(3828), - [sym__double_quote_span_open] = ACTIONS(3828), - [sym__shortcode_open_escaped] = ACTIONS(3828), - [sym__shortcode_open] = ACTIONS(3828), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3828), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3828), - [sym__cite_author_in_text] = ACTIONS(3828), - [sym__cite_suppress_author] = ACTIONS(3828), - [sym__strikeout_open] = ACTIONS(3828), - [sym__subscript_open] = ACTIONS(3828), - [sym__superscript_open] = ACTIONS(3828), - [sym__inline_note_start_token] = ACTIONS(3828), - [sym__strong_emphasis_open_star] = ACTIONS(3828), - [sym__strong_emphasis_open_underscore] = ACTIONS(3828), - [sym__emphasis_open_star] = ACTIONS(3828), - [sym__emphasis_open_underscore] = ACTIONS(3828), - [sym_inline_note_reference] = ACTIONS(3828), - [sym_html_element] = ACTIONS(3828), + [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_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)] = { - [ts_builtin_sym_end] = ACTIONS(3316), - [anon_sym_COLON] = ACTIONS(3316), - [sym_entity_reference] = ACTIONS(3316), - [sym_numeric_character_reference] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_BANG_LBRACK] = ACTIONS(3316), - [anon_sym_DOLLAR] = ACTIONS(3318), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3316), - [aux_sym_pandoc_str_token1] = ACTIONS(3318), - [anon_sym_PIPE] = ACTIONS(3316), - [aux_sym__prose_punctuation_token1] = ACTIONS(3318), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3318), - [sym__line_ending] = ACTIONS(3316), - [sym__soft_line_ending] = ACTIONS(3316), - [sym__block_quote_start] = ACTIONS(3316), - [sym_atx_h1_marker] = ACTIONS(3316), - [sym_atx_h2_marker] = ACTIONS(3316), - [sym_atx_h3_marker] = ACTIONS(3316), - [sym_atx_h4_marker] = ACTIONS(3316), - [sym_atx_h5_marker] = ACTIONS(3316), - [sym_atx_h6_marker] = ACTIONS(3316), - [sym__thematic_break] = ACTIONS(3316), - [sym__list_marker_minus] = ACTIONS(3316), - [sym__list_marker_plus] = ACTIONS(3316), - [sym__list_marker_star] = ACTIONS(3316), - [sym__list_marker_parenthesis] = ACTIONS(3316), - [sym__list_marker_dot] = ACTIONS(3316), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_example] = ACTIONS(3316), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3316), - [sym__fenced_code_block_start_backtick] = ACTIONS(3316), - [sym_minus_metadata] = ACTIONS(3316), - [sym__pipe_table_start] = ACTIONS(3316), - [sym__fenced_div_start] = ACTIONS(3316), - [sym_ref_id_specifier] = ACTIONS(3316), - [sym__code_span_start] = ACTIONS(3316), - [sym__html_comment] = ACTIONS(3316), - [sym__autolink] = ACTIONS(3316), - [sym__highlight_span_start] = ACTIONS(3316), - [sym__insert_span_start] = ACTIONS(3316), - [sym__delete_span_start] = ACTIONS(3316), - [sym__edit_comment_span_start] = ACTIONS(3316), - [sym__single_quote_span_open] = ACTIONS(3316), - [sym__double_quote_span_open] = ACTIONS(3316), - [sym__shortcode_open_escaped] = ACTIONS(3316), - [sym__shortcode_open] = ACTIONS(3316), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3316), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3316), - [sym__cite_author_in_text] = ACTIONS(3316), - [sym__cite_suppress_author] = ACTIONS(3316), - [sym__strikeout_open] = ACTIONS(3316), - [sym__subscript_open] = ACTIONS(3316), - [sym__superscript_open] = ACTIONS(3316), - [sym__inline_note_start_token] = ACTIONS(3316), - [sym__strong_emphasis_open_star] = ACTIONS(3316), - [sym__strong_emphasis_open_underscore] = ACTIONS(3316), - [sym__emphasis_open_star] = ACTIONS(3316), - [sym__emphasis_open_underscore] = ACTIONS(3316), - [sym_inline_note_reference] = ACTIONS(3316), - [sym_html_element] = ACTIONS(3316), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3348), - [anon_sym_COLON] = ACTIONS(3348), - [sym_entity_reference] = ACTIONS(3348), - [sym_numeric_character_reference] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_BANG_LBRACK] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3350), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3348), - [aux_sym_pandoc_str_token1] = ACTIONS(3350), - [anon_sym_PIPE] = ACTIONS(3348), - [aux_sym__prose_punctuation_token1] = ACTIONS(3350), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3350), - [sym__line_ending] = ACTIONS(3348), - [sym__soft_line_ending] = ACTIONS(3348), - [sym__block_quote_start] = ACTIONS(3348), - [sym_atx_h1_marker] = ACTIONS(3348), - [sym_atx_h2_marker] = ACTIONS(3348), - [sym_atx_h3_marker] = ACTIONS(3348), - [sym_atx_h4_marker] = ACTIONS(3348), - [sym_atx_h5_marker] = ACTIONS(3348), - [sym_atx_h6_marker] = ACTIONS(3348), - [sym__thematic_break] = ACTIONS(3348), - [sym__list_marker_minus] = ACTIONS(3348), - [sym__list_marker_plus] = ACTIONS(3348), - [sym__list_marker_star] = ACTIONS(3348), - [sym__list_marker_parenthesis] = ACTIONS(3348), - [sym__list_marker_dot] = ACTIONS(3348), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_example] = ACTIONS(3348), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3348), - [sym__fenced_code_block_start_backtick] = ACTIONS(3348), - [sym_minus_metadata] = ACTIONS(3348), - [sym__pipe_table_start] = ACTIONS(3348), - [sym__fenced_div_start] = ACTIONS(3348), - [sym_ref_id_specifier] = ACTIONS(3348), - [sym__code_span_start] = ACTIONS(3348), - [sym__html_comment] = ACTIONS(3348), - [sym__autolink] = ACTIONS(3348), - [sym__highlight_span_start] = ACTIONS(3348), - [sym__insert_span_start] = ACTIONS(3348), - [sym__delete_span_start] = ACTIONS(3348), - [sym__edit_comment_span_start] = ACTIONS(3348), - [sym__single_quote_span_open] = ACTIONS(3348), - [sym__double_quote_span_open] = ACTIONS(3348), - [sym__shortcode_open_escaped] = ACTIONS(3348), - [sym__shortcode_open] = ACTIONS(3348), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3348), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3348), - [sym__cite_author_in_text] = ACTIONS(3348), - [sym__cite_suppress_author] = ACTIONS(3348), - [sym__strikeout_open] = ACTIONS(3348), - [sym__subscript_open] = ACTIONS(3348), - [sym__superscript_open] = ACTIONS(3348), - [sym__inline_note_start_token] = ACTIONS(3348), - [sym__strong_emphasis_open_star] = ACTIONS(3348), - [sym__strong_emphasis_open_underscore] = ACTIONS(3348), - [sym__emphasis_open_star] = ACTIONS(3348), - [sym__emphasis_open_underscore] = ACTIONS(3348), - [sym_inline_note_reference] = ACTIONS(3348), - [sym_html_element] = ACTIONS(3348), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3236), - [anon_sym_COLON] = ACTIONS(3236), - [sym_entity_reference] = ACTIONS(3236), - [sym_numeric_character_reference] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_BANG_LBRACK] = ACTIONS(3236), - [anon_sym_DOLLAR] = ACTIONS(3238), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(3236), - [aux_sym_pandoc_str_token1] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3236), - [aux_sym__prose_punctuation_token1] = ACTIONS(3238), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3238), - [sym__line_ending] = ACTIONS(3236), - [sym__soft_line_ending] = ACTIONS(3236), - [sym__block_quote_start] = ACTIONS(3236), - [sym_atx_h1_marker] = ACTIONS(3236), - [sym_atx_h2_marker] = ACTIONS(3236), - [sym_atx_h3_marker] = ACTIONS(3236), - [sym_atx_h4_marker] = ACTIONS(3236), - [sym_atx_h5_marker] = ACTIONS(3236), - [sym_atx_h6_marker] = ACTIONS(3236), - [sym__thematic_break] = ACTIONS(3236), - [sym__list_marker_minus] = ACTIONS(3236), - [sym__list_marker_plus] = ACTIONS(3236), - [sym__list_marker_star] = ACTIONS(3236), - [sym__list_marker_parenthesis] = ACTIONS(3236), - [sym__list_marker_dot] = ACTIONS(3236), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_example] = ACTIONS(3236), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3236), - [sym__fenced_code_block_start_backtick] = ACTIONS(3236), - [sym_minus_metadata] = ACTIONS(3236), - [sym__pipe_table_start] = ACTIONS(3236), - [sym__fenced_div_start] = ACTIONS(3236), - [sym_ref_id_specifier] = ACTIONS(3236), - [sym__code_span_start] = ACTIONS(3236), - [sym__html_comment] = ACTIONS(3236), - [sym__autolink] = ACTIONS(3236), - [sym__highlight_span_start] = ACTIONS(3236), - [sym__insert_span_start] = ACTIONS(3236), - [sym__delete_span_start] = ACTIONS(3236), - [sym__edit_comment_span_start] = ACTIONS(3236), - [sym__single_quote_span_open] = ACTIONS(3236), - [sym__double_quote_span_open] = ACTIONS(3236), - [sym__shortcode_open_escaped] = ACTIONS(3236), - [sym__shortcode_open] = ACTIONS(3236), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3236), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3236), - [sym__cite_author_in_text] = ACTIONS(3236), - [sym__cite_suppress_author] = ACTIONS(3236), - [sym__strikeout_open] = ACTIONS(3236), - [sym__subscript_open] = ACTIONS(3236), - [sym__superscript_open] = ACTIONS(3236), - [sym__inline_note_start_token] = ACTIONS(3236), - [sym__strong_emphasis_open_star] = ACTIONS(3236), - [sym__strong_emphasis_open_underscore] = ACTIONS(3236), - [sym__emphasis_open_star] = ACTIONS(3236), - [sym__emphasis_open_underscore] = ACTIONS(3236), - [sym_inline_note_reference] = ACTIONS(3236), - [sym_html_element] = ACTIONS(3236), + [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(3766), - [anon_sym_COLON] = ACTIONS(3766), - [sym_entity_reference] = ACTIONS(3766), - [sym_numeric_character_reference] = ACTIONS(3766), - [anon_sym_LBRACK] = ACTIONS(3766), - [anon_sym_BANG_LBRACK] = ACTIONS(3766), - [anon_sym_DOLLAR] = ACTIONS(3768), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3766), - [anon_sym_LBRACE] = ACTIONS(3766), - [aux_sym_pandoc_str_token1] = ACTIONS(3768), - [anon_sym_PIPE] = ACTIONS(3766), - [aux_sym__prose_punctuation_token1] = ACTIONS(3768), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3768), - [sym__line_ending] = ACTIONS(3766), - [sym__soft_line_ending] = ACTIONS(3766), - [sym__block_quote_start] = ACTIONS(3766), - [sym_atx_h1_marker] = ACTIONS(3766), - [sym_atx_h2_marker] = ACTIONS(3766), - [sym_atx_h3_marker] = ACTIONS(3766), - [sym_atx_h4_marker] = ACTIONS(3766), - [sym_atx_h5_marker] = ACTIONS(3766), - [sym_atx_h6_marker] = ACTIONS(3766), - [sym__thematic_break] = ACTIONS(3766), - [sym__list_marker_minus] = ACTIONS(3766), - [sym__list_marker_plus] = ACTIONS(3766), - [sym__list_marker_star] = ACTIONS(3766), - [sym__list_marker_parenthesis] = ACTIONS(3766), - [sym__list_marker_dot] = ACTIONS(3766), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_example] = ACTIONS(3766), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3766), - [sym__fenced_code_block_start_backtick] = ACTIONS(3766), - [sym_minus_metadata] = ACTIONS(3766), - [sym__pipe_table_start] = ACTIONS(3766), - [sym__fenced_div_start] = ACTIONS(3766), - [sym_ref_id_specifier] = ACTIONS(3766), - [sym__code_span_start] = ACTIONS(3766), - [sym__html_comment] = ACTIONS(3766), - [sym__autolink] = ACTIONS(3766), - [sym__highlight_span_start] = ACTIONS(3766), - [sym__insert_span_start] = ACTIONS(3766), - [sym__delete_span_start] = ACTIONS(3766), - [sym__edit_comment_span_start] = ACTIONS(3766), - [sym__single_quote_span_open] = ACTIONS(3766), - [sym__double_quote_span_open] = ACTIONS(3766), - [sym__shortcode_open_escaped] = ACTIONS(3766), - [sym__shortcode_open] = ACTIONS(3766), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3766), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3766), - [sym__cite_author_in_text] = ACTIONS(3766), - [sym__cite_suppress_author] = ACTIONS(3766), - [sym__strikeout_open] = ACTIONS(3766), - [sym__subscript_open] = ACTIONS(3766), - [sym__superscript_open] = ACTIONS(3766), - [sym__inline_note_start_token] = ACTIONS(3766), - [sym__strong_emphasis_open_star] = ACTIONS(3766), - [sym__strong_emphasis_open_underscore] = ACTIONS(3766), - [sym__emphasis_open_star] = ACTIONS(3766), - [sym__emphasis_open_underscore] = ACTIONS(3766), - [sym_inline_note_reference] = ACTIONS(3766), - [sym_html_element] = ACTIONS(3766), + [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(3444), - [anon_sym_COLON] = ACTIONS(3444), - [sym_entity_reference] = ACTIONS(3444), - [sym_numeric_character_reference] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_BANG_LBRACK] = ACTIONS(3444), - [anon_sym_DOLLAR] = ACTIONS(3446), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3444), - [aux_sym_pandoc_str_token1] = ACTIONS(3446), - [anon_sym_PIPE] = ACTIONS(3444), - [aux_sym__prose_punctuation_token1] = ACTIONS(3446), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3446), - [sym__line_ending] = ACTIONS(3444), - [sym__soft_line_ending] = ACTIONS(3444), - [sym__block_quote_start] = ACTIONS(3444), - [sym_atx_h1_marker] = ACTIONS(3444), - [sym_atx_h2_marker] = ACTIONS(3444), - [sym_atx_h3_marker] = ACTIONS(3444), - [sym_atx_h4_marker] = ACTIONS(3444), - [sym_atx_h5_marker] = ACTIONS(3444), - [sym_atx_h6_marker] = ACTIONS(3444), - [sym__thematic_break] = ACTIONS(3444), - [sym__list_marker_minus] = ACTIONS(3444), - [sym__list_marker_plus] = ACTIONS(3444), - [sym__list_marker_star] = ACTIONS(3444), - [sym__list_marker_parenthesis] = ACTIONS(3444), - [sym__list_marker_dot] = ACTIONS(3444), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_example] = ACTIONS(3444), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3444), - [sym__fenced_code_block_start_backtick] = ACTIONS(3444), - [sym_minus_metadata] = ACTIONS(3444), - [sym__pipe_table_start] = ACTIONS(3444), - [sym__fenced_div_start] = ACTIONS(3444), - [sym_ref_id_specifier] = ACTIONS(3444), - [sym__code_span_start] = ACTIONS(3444), - [sym__html_comment] = ACTIONS(3444), - [sym__autolink] = ACTIONS(3444), - [sym__highlight_span_start] = ACTIONS(3444), - [sym__insert_span_start] = ACTIONS(3444), - [sym__delete_span_start] = ACTIONS(3444), - [sym__edit_comment_span_start] = ACTIONS(3444), - [sym__single_quote_span_open] = ACTIONS(3444), - [sym__double_quote_span_open] = ACTIONS(3444), - [sym__shortcode_open_escaped] = ACTIONS(3444), - [sym__shortcode_open] = ACTIONS(3444), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3444), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3444), - [sym__cite_author_in_text] = ACTIONS(3444), - [sym__cite_suppress_author] = ACTIONS(3444), - [sym__strikeout_open] = ACTIONS(3444), - [sym__subscript_open] = ACTIONS(3444), - [sym__superscript_open] = ACTIONS(3444), - [sym__inline_note_start_token] = ACTIONS(3444), - [sym__strong_emphasis_open_star] = ACTIONS(3444), - [sym__strong_emphasis_open_underscore] = ACTIONS(3444), - [sym__emphasis_open_star] = ACTIONS(3444), - [sym__emphasis_open_underscore] = ACTIONS(3444), - [sym_inline_note_reference] = ACTIONS(3444), - [sym_html_element] = ACTIONS(3444), + [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), }, [STATE(520)] = { - [sym_pandoc_span] = STATE(520), - [sym_pandoc_image] = STATE(520), - [sym_pandoc_math] = STATE(520), - [sym_pandoc_display_math] = STATE(520), - [sym_pandoc_code_span] = STATE(520), - [sym_pandoc_single_quote] = STATE(520), - [sym_pandoc_double_quote] = STATE(520), - [sym_insert] = STATE(520), - [sym_delete] = STATE(520), - [sym_edit_comment] = STATE(520), - [sym_highlight] = STATE(520), - [sym__pandoc_attr_specifier] = STATE(520), - [sym__inline_element] = STATE(520), - [sym_shortcode_escaped] = STATE(520), - [sym_shortcode] = STATE(520), - [sym_citation] = STATE(520), - [sym_inline_note] = STATE(520), - [sym_pandoc_superscript] = STATE(520), - [sym_pandoc_subscript] = STATE(520), - [sym_pandoc_strikeout] = STATE(520), - [sym_pandoc_emph] = STATE(520), - [sym_pandoc_strong] = STATE(520), - [sym_pandoc_str] = STATE(520), - [sym__prose_punctuation] = STATE(520), - [sym_pandoc_line_break] = STATE(520), - [aux_sym__line_repeat1] = STATE(520), - [sym_entity_reference] = ACTIONS(3878), - [sym_numeric_character_reference] = ACTIONS(3878), - [anon_sym_LBRACK] = ACTIONS(3881), - [anon_sym_BANG_LBRACK] = ACTIONS(3884), - [anon_sym_DOLLAR] = ACTIONS(3887), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3890), - [anon_sym_LBRACE] = ACTIONS(3893), - [aux_sym_pandoc_str_token1] = ACTIONS(3896), - [anon_sym_PIPE] = ACTIONS(3899), - [aux_sym__prose_punctuation_token1] = ACTIONS(3902), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3905), - [sym__whitespace] = ACTIONS(3908), - [sym__soft_line_ending] = ACTIONS(3485), - [sym__code_span_start] = ACTIONS(3911), - [sym__html_comment] = ACTIONS(3878), - [sym__autolink] = ACTIONS(3878), - [sym__highlight_span_start] = ACTIONS(3914), - [sym__insert_span_start] = ACTIONS(3917), - [sym__delete_span_start] = ACTIONS(3920), - [sym__edit_comment_span_start] = ACTIONS(3923), - [sym__single_quote_span_open] = ACTIONS(3926), - [sym__single_quote_span_close] = ACTIONS(3485), - [sym__double_quote_span_open] = ACTIONS(3929), - [sym__shortcode_open_escaped] = ACTIONS(3932), - [sym__shortcode_open] = ACTIONS(3935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3938), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3941), - [sym__cite_author_in_text] = ACTIONS(3944), - [sym__cite_suppress_author] = ACTIONS(3947), - [sym__strikeout_open] = ACTIONS(3950), - [sym__subscript_open] = ACTIONS(3953), - [sym__superscript_open] = ACTIONS(3956), - [sym__inline_note_start_token] = ACTIONS(3959), - [sym__strong_emphasis_open_star] = ACTIONS(3962), - [sym__strong_emphasis_open_underscore] = ACTIONS(3965), - [sym__emphasis_open_star] = ACTIONS(3968), - [sym__emphasis_open_underscore] = ACTIONS(3971), - [sym_inline_note_reference] = ACTIONS(3878), - [sym_html_element] = ACTIONS(3878), + [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), + [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)] = { - [anon_sym_COLON] = ACTIONS(3408), - [sym_entity_reference] = ACTIONS(3408), - [sym_numeric_character_reference] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3408), - [anon_sym_BANG_LBRACK] = ACTIONS(3408), - [anon_sym_DOLLAR] = ACTIONS(3410), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3408), - [aux_sym_pandoc_str_token1] = ACTIONS(3410), - [anon_sym_PIPE] = ACTIONS(3408), - [aux_sym__prose_punctuation_token1] = ACTIONS(3410), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3410), - [sym__line_ending] = ACTIONS(3408), - [sym__soft_line_ending] = ACTIONS(3408), - [sym__block_close] = ACTIONS(3408), - [sym__block_quote_start] = ACTIONS(3408), - [sym_atx_h1_marker] = ACTIONS(3408), - [sym_atx_h2_marker] = ACTIONS(3408), - [sym_atx_h3_marker] = ACTIONS(3408), - [sym_atx_h4_marker] = ACTIONS(3408), - [sym_atx_h5_marker] = ACTIONS(3408), - [sym_atx_h6_marker] = ACTIONS(3408), - [sym__thematic_break] = ACTIONS(3408), - [sym__list_marker_minus] = ACTIONS(3408), - [sym__list_marker_plus] = ACTIONS(3408), - [sym__list_marker_star] = ACTIONS(3408), - [sym__list_marker_parenthesis] = ACTIONS(3408), - [sym__list_marker_dot] = ACTIONS(3408), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3408), - [sym__list_marker_example] = ACTIONS(3408), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3408), - [sym__fenced_code_block_start_backtick] = ACTIONS(3408), - [sym_minus_metadata] = ACTIONS(3408), - [sym__pipe_table_start] = ACTIONS(3408), - [sym__fenced_div_start] = ACTIONS(3408), - [sym_ref_id_specifier] = ACTIONS(3408), - [sym__code_span_start] = ACTIONS(3408), - [sym__html_comment] = ACTIONS(3408), - [sym__autolink] = ACTIONS(3408), - [sym__highlight_span_start] = ACTIONS(3408), - [sym__insert_span_start] = ACTIONS(3408), - [sym__delete_span_start] = ACTIONS(3408), - [sym__edit_comment_span_start] = ACTIONS(3408), - [sym__single_quote_span_open] = ACTIONS(3408), - [sym__double_quote_span_open] = ACTIONS(3408), - [sym__shortcode_open_escaped] = ACTIONS(3408), - [sym__shortcode_open] = ACTIONS(3408), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3408), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3408), - [sym__cite_author_in_text] = ACTIONS(3408), - [sym__cite_suppress_author] = ACTIONS(3408), - [sym__strikeout_open] = ACTIONS(3408), - [sym__subscript_open] = ACTIONS(3408), - [sym__superscript_open] = ACTIONS(3408), - [sym__inline_note_start_token] = ACTIONS(3408), - [sym__strong_emphasis_open_star] = ACTIONS(3408), - [sym__strong_emphasis_open_underscore] = ACTIONS(3408), - [sym__emphasis_open_star] = ACTIONS(3408), - [sym__emphasis_open_underscore] = ACTIONS(3408), - [sym_inline_note_reference] = ACTIONS(3408), - [sym_html_element] = ACTIONS(3408), + [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__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(3017), + [sym_html_element] = ACTIONS(3017), + [sym__pandoc_line_break] = ACTIONS(3017), }, [STATE(522)] = { - [sym_pandoc_span] = STATE(564), - [sym_pandoc_image] = STATE(564), - [sym_pandoc_math] = STATE(564), - [sym_pandoc_display_math] = STATE(564), - [sym_pandoc_code_span] = STATE(564), - [sym_pandoc_single_quote] = STATE(564), - [sym_pandoc_double_quote] = STATE(564), - [sym_insert] = STATE(564), - [sym_delete] = STATE(564), - [sym_edit_comment] = STATE(564), - [sym_highlight] = STATE(564), - [sym__pandoc_attr_specifier] = STATE(564), - [sym__inline_element] = STATE(564), - [sym_shortcode_escaped] = STATE(564), - [sym_shortcode] = STATE(564), - [sym_citation] = STATE(564), - [sym_inline_note] = STATE(564), - [sym_pandoc_superscript] = STATE(564), - [sym_pandoc_subscript] = STATE(564), - [sym_pandoc_strikeout] = STATE(564), - [sym_pandoc_emph] = STATE(564), - [sym_pandoc_strong] = STATE(564), - [sym_pandoc_str] = STATE(564), - [sym__prose_punctuation] = STATE(564), - [sym_pandoc_line_break] = STATE(564), - [aux_sym__line_repeat1] = STATE(564), - [sym_entity_reference] = ACTIONS(3974), - [sym_numeric_character_reference] = ACTIONS(3974), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(3976), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(3978), - [sym__soft_line_ending] = ACTIONS(3460), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(3974), - [sym__autolink] = ACTIONS(3974), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(3974), - [sym_html_element] = ACTIONS(3974), + [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), + [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)] = { - [anon_sym_COLON] = ACTIONS(3236), - [sym_entity_reference] = ACTIONS(3236), - [sym_numeric_character_reference] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_BANG_LBRACK] = ACTIONS(3236), - [anon_sym_DOLLAR] = ACTIONS(3238), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(3236), - [aux_sym_pandoc_str_token1] = ACTIONS(3238), - [anon_sym_PIPE] = ACTIONS(3236), - [aux_sym__prose_punctuation_token1] = ACTIONS(3238), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3238), - [sym__line_ending] = ACTIONS(3236), - [sym__soft_line_ending] = ACTIONS(3236), - [sym__block_close] = ACTIONS(3236), - [sym__block_quote_start] = ACTIONS(3236), - [sym_atx_h1_marker] = ACTIONS(3236), - [sym_atx_h2_marker] = ACTIONS(3236), - [sym_atx_h3_marker] = ACTIONS(3236), - [sym_atx_h4_marker] = ACTIONS(3236), - [sym_atx_h5_marker] = ACTIONS(3236), - [sym_atx_h6_marker] = ACTIONS(3236), - [sym__thematic_break] = ACTIONS(3236), - [sym__list_marker_minus] = ACTIONS(3236), - [sym__list_marker_plus] = ACTIONS(3236), - [sym__list_marker_star] = ACTIONS(3236), - [sym__list_marker_parenthesis] = ACTIONS(3236), - [sym__list_marker_dot] = ACTIONS(3236), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3236), - [sym__list_marker_example] = ACTIONS(3236), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3236), - [sym__fenced_code_block_start_backtick] = ACTIONS(3236), - [sym_minus_metadata] = ACTIONS(3236), - [sym__pipe_table_start] = ACTIONS(3236), - [sym__fenced_div_start] = ACTIONS(3236), - [sym_ref_id_specifier] = ACTIONS(3236), - [sym__code_span_start] = ACTIONS(3236), - [sym__html_comment] = ACTIONS(3236), - [sym__autolink] = ACTIONS(3236), - [sym__highlight_span_start] = ACTIONS(3236), - [sym__insert_span_start] = ACTIONS(3236), - [sym__delete_span_start] = ACTIONS(3236), - [sym__edit_comment_span_start] = ACTIONS(3236), - [sym__single_quote_span_open] = ACTIONS(3236), - [sym__double_quote_span_open] = ACTIONS(3236), - [sym__shortcode_open_escaped] = ACTIONS(3236), - [sym__shortcode_open] = ACTIONS(3236), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3236), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3236), - [sym__cite_author_in_text] = ACTIONS(3236), - [sym__cite_suppress_author] = ACTIONS(3236), - [sym__strikeout_open] = ACTIONS(3236), - [sym__subscript_open] = ACTIONS(3236), - [sym__superscript_open] = ACTIONS(3236), - [sym__inline_note_start_token] = ACTIONS(3236), - [sym__strong_emphasis_open_star] = ACTIONS(3236), - [sym__strong_emphasis_open_underscore] = ACTIONS(3236), - [sym__emphasis_open_star] = ACTIONS(3236), - [sym__emphasis_open_underscore] = ACTIONS(3236), - [sym_inline_note_reference] = ACTIONS(3236), - [sym_html_element] = ACTIONS(3236), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3452), - [anon_sym_COLON] = ACTIONS(3452), - [sym_entity_reference] = ACTIONS(3452), - [sym_numeric_character_reference] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_BANG_LBRACK] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3452), - [aux_sym_pandoc_str_token1] = ACTIONS(3454), - [anon_sym_PIPE] = ACTIONS(3452), - [aux_sym__prose_punctuation_token1] = ACTIONS(3454), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3454), - [sym__line_ending] = ACTIONS(3452), - [sym__soft_line_ending] = ACTIONS(3452), - [sym__block_quote_start] = ACTIONS(3452), - [sym_atx_h1_marker] = ACTIONS(3452), - [sym_atx_h2_marker] = ACTIONS(3452), - [sym_atx_h3_marker] = ACTIONS(3452), - [sym_atx_h4_marker] = ACTIONS(3452), - [sym_atx_h5_marker] = ACTIONS(3452), - [sym_atx_h6_marker] = ACTIONS(3452), - [sym__thematic_break] = ACTIONS(3452), - [sym__list_marker_minus] = ACTIONS(3452), - [sym__list_marker_plus] = ACTIONS(3452), - [sym__list_marker_star] = ACTIONS(3452), - [sym__list_marker_parenthesis] = ACTIONS(3452), - [sym__list_marker_dot] = ACTIONS(3452), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_example] = ACTIONS(3452), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3452), - [sym__fenced_code_block_start_backtick] = ACTIONS(3452), - [sym_minus_metadata] = ACTIONS(3452), - [sym__pipe_table_start] = ACTIONS(3452), - [sym__fenced_div_start] = ACTIONS(3452), - [sym_ref_id_specifier] = ACTIONS(3452), - [sym__code_span_start] = ACTIONS(3452), - [sym__html_comment] = ACTIONS(3452), - [sym__autolink] = ACTIONS(3452), - [sym__highlight_span_start] = ACTIONS(3452), - [sym__insert_span_start] = ACTIONS(3452), - [sym__delete_span_start] = ACTIONS(3452), - [sym__edit_comment_span_start] = ACTIONS(3452), - [sym__single_quote_span_open] = ACTIONS(3452), - [sym__double_quote_span_open] = ACTIONS(3452), - [sym__shortcode_open_escaped] = ACTIONS(3452), - [sym__shortcode_open] = ACTIONS(3452), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3452), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3452), - [sym__cite_author_in_text] = ACTIONS(3452), - [sym__cite_suppress_author] = ACTIONS(3452), - [sym__strikeout_open] = ACTIONS(3452), - [sym__subscript_open] = ACTIONS(3452), - [sym__superscript_open] = ACTIONS(3452), - [sym__inline_note_start_token] = ACTIONS(3452), - [sym__strong_emphasis_open_star] = ACTIONS(3452), - [sym__strong_emphasis_open_underscore] = ACTIONS(3452), - [sym__emphasis_open_star] = ACTIONS(3452), - [sym__emphasis_open_underscore] = ACTIONS(3452), - [sym_inline_note_reference] = ACTIONS(3452), - [sym_html_element] = ACTIONS(3452), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3308), - [anon_sym_COLON] = ACTIONS(3308), - [sym_entity_reference] = ACTIONS(3308), - [sym_numeric_character_reference] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_BANG_LBRACK] = ACTIONS(3308), - [anon_sym_DOLLAR] = ACTIONS(3310), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3308), - [aux_sym_pandoc_str_token1] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3308), - [aux_sym__prose_punctuation_token1] = ACTIONS(3310), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3310), - [sym__line_ending] = ACTIONS(3308), - [sym__soft_line_ending] = ACTIONS(3308), - [sym__block_quote_start] = ACTIONS(3308), - [sym_atx_h1_marker] = ACTIONS(3308), - [sym_atx_h2_marker] = ACTIONS(3308), - [sym_atx_h3_marker] = ACTIONS(3308), - [sym_atx_h4_marker] = ACTIONS(3308), - [sym_atx_h5_marker] = ACTIONS(3308), - [sym_atx_h6_marker] = ACTIONS(3308), - [sym__thematic_break] = ACTIONS(3308), - [sym__list_marker_minus] = ACTIONS(3308), - [sym__list_marker_plus] = ACTIONS(3308), - [sym__list_marker_star] = ACTIONS(3308), - [sym__list_marker_parenthesis] = ACTIONS(3308), - [sym__list_marker_dot] = ACTIONS(3308), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_example] = ACTIONS(3308), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3308), - [sym__fenced_code_block_start_backtick] = ACTIONS(3308), - [sym_minus_metadata] = ACTIONS(3308), - [sym__pipe_table_start] = ACTIONS(3308), - [sym__fenced_div_start] = ACTIONS(3308), - [sym_ref_id_specifier] = ACTIONS(3308), - [sym__code_span_start] = ACTIONS(3308), - [sym__html_comment] = ACTIONS(3308), - [sym__autolink] = ACTIONS(3308), - [sym__highlight_span_start] = ACTIONS(3308), - [sym__insert_span_start] = ACTIONS(3308), - [sym__delete_span_start] = ACTIONS(3308), - [sym__edit_comment_span_start] = ACTIONS(3308), - [sym__single_quote_span_open] = ACTIONS(3308), - [sym__double_quote_span_open] = ACTIONS(3308), - [sym__shortcode_open_escaped] = ACTIONS(3308), - [sym__shortcode_open] = ACTIONS(3308), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3308), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3308), - [sym__cite_author_in_text] = ACTIONS(3308), - [sym__cite_suppress_author] = ACTIONS(3308), - [sym__strikeout_open] = ACTIONS(3308), - [sym__subscript_open] = ACTIONS(3308), - [sym__superscript_open] = ACTIONS(3308), - [sym__inline_note_start_token] = ACTIONS(3308), - [sym__strong_emphasis_open_star] = ACTIONS(3308), - [sym__strong_emphasis_open_underscore] = ACTIONS(3308), - [sym__emphasis_open_star] = ACTIONS(3308), - [sym__emphasis_open_underscore] = ACTIONS(3308), - [sym_inline_note_reference] = ACTIONS(3308), - [sym_html_element] = ACTIONS(3308), + [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__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(3412), - [sym_entity_reference] = ACTIONS(3412), - [sym_numeric_character_reference] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3412), - [anon_sym_BANG_LBRACK] = ACTIONS(3412), - [anon_sym_DOLLAR] = ACTIONS(3414), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3412), - [aux_sym_pandoc_str_token1] = ACTIONS(3414), - [anon_sym_PIPE] = ACTIONS(3412), - [aux_sym__prose_punctuation_token1] = ACTIONS(3414), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3414), - [sym__line_ending] = ACTIONS(3412), - [sym__soft_line_ending] = ACTIONS(3412), - [sym__block_close] = ACTIONS(3412), - [sym__block_quote_start] = ACTIONS(3412), - [sym_atx_h1_marker] = ACTIONS(3412), - [sym_atx_h2_marker] = ACTIONS(3412), - [sym_atx_h3_marker] = ACTIONS(3412), - [sym_atx_h4_marker] = ACTIONS(3412), - [sym_atx_h5_marker] = ACTIONS(3412), - [sym_atx_h6_marker] = ACTIONS(3412), - [sym__thematic_break] = ACTIONS(3412), - [sym__list_marker_minus] = ACTIONS(3412), - [sym__list_marker_plus] = ACTIONS(3412), - [sym__list_marker_star] = ACTIONS(3412), - [sym__list_marker_parenthesis] = ACTIONS(3412), - [sym__list_marker_dot] = ACTIONS(3412), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3412), - [sym__list_marker_example] = ACTIONS(3412), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3412), - [sym__fenced_code_block_start_backtick] = ACTIONS(3412), - [sym_minus_metadata] = ACTIONS(3412), - [sym__pipe_table_start] = ACTIONS(3412), - [sym__fenced_div_start] = ACTIONS(3412), - [sym_ref_id_specifier] = ACTIONS(3412), - [sym__code_span_start] = ACTIONS(3412), - [sym__html_comment] = ACTIONS(3412), - [sym__autolink] = ACTIONS(3412), - [sym__highlight_span_start] = ACTIONS(3412), - [sym__insert_span_start] = ACTIONS(3412), - [sym__delete_span_start] = ACTIONS(3412), - [sym__edit_comment_span_start] = ACTIONS(3412), - [sym__single_quote_span_open] = ACTIONS(3412), - [sym__double_quote_span_open] = ACTIONS(3412), - [sym__shortcode_open_escaped] = ACTIONS(3412), - [sym__shortcode_open] = ACTIONS(3412), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3412), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3412), - [sym__cite_author_in_text] = ACTIONS(3412), - [sym__cite_suppress_author] = ACTIONS(3412), - [sym__strikeout_open] = ACTIONS(3412), - [sym__subscript_open] = ACTIONS(3412), - [sym__superscript_open] = ACTIONS(3412), - [sym__inline_note_start_token] = ACTIONS(3412), - [sym__strong_emphasis_open_star] = ACTIONS(3412), - [sym__strong_emphasis_open_underscore] = ACTIONS(3412), - [sym__emphasis_open_star] = ACTIONS(3412), - [sym__emphasis_open_underscore] = ACTIONS(3412), - [sym_inline_note_reference] = ACTIONS(3412), - [sym_html_element] = ACTIONS(3412), + [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__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)] = { - [ts_builtin_sym_end] = ACTIONS(3125), - [anon_sym_COLON] = ACTIONS(3125), - [sym_entity_reference] = ACTIONS(3125), - [sym_numeric_character_reference] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_BANG_LBRACK] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [aux_sym_pandoc_str_token1] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3125), - [aux_sym__prose_punctuation_token1] = ACTIONS(3127), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3127), - [sym__line_ending] = ACTIONS(3125), - [sym__soft_line_ending] = ACTIONS(3125), - [sym__block_quote_start] = ACTIONS(3125), - [sym_atx_h1_marker] = ACTIONS(3125), - [sym_atx_h2_marker] = ACTIONS(3125), - [sym_atx_h3_marker] = ACTIONS(3125), - [sym_atx_h4_marker] = ACTIONS(3125), - [sym_atx_h5_marker] = ACTIONS(3125), - [sym_atx_h6_marker] = ACTIONS(3125), - [sym__thematic_break] = ACTIONS(3125), - [sym__list_marker_minus] = ACTIONS(3125), - [sym__list_marker_plus] = ACTIONS(3125), - [sym__list_marker_star] = ACTIONS(3125), - [sym__list_marker_parenthesis] = ACTIONS(3125), - [sym__list_marker_dot] = ACTIONS(3125), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_example] = ACTIONS(3125), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3125), - [sym__fenced_code_block_start_backtick] = ACTIONS(3125), - [sym_minus_metadata] = ACTIONS(3125), - [sym__pipe_table_start] = ACTIONS(3125), - [sym__fenced_div_start] = ACTIONS(3125), - [sym_ref_id_specifier] = ACTIONS(3125), - [sym__code_span_start] = ACTIONS(3125), - [sym__html_comment] = ACTIONS(3125), - [sym__autolink] = ACTIONS(3125), - [sym__highlight_span_start] = ACTIONS(3125), - [sym__insert_span_start] = ACTIONS(3125), - [sym__delete_span_start] = ACTIONS(3125), - [sym__edit_comment_span_start] = ACTIONS(3125), - [sym__single_quote_span_open] = ACTIONS(3125), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3125), - [sym__shortcode_open] = ACTIONS(3125), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3125), - [sym__cite_suppress_author] = ACTIONS(3125), - [sym__strikeout_open] = ACTIONS(3125), - [sym__subscript_open] = ACTIONS(3125), - [sym__superscript_open] = ACTIONS(3125), - [sym__inline_note_start_token] = ACTIONS(3125), - [sym__strong_emphasis_open_star] = ACTIONS(3125), - [sym__strong_emphasis_open_underscore] = ACTIONS(3125), - [sym__emphasis_open_star] = ACTIONS(3125), - [sym__emphasis_open_underscore] = ACTIONS(3125), - [sym_inline_note_reference] = ACTIONS(3125), - [sym_html_element] = ACTIONS(3125), + [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] = 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)] = { - [anon_sym_COLON] = ACTIONS(3416), - [sym_entity_reference] = ACTIONS(3416), - [sym_numeric_character_reference] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3416), - [anon_sym_BANG_LBRACK] = ACTIONS(3416), - [anon_sym_DOLLAR] = ACTIONS(3418), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3416), - [aux_sym_pandoc_str_token1] = ACTIONS(3418), - [anon_sym_PIPE] = ACTIONS(3416), - [aux_sym__prose_punctuation_token1] = ACTIONS(3418), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3418), - [sym__line_ending] = ACTIONS(3416), - [sym__soft_line_ending] = ACTIONS(3416), - [sym__block_close] = ACTIONS(3416), - [sym__block_quote_start] = ACTIONS(3416), - [sym_atx_h1_marker] = ACTIONS(3416), - [sym_atx_h2_marker] = ACTIONS(3416), - [sym_atx_h3_marker] = ACTIONS(3416), - [sym_atx_h4_marker] = ACTIONS(3416), - [sym_atx_h5_marker] = ACTIONS(3416), - [sym_atx_h6_marker] = ACTIONS(3416), - [sym__thematic_break] = ACTIONS(3416), - [sym__list_marker_minus] = ACTIONS(3416), - [sym__list_marker_plus] = ACTIONS(3416), - [sym__list_marker_star] = ACTIONS(3416), - [sym__list_marker_parenthesis] = ACTIONS(3416), - [sym__list_marker_dot] = ACTIONS(3416), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3416), - [sym__list_marker_example] = ACTIONS(3416), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3416), - [sym__fenced_code_block_start_backtick] = ACTIONS(3416), - [sym_minus_metadata] = ACTIONS(3416), - [sym__pipe_table_start] = ACTIONS(3416), - [sym__fenced_div_start] = ACTIONS(3416), - [sym_ref_id_specifier] = ACTIONS(3416), - [sym__code_span_start] = ACTIONS(3416), - [sym__html_comment] = ACTIONS(3416), - [sym__autolink] = ACTIONS(3416), - [sym__highlight_span_start] = ACTIONS(3416), - [sym__insert_span_start] = ACTIONS(3416), - [sym__delete_span_start] = ACTIONS(3416), - [sym__edit_comment_span_start] = ACTIONS(3416), - [sym__single_quote_span_open] = ACTIONS(3416), - [sym__double_quote_span_open] = ACTIONS(3416), - [sym__shortcode_open_escaped] = ACTIONS(3416), - [sym__shortcode_open] = ACTIONS(3416), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3416), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3416), - [sym__cite_author_in_text] = ACTIONS(3416), - [sym__cite_suppress_author] = ACTIONS(3416), - [sym__strikeout_open] = ACTIONS(3416), - [sym__subscript_open] = ACTIONS(3416), - [sym__superscript_open] = ACTIONS(3416), - [sym__inline_note_start_token] = ACTIONS(3416), - [sym__strong_emphasis_open_star] = ACTIONS(3416), - [sym__strong_emphasis_open_underscore] = ACTIONS(3416), - [sym__emphasis_open_star] = ACTIONS(3416), - [sym__emphasis_open_underscore] = ACTIONS(3416), - [sym_inline_note_reference] = ACTIONS(3416), - [sym_html_element] = ACTIONS(3416), + [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)] = { - [sym_pandoc_span] = STATE(545), - [sym_pandoc_image] = STATE(545), - [sym_pandoc_math] = STATE(545), - [sym_pandoc_display_math] = STATE(545), - [sym_pandoc_code_span] = STATE(545), - [sym_pandoc_single_quote] = STATE(545), - [sym_pandoc_double_quote] = STATE(545), - [sym_insert] = STATE(545), - [sym_delete] = STATE(545), - [sym_edit_comment] = STATE(545), - [sym_highlight] = STATE(545), - [sym__pandoc_attr_specifier] = STATE(545), - [sym__inline_element] = STATE(545), - [sym_shortcode_escaped] = STATE(545), - [sym_shortcode] = STATE(545), - [sym_citation] = STATE(545), - [sym_inline_note] = STATE(545), - [sym_pandoc_superscript] = STATE(545), - [sym_pandoc_subscript] = STATE(545), - [sym_pandoc_strikeout] = STATE(545), - [sym_pandoc_emph] = STATE(545), - [sym_pandoc_strong] = STATE(545), - [sym_pandoc_str] = STATE(545), - [sym__prose_punctuation] = STATE(545), - [sym_pandoc_line_break] = STATE(545), - [aux_sym__line_repeat1] = STATE(545), - [sym_entity_reference] = ACTIONS(3980), - [sym_numeric_character_reference] = ACTIONS(3980), - [anon_sym_LBRACK] = ACTIONS(3982), - [anon_sym_BANG_LBRACK] = ACTIONS(3984), - [anon_sym_DOLLAR] = ACTIONS(3986), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3990), - [aux_sym_pandoc_str_token1] = ACTIONS(3992), - [anon_sym_PIPE] = ACTIONS(3994), - [aux_sym__prose_punctuation_token1] = ACTIONS(3996), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3998), - [sym__whitespace] = ACTIONS(4000), - [sym__soft_line_ending] = ACTIONS(3460), - [sym__code_span_start] = ACTIONS(4002), - [sym__html_comment] = ACTIONS(3980), - [sym__autolink] = ACTIONS(3980), - [sym__highlight_span_start] = ACTIONS(4004), - [sym__insert_span_start] = ACTIONS(4006), - [sym__delete_span_start] = ACTIONS(4008), - [sym__edit_comment_span_start] = ACTIONS(4010), - [sym__single_quote_span_open] = ACTIONS(4012), - [sym__single_quote_span_close] = ACTIONS(3460), - [sym__double_quote_span_open] = ACTIONS(4014), - [sym__shortcode_open_escaped] = ACTIONS(4016), - [sym__shortcode_open] = ACTIONS(4018), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4020), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4022), - [sym__cite_author_in_text] = ACTIONS(4024), - [sym__cite_suppress_author] = ACTIONS(4026), - [sym__strikeout_open] = ACTIONS(4028), - [sym__subscript_open] = ACTIONS(4030), - [sym__superscript_open] = ACTIONS(4032), - [sym__inline_note_start_token] = ACTIONS(4034), - [sym__strong_emphasis_open_star] = ACTIONS(4036), - [sym__strong_emphasis_open_underscore] = ACTIONS(4038), - [sym__emphasis_open_star] = ACTIONS(4040), - [sym__emphasis_open_underscore] = ACTIONS(4042), - [sym_inline_note_reference] = ACTIONS(3980), - [sym_html_element] = ACTIONS(3980), + [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)] = { - [anon_sym_COLON] = ACTIONS(3364), - [sym_entity_reference] = ACTIONS(3364), - [sym_numeric_character_reference] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_BANG_LBRACK] = ACTIONS(3364), - [anon_sym_DOLLAR] = ACTIONS(3366), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [aux_sym_pandoc_str_token1] = ACTIONS(3366), - [anon_sym_PIPE] = ACTIONS(3364), - [aux_sym__prose_punctuation_token1] = ACTIONS(3366), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3366), - [sym__line_ending] = ACTIONS(3364), - [sym__soft_line_ending] = ACTIONS(3364), - [sym__block_close] = ACTIONS(3364), - [sym__block_quote_start] = ACTIONS(3364), - [sym_atx_h1_marker] = ACTIONS(3364), - [sym_atx_h2_marker] = ACTIONS(3364), - [sym_atx_h3_marker] = ACTIONS(3364), - [sym_atx_h4_marker] = ACTIONS(3364), - [sym_atx_h5_marker] = ACTIONS(3364), - [sym_atx_h6_marker] = ACTIONS(3364), - [sym__thematic_break] = ACTIONS(3364), - [sym__list_marker_minus] = ACTIONS(3364), - [sym__list_marker_plus] = ACTIONS(3364), - [sym__list_marker_star] = ACTIONS(3364), - [sym__list_marker_parenthesis] = ACTIONS(3364), - [sym__list_marker_dot] = ACTIONS(3364), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_example] = ACTIONS(3364), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3364), - [sym__fenced_code_block_start_backtick] = ACTIONS(3364), - [sym_minus_metadata] = ACTIONS(3364), - [sym__pipe_table_start] = ACTIONS(3364), - [sym__fenced_div_start] = ACTIONS(3364), - [sym_ref_id_specifier] = ACTIONS(3364), - [sym__code_span_start] = ACTIONS(3364), - [sym__html_comment] = ACTIONS(3364), - [sym__autolink] = ACTIONS(3364), - [sym__highlight_span_start] = ACTIONS(3364), - [sym__insert_span_start] = ACTIONS(3364), - [sym__delete_span_start] = ACTIONS(3364), - [sym__edit_comment_span_start] = ACTIONS(3364), - [sym__single_quote_span_open] = ACTIONS(3364), - [sym__double_quote_span_open] = ACTIONS(3364), - [sym__shortcode_open_escaped] = ACTIONS(3364), - [sym__shortcode_open] = ACTIONS(3364), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3364), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3364), - [sym__cite_author_in_text] = ACTIONS(3364), - [sym__cite_suppress_author] = ACTIONS(3364), - [sym__strikeout_open] = ACTIONS(3364), - [sym__subscript_open] = ACTIONS(3364), - [sym__superscript_open] = ACTIONS(3364), - [sym__inline_note_start_token] = ACTIONS(3364), - [sym__strong_emphasis_open_star] = ACTIONS(3364), - [sym__strong_emphasis_open_underscore] = ACTIONS(3364), - [sym__emphasis_open_star] = ACTIONS(3364), - [sym__emphasis_open_underscore] = ACTIONS(3364), - [sym_inline_note_reference] = ACTIONS(3364), - [sym_html_element] = ACTIONS(3364), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3328), - [anon_sym_COLON] = ACTIONS(3328), - [sym_entity_reference] = ACTIONS(3328), - [sym_numeric_character_reference] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_BANG_LBRACK] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(3330), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [aux_sym_pandoc_str_token1] = ACTIONS(3330), - [anon_sym_PIPE] = ACTIONS(3328), - [aux_sym__prose_punctuation_token1] = ACTIONS(3330), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3330), - [sym__line_ending] = ACTIONS(3328), - [sym__soft_line_ending] = ACTIONS(3328), - [sym__block_quote_start] = ACTIONS(3328), - [sym_atx_h1_marker] = ACTIONS(3328), - [sym_atx_h2_marker] = ACTIONS(3328), - [sym_atx_h3_marker] = ACTIONS(3328), - [sym_atx_h4_marker] = ACTIONS(3328), - [sym_atx_h5_marker] = ACTIONS(3328), - [sym_atx_h6_marker] = ACTIONS(3328), - [sym__thematic_break] = ACTIONS(3328), - [sym__list_marker_minus] = ACTIONS(3328), - [sym__list_marker_plus] = ACTIONS(3328), - [sym__list_marker_star] = ACTIONS(3328), - [sym__list_marker_parenthesis] = ACTIONS(3328), - [sym__list_marker_dot] = ACTIONS(3328), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_example] = ACTIONS(3328), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3328), - [sym__fenced_code_block_start_backtick] = ACTIONS(3328), - [sym_minus_metadata] = ACTIONS(3328), - [sym__pipe_table_start] = ACTIONS(3328), - [sym__fenced_div_start] = ACTIONS(3328), - [sym_ref_id_specifier] = ACTIONS(3328), - [sym__code_span_start] = ACTIONS(3328), - [sym__html_comment] = ACTIONS(3328), - [sym__autolink] = ACTIONS(3328), - [sym__highlight_span_start] = ACTIONS(3328), - [sym__insert_span_start] = ACTIONS(3328), - [sym__delete_span_start] = ACTIONS(3328), - [sym__edit_comment_span_start] = ACTIONS(3328), - [sym__single_quote_span_open] = ACTIONS(3328), - [sym__double_quote_span_open] = ACTIONS(3328), - [sym__shortcode_open_escaped] = ACTIONS(3328), - [sym__shortcode_open] = ACTIONS(3328), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3328), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3328), - [sym__cite_author_in_text] = ACTIONS(3328), - [sym__cite_suppress_author] = ACTIONS(3328), - [sym__strikeout_open] = ACTIONS(3328), - [sym__subscript_open] = ACTIONS(3328), - [sym__superscript_open] = ACTIONS(3328), - [sym__inline_note_start_token] = ACTIONS(3328), - [sym__strong_emphasis_open_star] = ACTIONS(3328), - [sym__strong_emphasis_open_underscore] = ACTIONS(3328), - [sym__emphasis_open_star] = ACTIONS(3328), - [sym__emphasis_open_underscore] = ACTIONS(3328), - [sym_inline_note_reference] = ACTIONS(3328), - [sym_html_element] = ACTIONS(3328), + [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(3444), - [sym_entity_reference] = ACTIONS(3444), - [sym_numeric_character_reference] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3444), - [anon_sym_BANG_LBRACK] = ACTIONS(3444), - [anon_sym_DOLLAR] = ACTIONS(3446), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3444), - [aux_sym_pandoc_str_token1] = ACTIONS(3446), - [anon_sym_PIPE] = ACTIONS(3444), - [aux_sym__prose_punctuation_token1] = ACTIONS(3446), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3446), - [sym__line_ending] = ACTIONS(3444), - [sym__soft_line_ending] = ACTIONS(3444), - [sym__block_close] = ACTIONS(3444), - [sym__block_quote_start] = ACTIONS(3444), - [sym_atx_h1_marker] = ACTIONS(3444), - [sym_atx_h2_marker] = ACTIONS(3444), - [sym_atx_h3_marker] = ACTIONS(3444), - [sym_atx_h4_marker] = ACTIONS(3444), - [sym_atx_h5_marker] = ACTIONS(3444), - [sym_atx_h6_marker] = ACTIONS(3444), - [sym__thematic_break] = ACTIONS(3444), - [sym__list_marker_minus] = ACTIONS(3444), - [sym__list_marker_plus] = ACTIONS(3444), - [sym__list_marker_star] = ACTIONS(3444), - [sym__list_marker_parenthesis] = ACTIONS(3444), - [sym__list_marker_dot] = ACTIONS(3444), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3444), - [sym__list_marker_example] = ACTIONS(3444), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3444), - [sym__fenced_code_block_start_backtick] = ACTIONS(3444), - [sym_minus_metadata] = ACTIONS(3444), - [sym__pipe_table_start] = ACTIONS(3444), - [sym__fenced_div_start] = ACTIONS(3444), - [sym_ref_id_specifier] = ACTIONS(3444), - [sym__code_span_start] = ACTIONS(3444), - [sym__html_comment] = ACTIONS(3444), - [sym__autolink] = ACTIONS(3444), - [sym__highlight_span_start] = ACTIONS(3444), - [sym__insert_span_start] = ACTIONS(3444), - [sym__delete_span_start] = ACTIONS(3444), - [sym__edit_comment_span_start] = ACTIONS(3444), - [sym__single_quote_span_open] = ACTIONS(3444), - [sym__double_quote_span_open] = ACTIONS(3444), - [sym__shortcode_open_escaped] = ACTIONS(3444), - [sym__shortcode_open] = ACTIONS(3444), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3444), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3444), - [sym__cite_author_in_text] = ACTIONS(3444), - [sym__cite_suppress_author] = ACTIONS(3444), - [sym__strikeout_open] = ACTIONS(3444), - [sym__subscript_open] = ACTIONS(3444), - [sym__superscript_open] = ACTIONS(3444), - [sym__inline_note_start_token] = ACTIONS(3444), - [sym__strong_emphasis_open_star] = ACTIONS(3444), - [sym__strong_emphasis_open_underscore] = ACTIONS(3444), - [sym__emphasis_open_star] = ACTIONS(3444), - [sym__emphasis_open_underscore] = ACTIONS(3444), - [sym_inline_note_reference] = ACTIONS(3444), - [sym_html_element] = ACTIONS(3444), + [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_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(3452), - [sym_entity_reference] = ACTIONS(3452), - [sym_numeric_character_reference] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3452), - [anon_sym_BANG_LBRACK] = ACTIONS(3452), - [anon_sym_DOLLAR] = ACTIONS(3454), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3452), - [aux_sym_pandoc_str_token1] = ACTIONS(3454), - [anon_sym_PIPE] = ACTIONS(3452), - [aux_sym__prose_punctuation_token1] = ACTIONS(3454), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3454), - [sym__line_ending] = ACTIONS(3452), - [sym__soft_line_ending] = ACTIONS(3452), - [sym__block_close] = ACTIONS(3452), - [sym__block_quote_start] = ACTIONS(3452), - [sym_atx_h1_marker] = ACTIONS(3452), - [sym_atx_h2_marker] = ACTIONS(3452), - [sym_atx_h3_marker] = ACTIONS(3452), - [sym_atx_h4_marker] = ACTIONS(3452), - [sym_atx_h5_marker] = ACTIONS(3452), - [sym_atx_h6_marker] = ACTIONS(3452), - [sym__thematic_break] = ACTIONS(3452), - [sym__list_marker_minus] = ACTIONS(3452), - [sym__list_marker_plus] = ACTIONS(3452), - [sym__list_marker_star] = ACTIONS(3452), - [sym__list_marker_parenthesis] = ACTIONS(3452), - [sym__list_marker_dot] = ACTIONS(3452), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3452), - [sym__list_marker_example] = ACTIONS(3452), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3452), - [sym__fenced_code_block_start_backtick] = ACTIONS(3452), - [sym_minus_metadata] = ACTIONS(3452), - [sym__pipe_table_start] = ACTIONS(3452), - [sym__fenced_div_start] = ACTIONS(3452), - [sym_ref_id_specifier] = ACTIONS(3452), - [sym__code_span_start] = ACTIONS(3452), - [sym__html_comment] = ACTIONS(3452), - [sym__autolink] = ACTIONS(3452), - [sym__highlight_span_start] = ACTIONS(3452), - [sym__insert_span_start] = ACTIONS(3452), - [sym__delete_span_start] = ACTIONS(3452), - [sym__edit_comment_span_start] = ACTIONS(3452), - [sym__single_quote_span_open] = ACTIONS(3452), - [sym__double_quote_span_open] = ACTIONS(3452), - [sym__shortcode_open_escaped] = ACTIONS(3452), - [sym__shortcode_open] = ACTIONS(3452), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3452), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3452), - [sym__cite_author_in_text] = ACTIONS(3452), - [sym__cite_suppress_author] = ACTIONS(3452), - [sym__strikeout_open] = ACTIONS(3452), - [sym__subscript_open] = ACTIONS(3452), - [sym__superscript_open] = ACTIONS(3452), - [sym__inline_note_start_token] = ACTIONS(3452), - [sym__strong_emphasis_open_star] = ACTIONS(3452), - [sym__strong_emphasis_open_underscore] = ACTIONS(3452), - [sym__emphasis_open_star] = ACTIONS(3452), - [sym__emphasis_open_underscore] = ACTIONS(3452), - [sym_inline_note_reference] = ACTIONS(3452), - [sym_html_element] = ACTIONS(3452), + [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_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(3420), - [sym_entity_reference] = ACTIONS(3420), - [sym_numeric_character_reference] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3420), - [anon_sym_BANG_LBRACK] = ACTIONS(3420), - [anon_sym_DOLLAR] = ACTIONS(3422), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3420), - [aux_sym_pandoc_str_token1] = ACTIONS(3422), - [anon_sym_PIPE] = ACTIONS(3420), - [aux_sym__prose_punctuation_token1] = ACTIONS(3422), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3422), - [sym__line_ending] = ACTIONS(3420), - [sym__soft_line_ending] = ACTIONS(3420), - [sym__block_close] = ACTIONS(3420), - [sym__block_quote_start] = ACTIONS(3420), - [sym_atx_h1_marker] = ACTIONS(3420), - [sym_atx_h2_marker] = ACTIONS(3420), - [sym_atx_h3_marker] = ACTIONS(3420), - [sym_atx_h4_marker] = ACTIONS(3420), - [sym_atx_h5_marker] = ACTIONS(3420), - [sym_atx_h6_marker] = ACTIONS(3420), - [sym__thematic_break] = ACTIONS(3420), - [sym__list_marker_minus] = ACTIONS(3420), - [sym__list_marker_plus] = ACTIONS(3420), - [sym__list_marker_star] = ACTIONS(3420), - [sym__list_marker_parenthesis] = ACTIONS(3420), - [sym__list_marker_dot] = ACTIONS(3420), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3420), - [sym__list_marker_example] = ACTIONS(3420), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3420), - [sym__fenced_code_block_start_backtick] = ACTIONS(3420), - [sym_minus_metadata] = ACTIONS(3420), - [sym__pipe_table_start] = ACTIONS(3420), - [sym__fenced_div_start] = ACTIONS(3420), - [sym_ref_id_specifier] = ACTIONS(3420), - [sym__code_span_start] = ACTIONS(3420), - [sym__html_comment] = ACTIONS(3420), - [sym__autolink] = ACTIONS(3420), - [sym__highlight_span_start] = ACTIONS(3420), - [sym__insert_span_start] = ACTIONS(3420), - [sym__delete_span_start] = ACTIONS(3420), - [sym__edit_comment_span_start] = ACTIONS(3420), - [sym__single_quote_span_open] = ACTIONS(3420), - [sym__double_quote_span_open] = ACTIONS(3420), - [sym__shortcode_open_escaped] = ACTIONS(3420), - [sym__shortcode_open] = ACTIONS(3420), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3420), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3420), - [sym__cite_author_in_text] = ACTIONS(3420), - [sym__cite_suppress_author] = ACTIONS(3420), - [sym__strikeout_open] = ACTIONS(3420), - [sym__subscript_open] = ACTIONS(3420), - [sym__superscript_open] = ACTIONS(3420), - [sym__inline_note_start_token] = ACTIONS(3420), - [sym__strong_emphasis_open_star] = ACTIONS(3420), - [sym__strong_emphasis_open_underscore] = ACTIONS(3420), - [sym__emphasis_open_star] = ACTIONS(3420), - [sym__emphasis_open_underscore] = ACTIONS(3420), - [sym_inline_note_reference] = ACTIONS(3420), - [sym_html_element] = ACTIONS(3420), + [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__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(3324), - [sym_entity_reference] = ACTIONS(3324), - [sym_numeric_character_reference] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_BANG_LBRACK] = ACTIONS(3324), - [anon_sym_DOLLAR] = ACTIONS(3326), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [aux_sym_pandoc_str_token1] = ACTIONS(3326), - [anon_sym_PIPE] = ACTIONS(3324), - [aux_sym__prose_punctuation_token1] = ACTIONS(3326), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3326), - [sym__line_ending] = ACTIONS(3324), - [sym__soft_line_ending] = ACTIONS(3324), - [sym__block_close] = ACTIONS(3324), - [sym__block_quote_start] = ACTIONS(3324), - [sym_atx_h1_marker] = ACTIONS(3324), - [sym_atx_h2_marker] = ACTIONS(3324), - [sym_atx_h3_marker] = ACTIONS(3324), - [sym_atx_h4_marker] = ACTIONS(3324), - [sym_atx_h5_marker] = ACTIONS(3324), - [sym_atx_h6_marker] = ACTIONS(3324), - [sym__thematic_break] = ACTIONS(3324), - [sym__list_marker_minus] = ACTIONS(3324), - [sym__list_marker_plus] = ACTIONS(3324), - [sym__list_marker_star] = ACTIONS(3324), - [sym__list_marker_parenthesis] = ACTIONS(3324), - [sym__list_marker_dot] = ACTIONS(3324), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3324), - [sym__list_marker_example] = ACTIONS(3324), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3324), - [sym__fenced_code_block_start_backtick] = ACTIONS(3324), - [sym_minus_metadata] = ACTIONS(3324), - [sym__pipe_table_start] = ACTIONS(3324), - [sym__fenced_div_start] = ACTIONS(3324), - [sym_ref_id_specifier] = ACTIONS(3324), - [sym__code_span_start] = ACTIONS(3324), - [sym__html_comment] = ACTIONS(3324), - [sym__autolink] = ACTIONS(3324), - [sym__highlight_span_start] = ACTIONS(3324), - [sym__insert_span_start] = ACTIONS(3324), - [sym__delete_span_start] = ACTIONS(3324), - [sym__edit_comment_span_start] = ACTIONS(3324), - [sym__single_quote_span_open] = ACTIONS(3324), - [sym__double_quote_span_open] = ACTIONS(3324), - [sym__shortcode_open_escaped] = ACTIONS(3324), - [sym__shortcode_open] = ACTIONS(3324), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3324), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3324), - [sym__cite_author_in_text] = ACTIONS(3324), - [sym__cite_suppress_author] = ACTIONS(3324), - [sym__strikeout_open] = ACTIONS(3324), - [sym__subscript_open] = ACTIONS(3324), - [sym__superscript_open] = ACTIONS(3324), - [sym__inline_note_start_token] = ACTIONS(3324), - [sym__strong_emphasis_open_star] = ACTIONS(3324), - [sym__strong_emphasis_open_underscore] = ACTIONS(3324), - [sym__emphasis_open_star] = ACTIONS(3324), - [sym__emphasis_open_underscore] = ACTIONS(3324), - [sym_inline_note_reference] = ACTIONS(3324), - [sym_html_element] = ACTIONS(3324), + [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__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(536)] = { - [ts_builtin_sym_end] = ACTIONS(3131), - [anon_sym_COLON] = ACTIONS(3131), - [sym_entity_reference] = ACTIONS(3131), - [sym_numeric_character_reference] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_BANG_LBRACK] = ACTIONS(3131), - [anon_sym_DOLLAR] = ACTIONS(3133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [aux_sym_pandoc_str_token1] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [aux_sym__prose_punctuation_token1] = ACTIONS(3133), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3133), - [sym__line_ending] = ACTIONS(3131), - [sym__soft_line_ending] = ACTIONS(3131), - [sym__block_quote_start] = ACTIONS(3131), - [sym_atx_h1_marker] = ACTIONS(3131), - [sym_atx_h2_marker] = ACTIONS(3131), - [sym_atx_h3_marker] = ACTIONS(3131), - [sym_atx_h4_marker] = ACTIONS(3131), - [sym_atx_h5_marker] = ACTIONS(3131), - [sym_atx_h6_marker] = ACTIONS(3131), - [sym__thematic_break] = ACTIONS(3131), - [sym__list_marker_minus] = ACTIONS(3131), - [sym__list_marker_plus] = ACTIONS(3131), - [sym__list_marker_star] = ACTIONS(3131), - [sym__list_marker_parenthesis] = ACTIONS(3131), - [sym__list_marker_dot] = ACTIONS(3131), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_example] = ACTIONS(3131), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3131), - [sym__fenced_code_block_start_backtick] = ACTIONS(3131), - [sym_minus_metadata] = ACTIONS(3131), - [sym__pipe_table_start] = ACTIONS(3131), - [sym__fenced_div_start] = ACTIONS(3131), - [sym_ref_id_specifier] = ACTIONS(3131), - [sym__code_span_start] = ACTIONS(3131), - [sym__html_comment] = ACTIONS(3131), - [sym__autolink] = ACTIONS(3131), - [sym__highlight_span_start] = ACTIONS(3131), - [sym__insert_span_start] = ACTIONS(3131), - [sym__delete_span_start] = ACTIONS(3131), - [sym__edit_comment_span_start] = ACTIONS(3131), - [sym__single_quote_span_open] = ACTIONS(3131), - [sym__double_quote_span_open] = ACTIONS(3131), - [sym__shortcode_open_escaped] = ACTIONS(3131), - [sym__shortcode_open] = ACTIONS(3131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3131), - [sym__cite_author_in_text] = ACTIONS(3131), - [sym__cite_suppress_author] = ACTIONS(3131), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3131), - [sym__superscript_open] = ACTIONS(3131), - [sym__inline_note_start_token] = ACTIONS(3131), - [sym__strong_emphasis_open_star] = ACTIONS(3131), - [sym__strong_emphasis_open_underscore] = ACTIONS(3131), - [sym__emphasis_open_star] = ACTIONS(3131), - [sym__emphasis_open_underscore] = ACTIONS(3131), - [sym_inline_note_reference] = ACTIONS(3131), - [sym_html_element] = ACTIONS(3131), + [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(537)] = { - [anon_sym_COLON] = ACTIONS(3424), - [sym_entity_reference] = ACTIONS(3424), - [sym_numeric_character_reference] = ACTIONS(3424), - [anon_sym_LBRACK] = ACTIONS(3424), - [anon_sym_BANG_LBRACK] = ACTIONS(3424), - [anon_sym_DOLLAR] = ACTIONS(3426), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3424), - [aux_sym_pandoc_str_token1] = ACTIONS(3426), - [anon_sym_PIPE] = ACTIONS(3424), - [aux_sym__prose_punctuation_token1] = ACTIONS(3426), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3426), - [sym__line_ending] = ACTIONS(3424), - [sym__soft_line_ending] = ACTIONS(3424), - [sym__block_close] = ACTIONS(3424), - [sym__block_quote_start] = ACTIONS(3424), - [sym_atx_h1_marker] = ACTIONS(3424), - [sym_atx_h2_marker] = ACTIONS(3424), - [sym_atx_h3_marker] = ACTIONS(3424), - [sym_atx_h4_marker] = ACTIONS(3424), - [sym_atx_h5_marker] = ACTIONS(3424), - [sym_atx_h6_marker] = ACTIONS(3424), - [sym__thematic_break] = ACTIONS(3424), - [sym__list_marker_minus] = ACTIONS(3424), - [sym__list_marker_plus] = ACTIONS(3424), - [sym__list_marker_star] = ACTIONS(3424), - [sym__list_marker_parenthesis] = ACTIONS(3424), - [sym__list_marker_dot] = ACTIONS(3424), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3424), - [sym__list_marker_example] = ACTIONS(3424), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3424), - [sym__fenced_code_block_start_backtick] = ACTIONS(3424), - [sym_minus_metadata] = ACTIONS(3424), - [sym__pipe_table_start] = ACTIONS(3424), - [sym__fenced_div_start] = ACTIONS(3424), - [sym_ref_id_specifier] = ACTIONS(3424), - [sym__code_span_start] = ACTIONS(3424), - [sym__html_comment] = ACTIONS(3424), - [sym__autolink] = ACTIONS(3424), - [sym__highlight_span_start] = ACTIONS(3424), - [sym__insert_span_start] = ACTIONS(3424), - [sym__delete_span_start] = ACTIONS(3424), - [sym__edit_comment_span_start] = ACTIONS(3424), - [sym__single_quote_span_open] = ACTIONS(3424), - [sym__double_quote_span_open] = ACTIONS(3424), - [sym__shortcode_open_escaped] = ACTIONS(3424), - [sym__shortcode_open] = ACTIONS(3424), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3424), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3424), - [sym__cite_author_in_text] = ACTIONS(3424), - [sym__cite_suppress_author] = ACTIONS(3424), - [sym__strikeout_open] = ACTIONS(3424), - [sym__subscript_open] = ACTIONS(3424), - [sym__superscript_open] = ACTIONS(3424), - [sym__inline_note_start_token] = ACTIONS(3424), - [sym__strong_emphasis_open_star] = ACTIONS(3424), - [sym__strong_emphasis_open_underscore] = ACTIONS(3424), - [sym__emphasis_open_star] = ACTIONS(3424), - [sym__emphasis_open_underscore] = ACTIONS(3424), - [sym_inline_note_reference] = ACTIONS(3424), - [sym_html_element] = ACTIONS(3424), + [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(538)] = { - [anon_sym_COLON] = ACTIONS(3328), - [sym_entity_reference] = ACTIONS(3328), - [sym_numeric_character_reference] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_BANG_LBRACK] = ACTIONS(3328), - [anon_sym_DOLLAR] = ACTIONS(3330), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [aux_sym_pandoc_str_token1] = ACTIONS(3330), - [anon_sym_PIPE] = ACTIONS(3328), - [aux_sym__prose_punctuation_token1] = ACTIONS(3330), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3330), - [sym__line_ending] = ACTIONS(3328), - [sym__soft_line_ending] = ACTIONS(3328), - [sym__block_close] = ACTIONS(3328), - [sym__block_quote_start] = ACTIONS(3328), - [sym_atx_h1_marker] = ACTIONS(3328), - [sym_atx_h2_marker] = ACTIONS(3328), - [sym_atx_h3_marker] = ACTIONS(3328), - [sym_atx_h4_marker] = ACTIONS(3328), - [sym_atx_h5_marker] = ACTIONS(3328), - [sym_atx_h6_marker] = ACTIONS(3328), - [sym__thematic_break] = ACTIONS(3328), - [sym__list_marker_minus] = ACTIONS(3328), - [sym__list_marker_plus] = ACTIONS(3328), - [sym__list_marker_star] = ACTIONS(3328), - [sym__list_marker_parenthesis] = ACTIONS(3328), - [sym__list_marker_dot] = ACTIONS(3328), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3328), - [sym__list_marker_example] = ACTIONS(3328), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3328), - [sym__fenced_code_block_start_backtick] = ACTIONS(3328), - [sym_minus_metadata] = ACTIONS(3328), - [sym__pipe_table_start] = ACTIONS(3328), - [sym__fenced_div_start] = ACTIONS(3328), - [sym_ref_id_specifier] = ACTIONS(3328), - [sym__code_span_start] = ACTIONS(3328), - [sym__html_comment] = ACTIONS(3328), - [sym__autolink] = ACTIONS(3328), - [sym__highlight_span_start] = ACTIONS(3328), - [sym__insert_span_start] = ACTIONS(3328), - [sym__delete_span_start] = ACTIONS(3328), - [sym__edit_comment_span_start] = ACTIONS(3328), - [sym__single_quote_span_open] = ACTIONS(3328), - [sym__double_quote_span_open] = ACTIONS(3328), - [sym__shortcode_open_escaped] = ACTIONS(3328), - [sym__shortcode_open] = ACTIONS(3328), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3328), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3328), - [sym__cite_author_in_text] = ACTIONS(3328), - [sym__cite_suppress_author] = ACTIONS(3328), - [sym__strikeout_open] = ACTIONS(3328), - [sym__subscript_open] = ACTIONS(3328), - [sym__superscript_open] = ACTIONS(3328), - [sym__inline_note_start_token] = ACTIONS(3328), - [sym__strong_emphasis_open_star] = ACTIONS(3328), - [sym__strong_emphasis_open_underscore] = ACTIONS(3328), - [sym__emphasis_open_star] = ACTIONS(3328), - [sym__emphasis_open_underscore] = ACTIONS(3328), - [sym_inline_note_reference] = ACTIONS(3328), - [sym_html_element] = ACTIONS(3328), + [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(539)] = { - [anon_sym_COLON] = ACTIONS(3332), - [sym_entity_reference] = ACTIONS(3332), - [sym_numeric_character_reference] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_BANG_LBRACK] = ACTIONS(3332), - [anon_sym_DOLLAR] = ACTIONS(3334), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [aux_sym_pandoc_str_token1] = ACTIONS(3334), - [anon_sym_PIPE] = ACTIONS(3332), - [aux_sym__prose_punctuation_token1] = ACTIONS(3334), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3334), - [sym__line_ending] = ACTIONS(3332), - [sym__soft_line_ending] = ACTIONS(3332), - [sym__block_close] = ACTIONS(3332), - [sym__block_quote_start] = ACTIONS(3332), - [sym_atx_h1_marker] = ACTIONS(3332), - [sym_atx_h2_marker] = ACTIONS(3332), - [sym_atx_h3_marker] = ACTIONS(3332), - [sym_atx_h4_marker] = ACTIONS(3332), - [sym_atx_h5_marker] = ACTIONS(3332), - [sym_atx_h6_marker] = ACTIONS(3332), - [sym__thematic_break] = ACTIONS(3332), - [sym__list_marker_minus] = ACTIONS(3332), - [sym__list_marker_plus] = ACTIONS(3332), - [sym__list_marker_star] = ACTIONS(3332), - [sym__list_marker_parenthesis] = ACTIONS(3332), - [sym__list_marker_dot] = ACTIONS(3332), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_example] = ACTIONS(3332), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3332), - [sym__fenced_code_block_start_backtick] = ACTIONS(3332), - [sym_minus_metadata] = ACTIONS(3332), - [sym__pipe_table_start] = ACTIONS(3332), - [sym__fenced_div_start] = ACTIONS(3332), - [sym_ref_id_specifier] = ACTIONS(3332), - [sym__code_span_start] = ACTIONS(3332), - [sym__html_comment] = ACTIONS(3332), - [sym__autolink] = ACTIONS(3332), - [sym__highlight_span_start] = ACTIONS(3332), - [sym__insert_span_start] = ACTIONS(3332), - [sym__delete_span_start] = ACTIONS(3332), - [sym__edit_comment_span_start] = ACTIONS(3332), - [sym__single_quote_span_open] = ACTIONS(3332), - [sym__double_quote_span_open] = ACTIONS(3332), - [sym__shortcode_open_escaped] = ACTIONS(3332), - [sym__shortcode_open] = ACTIONS(3332), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3332), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3332), - [sym__cite_author_in_text] = ACTIONS(3332), - [sym__cite_suppress_author] = ACTIONS(3332), - [sym__strikeout_open] = ACTIONS(3332), - [sym__subscript_open] = ACTIONS(3332), - [sym__superscript_open] = ACTIONS(3332), - [sym__inline_note_start_token] = ACTIONS(3332), - [sym__strong_emphasis_open_star] = ACTIONS(3332), - [sym__strong_emphasis_open_underscore] = ACTIONS(3332), - [sym__emphasis_open_star] = ACTIONS(3332), - [sym__emphasis_open_underscore] = ACTIONS(3332), - [sym_inline_note_reference] = ACTIONS(3332), - [sym_html_element] = ACTIONS(3332), + [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(540)] = { - [anon_sym_COLON] = ACTIONS(3336), - [sym_entity_reference] = ACTIONS(3336), - [sym_numeric_character_reference] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_BANG_LBRACK] = ACTIONS(3336), - [anon_sym_DOLLAR] = ACTIONS(3338), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [aux_sym_pandoc_str_token1] = ACTIONS(3338), - [anon_sym_PIPE] = ACTIONS(3336), - [aux_sym__prose_punctuation_token1] = ACTIONS(3338), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3338), - [sym__line_ending] = ACTIONS(3336), - [sym__soft_line_ending] = ACTIONS(3336), - [sym__block_close] = ACTIONS(3336), - [sym__block_quote_start] = ACTIONS(3336), - [sym_atx_h1_marker] = ACTIONS(3336), - [sym_atx_h2_marker] = ACTIONS(3336), - [sym_atx_h3_marker] = ACTIONS(3336), - [sym_atx_h4_marker] = ACTIONS(3336), - [sym_atx_h5_marker] = ACTIONS(3336), - [sym_atx_h6_marker] = ACTIONS(3336), - [sym__thematic_break] = ACTIONS(3336), - [sym__list_marker_minus] = ACTIONS(3336), - [sym__list_marker_plus] = ACTIONS(3336), - [sym__list_marker_star] = ACTIONS(3336), - [sym__list_marker_parenthesis] = ACTIONS(3336), - [sym__list_marker_dot] = ACTIONS(3336), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_example] = ACTIONS(3336), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3336), - [sym__fenced_code_block_start_backtick] = ACTIONS(3336), - [sym_minus_metadata] = ACTIONS(3336), - [sym__pipe_table_start] = ACTIONS(3336), - [sym__fenced_div_start] = ACTIONS(3336), - [sym_ref_id_specifier] = ACTIONS(3336), - [sym__code_span_start] = ACTIONS(3336), - [sym__html_comment] = ACTIONS(3336), - [sym__autolink] = ACTIONS(3336), - [sym__highlight_span_start] = ACTIONS(3336), - [sym__insert_span_start] = ACTIONS(3336), - [sym__delete_span_start] = ACTIONS(3336), - [sym__edit_comment_span_start] = ACTIONS(3336), - [sym__single_quote_span_open] = ACTIONS(3336), - [sym__double_quote_span_open] = ACTIONS(3336), - [sym__shortcode_open_escaped] = ACTIONS(3336), - [sym__shortcode_open] = ACTIONS(3336), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3336), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3336), - [sym__cite_author_in_text] = ACTIONS(3336), - [sym__cite_suppress_author] = ACTIONS(3336), - [sym__strikeout_open] = ACTIONS(3336), - [sym__subscript_open] = ACTIONS(3336), - [sym__superscript_open] = ACTIONS(3336), - [sym__inline_note_start_token] = ACTIONS(3336), - [sym__strong_emphasis_open_star] = ACTIONS(3336), - [sym__strong_emphasis_open_underscore] = ACTIONS(3336), - [sym__emphasis_open_star] = ACTIONS(3336), - [sym__emphasis_open_underscore] = ACTIONS(3336), - [sym_inline_note_reference] = ACTIONS(3336), - [sym_html_element] = ACTIONS(3336), + [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), + [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(541)] = { - [anon_sym_COLON] = ACTIONS(3440), - [sym_entity_reference] = ACTIONS(3440), - [sym_numeric_character_reference] = ACTIONS(3440), - [anon_sym_LBRACK] = ACTIONS(3440), - [anon_sym_BANG_LBRACK] = ACTIONS(3440), - [anon_sym_DOLLAR] = ACTIONS(3442), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3440), - [aux_sym_pandoc_str_token1] = ACTIONS(3442), - [anon_sym_PIPE] = ACTIONS(3440), - [aux_sym__prose_punctuation_token1] = ACTIONS(3442), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3442), - [sym__line_ending] = ACTIONS(3440), - [sym__soft_line_ending] = ACTIONS(3440), - [sym__block_close] = ACTIONS(3440), - [sym__block_quote_start] = ACTIONS(3440), - [sym_atx_h1_marker] = ACTIONS(3440), - [sym_atx_h2_marker] = ACTIONS(3440), - [sym_atx_h3_marker] = ACTIONS(3440), - [sym_atx_h4_marker] = ACTIONS(3440), - [sym_atx_h5_marker] = ACTIONS(3440), - [sym_atx_h6_marker] = ACTIONS(3440), - [sym__thematic_break] = ACTIONS(3440), - [sym__list_marker_minus] = ACTIONS(3440), - [sym__list_marker_plus] = ACTIONS(3440), - [sym__list_marker_star] = ACTIONS(3440), - [sym__list_marker_parenthesis] = ACTIONS(3440), - [sym__list_marker_dot] = ACTIONS(3440), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_example] = ACTIONS(3440), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3440), - [sym__fenced_code_block_start_backtick] = ACTIONS(3440), - [sym_minus_metadata] = ACTIONS(3440), - [sym__pipe_table_start] = ACTIONS(3440), - [sym__fenced_div_start] = ACTIONS(3440), - [sym_ref_id_specifier] = ACTIONS(3440), - [sym__code_span_start] = ACTIONS(3440), - [sym__html_comment] = ACTIONS(3440), - [sym__autolink] = ACTIONS(3440), - [sym__highlight_span_start] = ACTIONS(3440), - [sym__insert_span_start] = ACTIONS(3440), - [sym__delete_span_start] = ACTIONS(3440), - [sym__edit_comment_span_start] = ACTIONS(3440), - [sym__single_quote_span_open] = ACTIONS(3440), - [sym__double_quote_span_open] = ACTIONS(3440), - [sym__shortcode_open_escaped] = ACTIONS(3440), - [sym__shortcode_open] = ACTIONS(3440), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3440), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3440), - [sym__cite_author_in_text] = ACTIONS(3440), - [sym__cite_suppress_author] = ACTIONS(3440), - [sym__strikeout_open] = ACTIONS(3440), - [sym__subscript_open] = ACTIONS(3440), - [sym__superscript_open] = ACTIONS(3440), - [sym__inline_note_start_token] = ACTIONS(3440), - [sym__strong_emphasis_open_star] = ACTIONS(3440), - [sym__strong_emphasis_open_underscore] = ACTIONS(3440), - [sym__emphasis_open_star] = ACTIONS(3440), - [sym__emphasis_open_underscore] = ACTIONS(3440), - [sym_inline_note_reference] = ACTIONS(3440), - [sym_html_element] = ACTIONS(3440), + [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), + [sym__emphasis_open_underscore] = ACTIONS(3017), + [sym_inline_note_reference] = ACTIONS(3017), + [sym_html_element] = ACTIONS(3017), + [sym__pandoc_line_break] = ACTIONS(3017), }, [STATE(542)] = { - [anon_sym_COLON] = ACTIONS(3448), - [sym_entity_reference] = ACTIONS(3448), - [sym_numeric_character_reference] = ACTIONS(3448), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_BANG_LBRACK] = ACTIONS(3448), - [anon_sym_DOLLAR] = ACTIONS(3450), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3448), - [anon_sym_LBRACE] = ACTIONS(3448), - [aux_sym_pandoc_str_token1] = ACTIONS(3450), - [anon_sym_PIPE] = ACTIONS(3448), - [aux_sym__prose_punctuation_token1] = ACTIONS(3450), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3450), - [sym__line_ending] = ACTIONS(3448), - [sym__soft_line_ending] = ACTIONS(3448), - [sym__block_close] = ACTIONS(3448), - [sym__block_quote_start] = ACTIONS(3448), - [sym_atx_h1_marker] = ACTIONS(3448), - [sym_atx_h2_marker] = ACTIONS(3448), - [sym_atx_h3_marker] = ACTIONS(3448), - [sym_atx_h4_marker] = ACTIONS(3448), - [sym_atx_h5_marker] = ACTIONS(3448), - [sym_atx_h6_marker] = ACTIONS(3448), - [sym__thematic_break] = ACTIONS(3448), - [sym__list_marker_minus] = ACTIONS(3448), - [sym__list_marker_plus] = ACTIONS(3448), - [sym__list_marker_star] = ACTIONS(3448), - [sym__list_marker_parenthesis] = ACTIONS(3448), - [sym__list_marker_dot] = ACTIONS(3448), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_example] = ACTIONS(3448), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3448), - [sym__fenced_code_block_start_backtick] = ACTIONS(3448), - [sym_minus_metadata] = ACTIONS(3448), - [sym__pipe_table_start] = ACTIONS(3448), - [sym__fenced_div_start] = ACTIONS(3448), - [sym_ref_id_specifier] = ACTIONS(3448), - [sym__code_span_start] = ACTIONS(3448), - [sym__html_comment] = ACTIONS(3448), - [sym__autolink] = ACTIONS(3448), - [sym__highlight_span_start] = ACTIONS(3448), - [sym__insert_span_start] = ACTIONS(3448), - [sym__delete_span_start] = ACTIONS(3448), - [sym__edit_comment_span_start] = ACTIONS(3448), - [sym__single_quote_span_open] = ACTIONS(3448), - [sym__double_quote_span_open] = ACTIONS(3448), - [sym__shortcode_open_escaped] = ACTIONS(3448), - [sym__shortcode_open] = ACTIONS(3448), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3448), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3448), - [sym__cite_author_in_text] = ACTIONS(3448), - [sym__cite_suppress_author] = ACTIONS(3448), - [sym__strikeout_open] = ACTIONS(3448), - [sym__subscript_open] = ACTIONS(3448), - [sym__superscript_open] = ACTIONS(3448), - [sym__inline_note_start_token] = ACTIONS(3448), - [sym__strong_emphasis_open_star] = ACTIONS(3448), - [sym__strong_emphasis_open_underscore] = ACTIONS(3448), - [sym__emphasis_open_star] = ACTIONS(3448), - [sym__emphasis_open_underscore] = ACTIONS(3448), - [sym_inline_note_reference] = ACTIONS(3448), - [sym_html_element] = ACTIONS(3448), + [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(543)] = { - [anon_sym_COLON] = ACTIONS(3614), - [sym_entity_reference] = ACTIONS(3614), - [sym_numeric_character_reference] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_BANG_LBRACK] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3614), - [aux_sym_pandoc_str_token1] = ACTIONS(3616), - [anon_sym_PIPE] = ACTIONS(3614), - [aux_sym__prose_punctuation_token1] = ACTIONS(3616), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3616), - [sym__line_ending] = ACTIONS(3614), - [sym__soft_line_ending] = ACTIONS(3614), - [sym__block_close] = ACTIONS(3614), - [sym__block_quote_start] = ACTIONS(3614), - [sym_atx_h1_marker] = ACTIONS(3614), - [sym_atx_h2_marker] = ACTIONS(3614), - [sym_atx_h3_marker] = ACTIONS(3614), - [sym_atx_h4_marker] = ACTIONS(3614), - [sym_atx_h5_marker] = ACTIONS(3614), - [sym_atx_h6_marker] = ACTIONS(3614), - [sym__thematic_break] = ACTIONS(3614), - [sym__list_marker_minus] = ACTIONS(3614), - [sym__list_marker_plus] = ACTIONS(3614), - [sym__list_marker_star] = ACTIONS(3614), - [sym__list_marker_parenthesis] = ACTIONS(3614), - [sym__list_marker_dot] = ACTIONS(3614), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_example] = ACTIONS(3614), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3614), - [sym__fenced_code_block_start_backtick] = ACTIONS(3614), - [sym_minus_metadata] = ACTIONS(3614), - [sym__pipe_table_start] = ACTIONS(3614), - [sym__fenced_div_start] = ACTIONS(3614), - [sym_ref_id_specifier] = ACTIONS(3614), - [sym__code_span_start] = ACTIONS(3614), - [sym__html_comment] = ACTIONS(3614), - [sym__autolink] = ACTIONS(3614), - [sym__highlight_span_start] = ACTIONS(3614), - [sym__insert_span_start] = ACTIONS(3614), - [sym__delete_span_start] = ACTIONS(3614), - [sym__edit_comment_span_start] = ACTIONS(3614), - [sym__single_quote_span_open] = ACTIONS(3614), - [sym__double_quote_span_open] = ACTIONS(3614), - [sym__shortcode_open_escaped] = ACTIONS(3614), - [sym__shortcode_open] = ACTIONS(3614), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3614), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3614), - [sym__cite_author_in_text] = ACTIONS(3614), - [sym__cite_suppress_author] = ACTIONS(3614), - [sym__strikeout_open] = ACTIONS(3614), - [sym__subscript_open] = ACTIONS(3614), - [sym__superscript_open] = ACTIONS(3614), - [sym__inline_note_start_token] = ACTIONS(3614), - [sym__strong_emphasis_open_star] = ACTIONS(3614), - [sym__strong_emphasis_open_underscore] = ACTIONS(3614), - [sym__emphasis_open_star] = ACTIONS(3614), - [sym__emphasis_open_underscore] = ACTIONS(3614), - [sym_inline_note_reference] = ACTIONS(3614), - [sym_html_element] = ACTIONS(3614), + [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(544)] = { - [anon_sym_COLON] = ACTIONS(3428), - [sym_entity_reference] = ACTIONS(3428), - [sym_numeric_character_reference] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3428), - [anon_sym_BANG_LBRACK] = ACTIONS(3428), - [anon_sym_DOLLAR] = ACTIONS(3430), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3428), - [aux_sym_pandoc_str_token1] = ACTIONS(3430), - [anon_sym_PIPE] = ACTIONS(3428), - [aux_sym__prose_punctuation_token1] = ACTIONS(3430), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3430), - [sym__line_ending] = ACTIONS(3428), - [sym__soft_line_ending] = ACTIONS(3428), - [sym__block_close] = ACTIONS(3428), - [sym__block_quote_start] = ACTIONS(3428), - [sym_atx_h1_marker] = ACTIONS(3428), - [sym_atx_h2_marker] = ACTIONS(3428), - [sym_atx_h3_marker] = ACTIONS(3428), - [sym_atx_h4_marker] = ACTIONS(3428), - [sym_atx_h5_marker] = ACTIONS(3428), - [sym_atx_h6_marker] = ACTIONS(3428), - [sym__thematic_break] = ACTIONS(3428), - [sym__list_marker_minus] = ACTIONS(3428), - [sym__list_marker_plus] = ACTIONS(3428), - [sym__list_marker_star] = ACTIONS(3428), - [sym__list_marker_parenthesis] = ACTIONS(3428), - [sym__list_marker_dot] = ACTIONS(3428), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3428), - [sym__list_marker_example] = ACTIONS(3428), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3428), - [sym__fenced_code_block_start_backtick] = ACTIONS(3428), - [sym_minus_metadata] = ACTIONS(3428), - [sym__pipe_table_start] = ACTIONS(3428), - [sym__fenced_div_start] = ACTIONS(3428), - [sym_ref_id_specifier] = ACTIONS(3428), - [sym__code_span_start] = ACTIONS(3428), - [sym__html_comment] = ACTIONS(3428), - [sym__autolink] = ACTIONS(3428), - [sym__highlight_span_start] = ACTIONS(3428), - [sym__insert_span_start] = ACTIONS(3428), - [sym__delete_span_start] = ACTIONS(3428), - [sym__edit_comment_span_start] = ACTIONS(3428), - [sym__single_quote_span_open] = ACTIONS(3428), - [sym__double_quote_span_open] = ACTIONS(3428), - [sym__shortcode_open_escaped] = ACTIONS(3428), - [sym__shortcode_open] = ACTIONS(3428), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3428), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3428), - [sym__cite_author_in_text] = ACTIONS(3428), - [sym__cite_suppress_author] = ACTIONS(3428), - [sym__strikeout_open] = ACTIONS(3428), - [sym__subscript_open] = ACTIONS(3428), - [sym__superscript_open] = ACTIONS(3428), - [sym__inline_note_start_token] = ACTIONS(3428), - [sym__strong_emphasis_open_star] = ACTIONS(3428), - [sym__strong_emphasis_open_underscore] = ACTIONS(3428), - [sym__emphasis_open_star] = ACTIONS(3428), - [sym__emphasis_open_underscore] = ACTIONS(3428), - [sym_inline_note_reference] = ACTIONS(3428), - [sym_html_element] = ACTIONS(3428), + [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(545)] = { - [sym_pandoc_span] = STATE(520), - [sym_pandoc_image] = STATE(520), - [sym_pandoc_math] = STATE(520), - [sym_pandoc_display_math] = STATE(520), - [sym_pandoc_code_span] = STATE(520), - [sym_pandoc_single_quote] = STATE(520), - [sym_pandoc_double_quote] = STATE(520), - [sym_insert] = STATE(520), - [sym_delete] = STATE(520), - [sym_edit_comment] = STATE(520), - [sym_highlight] = STATE(520), - [sym__pandoc_attr_specifier] = STATE(520), - [sym__inline_element] = STATE(520), - [sym_shortcode_escaped] = STATE(520), - [sym_shortcode] = STATE(520), - [sym_citation] = STATE(520), - [sym_inline_note] = STATE(520), - [sym_pandoc_superscript] = STATE(520), - [sym_pandoc_subscript] = STATE(520), - [sym_pandoc_strikeout] = STATE(520), - [sym_pandoc_emph] = STATE(520), - [sym_pandoc_strong] = STATE(520), - [sym_pandoc_str] = STATE(520), - [sym__prose_punctuation] = STATE(520), - [sym_pandoc_line_break] = STATE(520), - [aux_sym__line_repeat1] = STATE(520), - [sym_entity_reference] = ACTIONS(4044), - [sym_numeric_character_reference] = ACTIONS(4044), - [anon_sym_LBRACK] = ACTIONS(3982), - [anon_sym_BANG_LBRACK] = ACTIONS(3984), - [anon_sym_DOLLAR] = ACTIONS(3986), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3990), - [aux_sym_pandoc_str_token1] = ACTIONS(3992), - [anon_sym_PIPE] = ACTIONS(3994), - [aux_sym__prose_punctuation_token1] = ACTIONS(4046), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3998), - [sym__whitespace] = ACTIONS(4000), - [sym__soft_line_ending] = ACTIONS(3470), - [sym__code_span_start] = ACTIONS(4002), - [sym__html_comment] = ACTIONS(4044), - [sym__autolink] = ACTIONS(4044), - [sym__highlight_span_start] = ACTIONS(4004), - [sym__insert_span_start] = ACTIONS(4006), - [sym__delete_span_start] = ACTIONS(4008), - [sym__edit_comment_span_start] = ACTIONS(4010), - [sym__single_quote_span_open] = ACTIONS(4012), - [sym__single_quote_span_close] = ACTIONS(3470), - [sym__double_quote_span_open] = ACTIONS(4014), - [sym__shortcode_open_escaped] = ACTIONS(4016), - [sym__shortcode_open] = ACTIONS(4018), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4020), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4022), - [sym__cite_author_in_text] = ACTIONS(4024), - [sym__cite_suppress_author] = ACTIONS(4026), - [sym__strikeout_open] = ACTIONS(4028), - [sym__subscript_open] = ACTIONS(4030), - [sym__superscript_open] = ACTIONS(4032), - [sym__inline_note_start_token] = ACTIONS(4034), - [sym__strong_emphasis_open_star] = ACTIONS(4036), - [sym__strong_emphasis_open_underscore] = ACTIONS(4038), - [sym__emphasis_open_star] = ACTIONS(4040), - [sym__emphasis_open_underscore] = ACTIONS(4042), - [sym_inline_note_reference] = ACTIONS(4044), - [sym_html_element] = ACTIONS(4044), + [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(546)] = { - [ts_builtin_sym_end] = ACTIONS(3332), - [anon_sym_COLON] = ACTIONS(3332), - [sym_entity_reference] = ACTIONS(3332), - [sym_numeric_character_reference] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_BANG_LBRACK] = ACTIONS(3332), - [anon_sym_DOLLAR] = ACTIONS(3334), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [aux_sym_pandoc_str_token1] = ACTIONS(3334), - [anon_sym_PIPE] = ACTIONS(3332), - [aux_sym__prose_punctuation_token1] = ACTIONS(3334), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3334), - [sym__line_ending] = ACTIONS(3332), - [sym__soft_line_ending] = ACTIONS(3332), - [sym__block_quote_start] = ACTIONS(3332), - [sym_atx_h1_marker] = ACTIONS(3332), - [sym_atx_h2_marker] = ACTIONS(3332), - [sym_atx_h3_marker] = ACTIONS(3332), - [sym_atx_h4_marker] = ACTIONS(3332), - [sym_atx_h5_marker] = ACTIONS(3332), - [sym_atx_h6_marker] = ACTIONS(3332), - [sym__thematic_break] = ACTIONS(3332), - [sym__list_marker_minus] = ACTIONS(3332), - [sym__list_marker_plus] = ACTIONS(3332), - [sym__list_marker_star] = ACTIONS(3332), - [sym__list_marker_parenthesis] = ACTIONS(3332), - [sym__list_marker_dot] = ACTIONS(3332), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3332), - [sym__list_marker_example] = ACTIONS(3332), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3332), - [sym__fenced_code_block_start_backtick] = ACTIONS(3332), - [sym_minus_metadata] = ACTIONS(3332), - [sym__pipe_table_start] = ACTIONS(3332), - [sym__fenced_div_start] = ACTIONS(3332), - [sym_ref_id_specifier] = ACTIONS(3332), - [sym__code_span_start] = ACTIONS(3332), - [sym__html_comment] = ACTIONS(3332), - [sym__autolink] = ACTIONS(3332), - [sym__highlight_span_start] = ACTIONS(3332), - [sym__insert_span_start] = ACTIONS(3332), - [sym__delete_span_start] = ACTIONS(3332), - [sym__edit_comment_span_start] = ACTIONS(3332), - [sym__single_quote_span_open] = ACTIONS(3332), - [sym__double_quote_span_open] = ACTIONS(3332), - [sym__shortcode_open_escaped] = ACTIONS(3332), - [sym__shortcode_open] = ACTIONS(3332), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3332), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3332), - [sym__cite_author_in_text] = ACTIONS(3332), - [sym__cite_suppress_author] = ACTIONS(3332), - [sym__strikeout_open] = ACTIONS(3332), - [sym__subscript_open] = ACTIONS(3332), - [sym__superscript_open] = ACTIONS(3332), - [sym__inline_note_start_token] = ACTIONS(3332), - [sym__strong_emphasis_open_star] = ACTIONS(3332), - [sym__strong_emphasis_open_underscore] = ACTIONS(3332), - [sym__emphasis_open_star] = ACTIONS(3332), - [sym__emphasis_open_underscore] = ACTIONS(3332), - [sym_inline_note_reference] = ACTIONS(3332), - [sym_html_element] = ACTIONS(3332), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3336), - [anon_sym_COLON] = ACTIONS(3336), - [sym_entity_reference] = ACTIONS(3336), - [sym_numeric_character_reference] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_BANG_LBRACK] = ACTIONS(3336), - [anon_sym_DOLLAR] = ACTIONS(3338), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [aux_sym_pandoc_str_token1] = ACTIONS(3338), - [anon_sym_PIPE] = ACTIONS(3336), - [aux_sym__prose_punctuation_token1] = ACTIONS(3338), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3338), - [sym__line_ending] = ACTIONS(3336), - [sym__soft_line_ending] = ACTIONS(3336), - [sym__block_quote_start] = ACTIONS(3336), - [sym_atx_h1_marker] = ACTIONS(3336), - [sym_atx_h2_marker] = ACTIONS(3336), - [sym_atx_h3_marker] = ACTIONS(3336), - [sym_atx_h4_marker] = ACTIONS(3336), - [sym_atx_h5_marker] = ACTIONS(3336), - [sym_atx_h6_marker] = ACTIONS(3336), - [sym__thematic_break] = ACTIONS(3336), - [sym__list_marker_minus] = ACTIONS(3336), - [sym__list_marker_plus] = ACTIONS(3336), - [sym__list_marker_star] = ACTIONS(3336), - [sym__list_marker_parenthesis] = ACTIONS(3336), - [sym__list_marker_dot] = ACTIONS(3336), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3336), - [sym__list_marker_example] = ACTIONS(3336), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3336), - [sym__fenced_code_block_start_backtick] = ACTIONS(3336), - [sym_minus_metadata] = ACTIONS(3336), - [sym__pipe_table_start] = ACTIONS(3336), - [sym__fenced_div_start] = ACTIONS(3336), - [sym_ref_id_specifier] = ACTIONS(3336), - [sym__code_span_start] = ACTIONS(3336), - [sym__html_comment] = ACTIONS(3336), - [sym__autolink] = ACTIONS(3336), - [sym__highlight_span_start] = ACTIONS(3336), - [sym__insert_span_start] = ACTIONS(3336), - [sym__delete_span_start] = ACTIONS(3336), - [sym__edit_comment_span_start] = ACTIONS(3336), - [sym__single_quote_span_open] = ACTIONS(3336), - [sym__double_quote_span_open] = ACTIONS(3336), - [sym__shortcode_open_escaped] = ACTIONS(3336), - [sym__shortcode_open] = ACTIONS(3336), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3336), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3336), - [sym__cite_author_in_text] = ACTIONS(3336), - [sym__cite_suppress_author] = ACTIONS(3336), - [sym__strikeout_open] = ACTIONS(3336), - [sym__subscript_open] = ACTIONS(3336), - [sym__superscript_open] = ACTIONS(3336), - [sym__inline_note_start_token] = ACTIONS(3336), - [sym__strong_emphasis_open_star] = ACTIONS(3336), - [sym__strong_emphasis_open_underscore] = ACTIONS(3336), - [sym__emphasis_open_star] = ACTIONS(3336), - [sym__emphasis_open_underscore] = ACTIONS(3336), - [sym_inline_note_reference] = ACTIONS(3336), - [sym_html_element] = ACTIONS(3336), + [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(3766), - [sym_entity_reference] = ACTIONS(3766), - [sym_numeric_character_reference] = ACTIONS(3766), - [anon_sym_LBRACK] = ACTIONS(3766), - [anon_sym_BANG_LBRACK] = ACTIONS(3766), - [anon_sym_DOLLAR] = ACTIONS(3768), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3766), - [anon_sym_LBRACE] = ACTIONS(3766), - [aux_sym_pandoc_str_token1] = ACTIONS(3768), - [anon_sym_PIPE] = ACTIONS(3766), - [aux_sym__prose_punctuation_token1] = ACTIONS(3768), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3768), - [sym__line_ending] = ACTIONS(3766), - [sym__soft_line_ending] = ACTIONS(3766), - [sym__block_close] = ACTIONS(3766), - [sym__block_quote_start] = ACTIONS(3766), - [sym_atx_h1_marker] = ACTIONS(3766), - [sym_atx_h2_marker] = ACTIONS(3766), - [sym_atx_h3_marker] = ACTIONS(3766), - [sym_atx_h4_marker] = ACTIONS(3766), - [sym_atx_h5_marker] = ACTIONS(3766), - [sym_atx_h6_marker] = ACTIONS(3766), - [sym__thematic_break] = ACTIONS(3766), - [sym__list_marker_minus] = ACTIONS(3766), - [sym__list_marker_plus] = ACTIONS(3766), - [sym__list_marker_star] = ACTIONS(3766), - [sym__list_marker_parenthesis] = ACTIONS(3766), - [sym__list_marker_dot] = ACTIONS(3766), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3766), - [sym__list_marker_example] = ACTIONS(3766), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3766), - [sym__fenced_code_block_start_backtick] = ACTIONS(3766), - [sym_minus_metadata] = ACTIONS(3766), - [sym__pipe_table_start] = ACTIONS(3766), - [sym__fenced_div_start] = ACTIONS(3766), - [sym_ref_id_specifier] = ACTIONS(3766), - [sym__code_span_start] = ACTIONS(3766), - [sym__html_comment] = ACTIONS(3766), - [sym__autolink] = ACTIONS(3766), - [sym__highlight_span_start] = ACTIONS(3766), - [sym__insert_span_start] = ACTIONS(3766), - [sym__delete_span_start] = ACTIONS(3766), - [sym__edit_comment_span_start] = ACTIONS(3766), - [sym__single_quote_span_open] = ACTIONS(3766), - [sym__double_quote_span_open] = ACTIONS(3766), - [sym__shortcode_open_escaped] = ACTIONS(3766), - [sym__shortcode_open] = ACTIONS(3766), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3766), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3766), - [sym__cite_author_in_text] = ACTIONS(3766), - [sym__cite_suppress_author] = ACTIONS(3766), - [sym__strikeout_open] = ACTIONS(3766), - [sym__subscript_open] = ACTIONS(3766), - [sym__superscript_open] = ACTIONS(3766), - [sym__inline_note_start_token] = ACTIONS(3766), - [sym__strong_emphasis_open_star] = ACTIONS(3766), - [sym__strong_emphasis_open_underscore] = ACTIONS(3766), - [sym__emphasis_open_star] = ACTIONS(3766), - [sym__emphasis_open_underscore] = ACTIONS(3766), - [sym_inline_note_reference] = ACTIONS(3766), - [sym_html_element] = ACTIONS(3766), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3440), - [anon_sym_COLON] = ACTIONS(3440), - [sym_entity_reference] = ACTIONS(3440), - [sym_numeric_character_reference] = ACTIONS(3440), - [anon_sym_LBRACK] = ACTIONS(3440), - [anon_sym_BANG_LBRACK] = ACTIONS(3440), - [anon_sym_DOLLAR] = ACTIONS(3442), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3440), - [aux_sym_pandoc_str_token1] = ACTIONS(3442), - [anon_sym_PIPE] = ACTIONS(3440), - [aux_sym__prose_punctuation_token1] = ACTIONS(3442), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3442), - [sym__line_ending] = ACTIONS(3440), - [sym__soft_line_ending] = ACTIONS(3440), - [sym__block_quote_start] = ACTIONS(3440), - [sym_atx_h1_marker] = ACTIONS(3440), - [sym_atx_h2_marker] = ACTIONS(3440), - [sym_atx_h3_marker] = ACTIONS(3440), - [sym_atx_h4_marker] = ACTIONS(3440), - [sym_atx_h5_marker] = ACTIONS(3440), - [sym_atx_h6_marker] = ACTIONS(3440), - [sym__thematic_break] = ACTIONS(3440), - [sym__list_marker_minus] = ACTIONS(3440), - [sym__list_marker_plus] = ACTIONS(3440), - [sym__list_marker_star] = ACTIONS(3440), - [sym__list_marker_parenthesis] = ACTIONS(3440), - [sym__list_marker_dot] = ACTIONS(3440), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3440), - [sym__list_marker_example] = ACTIONS(3440), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3440), - [sym__fenced_code_block_start_backtick] = ACTIONS(3440), - [sym_minus_metadata] = ACTIONS(3440), - [sym__pipe_table_start] = ACTIONS(3440), - [sym__fenced_div_start] = ACTIONS(3440), - [sym_ref_id_specifier] = ACTIONS(3440), - [sym__code_span_start] = ACTIONS(3440), - [sym__html_comment] = ACTIONS(3440), - [sym__autolink] = ACTIONS(3440), - [sym__highlight_span_start] = ACTIONS(3440), - [sym__insert_span_start] = ACTIONS(3440), - [sym__delete_span_start] = ACTIONS(3440), - [sym__edit_comment_span_start] = ACTIONS(3440), - [sym__single_quote_span_open] = ACTIONS(3440), - [sym__double_quote_span_open] = ACTIONS(3440), - [sym__shortcode_open_escaped] = ACTIONS(3440), - [sym__shortcode_open] = ACTIONS(3440), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3440), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3440), - [sym__cite_author_in_text] = ACTIONS(3440), - [sym__cite_suppress_author] = ACTIONS(3440), - [sym__strikeout_open] = ACTIONS(3440), - [sym__subscript_open] = ACTIONS(3440), - [sym__superscript_open] = ACTIONS(3440), - [sym__inline_note_start_token] = ACTIONS(3440), - [sym__strong_emphasis_open_star] = ACTIONS(3440), - [sym__strong_emphasis_open_underscore] = ACTIONS(3440), - [sym__emphasis_open_star] = ACTIONS(3440), - [sym__emphasis_open_underscore] = ACTIONS(3440), - [sym_inline_note_reference] = ACTIONS(3440), - [sym_html_element] = ACTIONS(3440), + [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(3770), - [sym_entity_reference] = ACTIONS(3770), - [sym_numeric_character_reference] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(3770), - [anon_sym_BANG_LBRACK] = ACTIONS(3770), - [anon_sym_DOLLAR] = ACTIONS(3772), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3770), - [anon_sym_LBRACE] = ACTIONS(3770), - [aux_sym_pandoc_str_token1] = ACTIONS(3772), - [anon_sym_PIPE] = ACTIONS(3770), - [aux_sym__prose_punctuation_token1] = ACTIONS(3772), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3772), - [sym__line_ending] = ACTIONS(3770), - [sym__soft_line_ending] = ACTIONS(3770), - [sym__block_close] = ACTIONS(3770), - [sym__block_quote_start] = ACTIONS(3770), - [sym_atx_h1_marker] = ACTIONS(3770), - [sym_atx_h2_marker] = ACTIONS(3770), - [sym_atx_h3_marker] = ACTIONS(3770), - [sym_atx_h4_marker] = ACTIONS(3770), - [sym_atx_h5_marker] = ACTIONS(3770), - [sym_atx_h6_marker] = ACTIONS(3770), - [sym__thematic_break] = ACTIONS(3770), - [sym__list_marker_minus] = ACTIONS(3770), - [sym__list_marker_plus] = ACTIONS(3770), - [sym__list_marker_star] = ACTIONS(3770), - [sym__list_marker_parenthesis] = ACTIONS(3770), - [sym__list_marker_dot] = ACTIONS(3770), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_example] = ACTIONS(3770), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3770), - [sym__fenced_code_block_start_backtick] = ACTIONS(3770), - [sym_minus_metadata] = ACTIONS(3770), - [sym__pipe_table_start] = ACTIONS(3770), - [sym__fenced_div_start] = ACTIONS(3770), - [sym_ref_id_specifier] = ACTIONS(3770), - [sym__code_span_start] = ACTIONS(3770), - [sym__html_comment] = ACTIONS(3770), - [sym__autolink] = ACTIONS(3770), - [sym__highlight_span_start] = ACTIONS(3770), - [sym__insert_span_start] = ACTIONS(3770), - [sym__delete_span_start] = ACTIONS(3770), - [sym__edit_comment_span_start] = ACTIONS(3770), - [sym__single_quote_span_open] = ACTIONS(3770), - [sym__double_quote_span_open] = ACTIONS(3770), - [sym__shortcode_open_escaped] = ACTIONS(3770), - [sym__shortcode_open] = ACTIONS(3770), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3770), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3770), - [sym__cite_author_in_text] = ACTIONS(3770), - [sym__cite_suppress_author] = ACTIONS(3770), - [sym__strikeout_open] = ACTIONS(3770), - [sym__subscript_open] = ACTIONS(3770), - [sym__superscript_open] = ACTIONS(3770), - [sym__inline_note_start_token] = ACTIONS(3770), - [sym__strong_emphasis_open_star] = ACTIONS(3770), - [sym__strong_emphasis_open_underscore] = ACTIONS(3770), - [sym__emphasis_open_star] = ACTIONS(3770), - [sym__emphasis_open_underscore] = ACTIONS(3770), - [sym_inline_note_reference] = ACTIONS(3770), - [sym_html_element] = ACTIONS(3770), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3137), - [anon_sym_COLON] = ACTIONS(3137), - [sym_entity_reference] = ACTIONS(3137), - [sym_numeric_character_reference] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_BANG_LBRACK] = ACTIONS(3137), - [anon_sym_DOLLAR] = ACTIONS(3139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [aux_sym_pandoc_str_token1] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3137), - [aux_sym__prose_punctuation_token1] = ACTIONS(3139), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3139), - [sym__line_ending] = ACTIONS(3137), - [sym__soft_line_ending] = ACTIONS(3137), - [sym__block_quote_start] = ACTIONS(3137), - [sym_atx_h1_marker] = ACTIONS(3137), - [sym_atx_h2_marker] = ACTIONS(3137), - [sym_atx_h3_marker] = ACTIONS(3137), - [sym_atx_h4_marker] = ACTIONS(3137), - [sym_atx_h5_marker] = ACTIONS(3137), - [sym_atx_h6_marker] = ACTIONS(3137), - [sym__thematic_break] = ACTIONS(3137), - [sym__list_marker_minus] = ACTIONS(3137), - [sym__list_marker_plus] = ACTIONS(3137), - [sym__list_marker_star] = ACTIONS(3137), - [sym__list_marker_parenthesis] = ACTIONS(3137), - [sym__list_marker_dot] = ACTIONS(3137), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_example] = ACTIONS(3137), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3137), - [sym__fenced_code_block_start_backtick] = ACTIONS(3137), - [sym_minus_metadata] = ACTIONS(3137), - [sym__pipe_table_start] = ACTIONS(3137), - [sym__fenced_div_start] = ACTIONS(3137), - [sym_ref_id_specifier] = ACTIONS(3137), - [sym__code_span_start] = ACTIONS(3137), - [sym__html_comment] = ACTIONS(3137), - [sym__autolink] = ACTIONS(3137), - [sym__highlight_span_start] = ACTIONS(3137), - [sym__insert_span_start] = ACTIONS(3137), - [sym__delete_span_start] = ACTIONS(3137), - [sym__edit_comment_span_start] = ACTIONS(3137), - [sym__single_quote_span_open] = ACTIONS(3137), - [sym__double_quote_span_open] = ACTIONS(3137), - [sym__shortcode_open_escaped] = ACTIONS(3137), - [sym__shortcode_open] = ACTIONS(3137), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3137), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3137), - [sym__cite_author_in_text] = ACTIONS(3137), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3137), - [sym__subscript_open] = ACTIONS(3137), - [sym__superscript_open] = ACTIONS(3137), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3137), - [sym__strong_emphasis_open_underscore] = ACTIONS(3137), - [sym__emphasis_open_star] = ACTIONS(3137), - [sym__emphasis_open_underscore] = ACTIONS(3137), - [sym_inline_note_reference] = ACTIONS(3137), - [sym_html_element] = ACTIONS(3137), + [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(3312), - [anon_sym_COLON] = ACTIONS(3312), - [sym_entity_reference] = ACTIONS(3312), - [sym_numeric_character_reference] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_BANG_LBRACK] = ACTIONS(3312), - [anon_sym_DOLLAR] = ACTIONS(3314), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3312), - [aux_sym_pandoc_str_token1] = ACTIONS(3314), - [anon_sym_PIPE] = ACTIONS(3312), - [aux_sym__prose_punctuation_token1] = ACTIONS(3314), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3314), - [sym__line_ending] = ACTIONS(3312), - [sym__soft_line_ending] = ACTIONS(3312), - [sym__block_quote_start] = ACTIONS(3312), - [sym_atx_h1_marker] = ACTIONS(3312), - [sym_atx_h2_marker] = ACTIONS(3312), - [sym_atx_h3_marker] = ACTIONS(3312), - [sym_atx_h4_marker] = ACTIONS(3312), - [sym_atx_h5_marker] = ACTIONS(3312), - [sym_atx_h6_marker] = ACTIONS(3312), - [sym__thematic_break] = ACTIONS(3312), - [sym__list_marker_minus] = ACTIONS(3312), - [sym__list_marker_plus] = ACTIONS(3312), - [sym__list_marker_star] = ACTIONS(3312), - [sym__list_marker_parenthesis] = ACTIONS(3312), - [sym__list_marker_dot] = ACTIONS(3312), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_example] = ACTIONS(3312), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3312), - [sym__fenced_code_block_start_backtick] = ACTIONS(3312), - [sym_minus_metadata] = ACTIONS(3312), - [sym__pipe_table_start] = ACTIONS(3312), - [sym__fenced_div_start] = ACTIONS(3312), - [sym_ref_id_specifier] = ACTIONS(3312), - [sym__code_span_start] = ACTIONS(3312), - [sym__html_comment] = ACTIONS(3312), - [sym__autolink] = ACTIONS(3312), - [sym__highlight_span_start] = ACTIONS(3312), - [sym__insert_span_start] = ACTIONS(3312), - [sym__delete_span_start] = ACTIONS(3312), - [sym__edit_comment_span_start] = ACTIONS(3312), - [sym__single_quote_span_open] = ACTIONS(3312), - [sym__double_quote_span_open] = ACTIONS(3312), - [sym__shortcode_open_escaped] = ACTIONS(3312), - [sym__shortcode_open] = ACTIONS(3312), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3312), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3312), - [sym__cite_author_in_text] = ACTIONS(3312), - [sym__cite_suppress_author] = ACTIONS(3312), - [sym__strikeout_open] = ACTIONS(3312), - [sym__subscript_open] = ACTIONS(3312), - [sym__superscript_open] = ACTIONS(3312), - [sym__inline_note_start_token] = ACTIONS(3312), - [sym__strong_emphasis_open_star] = ACTIONS(3312), - [sym__strong_emphasis_open_underscore] = ACTIONS(3312), - [sym__emphasis_open_star] = ACTIONS(3312), - [sym__emphasis_open_underscore] = ACTIONS(3312), - [sym_inline_note_reference] = ACTIONS(3312), - [sym_html_element] = ACTIONS(3312), + [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(3448), - [anon_sym_COLON] = ACTIONS(3448), - [sym_entity_reference] = ACTIONS(3448), - [sym_numeric_character_reference] = ACTIONS(3448), - [anon_sym_LBRACK] = ACTIONS(3448), - [anon_sym_BANG_LBRACK] = ACTIONS(3448), - [anon_sym_DOLLAR] = ACTIONS(3450), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3448), - [anon_sym_LBRACE] = ACTIONS(3448), - [aux_sym_pandoc_str_token1] = ACTIONS(3450), - [anon_sym_PIPE] = ACTIONS(3448), - [aux_sym__prose_punctuation_token1] = ACTIONS(3450), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3450), - [sym__line_ending] = ACTIONS(3448), - [sym__soft_line_ending] = ACTIONS(3448), - [sym__block_quote_start] = ACTIONS(3448), - [sym_atx_h1_marker] = ACTIONS(3448), - [sym_atx_h2_marker] = ACTIONS(3448), - [sym_atx_h3_marker] = ACTIONS(3448), - [sym_atx_h4_marker] = ACTIONS(3448), - [sym_atx_h5_marker] = ACTIONS(3448), - [sym_atx_h6_marker] = ACTIONS(3448), - [sym__thematic_break] = ACTIONS(3448), - [sym__list_marker_minus] = ACTIONS(3448), - [sym__list_marker_plus] = ACTIONS(3448), - [sym__list_marker_star] = ACTIONS(3448), - [sym__list_marker_parenthesis] = ACTIONS(3448), - [sym__list_marker_dot] = ACTIONS(3448), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3448), - [sym__list_marker_example] = ACTIONS(3448), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3448), - [sym__fenced_code_block_start_backtick] = ACTIONS(3448), - [sym_minus_metadata] = ACTIONS(3448), - [sym__pipe_table_start] = ACTIONS(3448), - [sym__fenced_div_start] = ACTIONS(3448), - [sym_ref_id_specifier] = ACTIONS(3448), - [sym__code_span_start] = ACTIONS(3448), - [sym__html_comment] = ACTIONS(3448), - [sym__autolink] = ACTIONS(3448), - [sym__highlight_span_start] = ACTIONS(3448), - [sym__insert_span_start] = ACTIONS(3448), - [sym__delete_span_start] = ACTIONS(3448), - [sym__edit_comment_span_start] = ACTIONS(3448), - [sym__single_quote_span_open] = ACTIONS(3448), - [sym__double_quote_span_open] = ACTIONS(3448), - [sym__shortcode_open_escaped] = ACTIONS(3448), - [sym__shortcode_open] = ACTIONS(3448), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3448), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3448), - [sym__cite_author_in_text] = ACTIONS(3448), - [sym__cite_suppress_author] = ACTIONS(3448), - [sym__strikeout_open] = ACTIONS(3448), - [sym__subscript_open] = ACTIONS(3448), - [sym__superscript_open] = ACTIONS(3448), - [sym__inline_note_start_token] = ACTIONS(3448), - [sym__strong_emphasis_open_star] = ACTIONS(3448), - [sym__strong_emphasis_open_underscore] = ACTIONS(3448), - [sym__emphasis_open_star] = ACTIONS(3448), - [sym__emphasis_open_underscore] = ACTIONS(3448), - [sym_inline_note_reference] = ACTIONS(3448), - [sym_html_element] = ACTIONS(3448), + [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)] = { - [anon_sym_COLON] = ACTIONS(3780), - [sym_entity_reference] = ACTIONS(3780), - [sym_numeric_character_reference] = ACTIONS(3780), - [anon_sym_LBRACK] = ACTIONS(3780), - [anon_sym_BANG_LBRACK] = ACTIONS(3780), - [anon_sym_DOLLAR] = ACTIONS(3782), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3780), - [anon_sym_LBRACE] = ACTIONS(3780), - [aux_sym_pandoc_str_token1] = ACTIONS(3782), - [anon_sym_PIPE] = ACTIONS(3780), - [aux_sym__prose_punctuation_token1] = ACTIONS(3782), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3782), - [sym__line_ending] = ACTIONS(3780), - [sym__soft_line_ending] = ACTIONS(3780), - [sym__block_close] = ACTIONS(3780), - [sym__block_quote_start] = ACTIONS(3780), - [sym_atx_h1_marker] = ACTIONS(3780), - [sym_atx_h2_marker] = ACTIONS(3780), - [sym_atx_h3_marker] = ACTIONS(3780), - [sym_atx_h4_marker] = ACTIONS(3780), - [sym_atx_h5_marker] = ACTIONS(3780), - [sym_atx_h6_marker] = ACTIONS(3780), - [sym__thematic_break] = ACTIONS(3780), - [sym__list_marker_minus] = ACTIONS(3780), - [sym__list_marker_plus] = ACTIONS(3780), - [sym__list_marker_star] = ACTIONS(3780), - [sym__list_marker_parenthesis] = ACTIONS(3780), - [sym__list_marker_dot] = ACTIONS(3780), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3780), - [sym__list_marker_example] = ACTIONS(3780), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3780), - [sym__fenced_code_block_start_backtick] = ACTIONS(3780), - [sym_minus_metadata] = ACTIONS(3780), - [sym__pipe_table_start] = ACTIONS(3780), - [sym__fenced_div_start] = ACTIONS(3780), - [sym_ref_id_specifier] = ACTIONS(3780), - [sym__code_span_start] = ACTIONS(3780), - [sym__html_comment] = ACTIONS(3780), - [sym__autolink] = ACTIONS(3780), - [sym__highlight_span_start] = ACTIONS(3780), - [sym__insert_span_start] = ACTIONS(3780), - [sym__delete_span_start] = ACTIONS(3780), - [sym__edit_comment_span_start] = ACTIONS(3780), - [sym__single_quote_span_open] = ACTIONS(3780), - [sym__double_quote_span_open] = ACTIONS(3780), - [sym__shortcode_open_escaped] = ACTIONS(3780), - [sym__shortcode_open] = ACTIONS(3780), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3780), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3780), - [sym__cite_author_in_text] = ACTIONS(3780), - [sym__cite_suppress_author] = ACTIONS(3780), - [sym__strikeout_open] = ACTIONS(3780), - [sym__subscript_open] = ACTIONS(3780), - [sym__superscript_open] = ACTIONS(3780), - [sym__inline_note_start_token] = ACTIONS(3780), - [sym__strong_emphasis_open_star] = ACTIONS(3780), - [sym__strong_emphasis_open_underscore] = ACTIONS(3780), - [sym__emphasis_open_star] = ACTIONS(3780), - [sym__emphasis_open_underscore] = ACTIONS(3780), - [sym_inline_note_reference] = ACTIONS(3780), - [sym_html_element] = ACTIONS(3780), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(2979), - [anon_sym_COLON] = ACTIONS(2979), - [sym_entity_reference] = ACTIONS(2979), - [sym_numeric_character_reference] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_BANG_LBRACK] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2981), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2979), - [aux_sym_pandoc_str_token1] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2979), - [aux_sym__prose_punctuation_token1] = ACTIONS(2981), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2981), - [sym__line_ending] = ACTIONS(2979), - [sym__soft_line_ending] = ACTIONS(2979), - [sym__block_quote_start] = ACTIONS(2979), - [sym_atx_h1_marker] = ACTIONS(2979), - [sym_atx_h2_marker] = ACTIONS(2979), - [sym_atx_h3_marker] = ACTIONS(2979), - [sym_atx_h4_marker] = ACTIONS(2979), - [sym_atx_h5_marker] = ACTIONS(2979), - [sym_atx_h6_marker] = ACTIONS(2979), - [sym__thematic_break] = ACTIONS(2979), - [sym__list_marker_minus] = ACTIONS(2979), - [sym__list_marker_plus] = ACTIONS(2979), - [sym__list_marker_star] = ACTIONS(2979), - [sym__list_marker_parenthesis] = ACTIONS(2979), - [sym__list_marker_dot] = ACTIONS(2979), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_example] = ACTIONS(2979), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2979), - [sym__fenced_code_block_start_backtick] = ACTIONS(2979), - [sym_minus_metadata] = ACTIONS(2979), - [sym__pipe_table_start] = ACTIONS(2979), - [sym__fenced_div_start] = ACTIONS(2979), - [sym_ref_id_specifier] = ACTIONS(2979), - [sym__code_span_start] = ACTIONS(2979), - [sym__html_comment] = ACTIONS(2979), - [sym__autolink] = ACTIONS(2979), - [sym__highlight_span_start] = ACTIONS(2979), - [sym__insert_span_start] = ACTIONS(2979), - [sym__delete_span_start] = ACTIONS(2979), - [sym__edit_comment_span_start] = ACTIONS(2979), - [sym__single_quote_span_open] = ACTIONS(2979), - [sym__double_quote_span_open] = ACTIONS(2979), - [sym__shortcode_open_escaped] = ACTIONS(2979), - [sym__shortcode_open] = ACTIONS(2979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2979), - [sym__cite_author_in_text] = ACTIONS(2979), - [sym__cite_suppress_author] = ACTIONS(2979), - [sym__strikeout_open] = ACTIONS(2979), - [sym__subscript_open] = ACTIONS(2979), - [sym__superscript_open] = ACTIONS(2979), - [sym__inline_note_start_token] = ACTIONS(2979), - [sym__strong_emphasis_open_star] = ACTIONS(2979), - [sym__strong_emphasis_open_underscore] = ACTIONS(2979), - [sym__emphasis_open_star] = ACTIONS(2979), - [sym__emphasis_open_underscore] = ACTIONS(2979), - [sym_inline_note_reference] = ACTIONS(2979), - [sym_html_element] = ACTIONS(2979), + [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(3790), - [sym_entity_reference] = ACTIONS(3790), - [sym_numeric_character_reference] = ACTIONS(3790), - [anon_sym_LBRACK] = ACTIONS(3790), - [anon_sym_BANG_LBRACK] = ACTIONS(3790), - [anon_sym_DOLLAR] = ACTIONS(3792), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3790), - [anon_sym_LBRACE] = ACTIONS(3790), - [aux_sym_pandoc_str_token1] = ACTIONS(3792), - [anon_sym_PIPE] = ACTIONS(3790), - [aux_sym__prose_punctuation_token1] = ACTIONS(3792), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3792), - [sym__line_ending] = ACTIONS(3790), - [sym__soft_line_ending] = ACTIONS(3790), - [sym__block_close] = ACTIONS(3790), - [sym__block_quote_start] = ACTIONS(3790), - [sym_atx_h1_marker] = ACTIONS(3790), - [sym_atx_h2_marker] = ACTIONS(3790), - [sym_atx_h3_marker] = ACTIONS(3790), - [sym_atx_h4_marker] = ACTIONS(3790), - [sym_atx_h5_marker] = ACTIONS(3790), - [sym_atx_h6_marker] = ACTIONS(3790), - [sym__thematic_break] = ACTIONS(3790), - [sym__list_marker_minus] = ACTIONS(3790), - [sym__list_marker_plus] = ACTIONS(3790), - [sym__list_marker_star] = ACTIONS(3790), - [sym__list_marker_parenthesis] = ACTIONS(3790), - [sym__list_marker_dot] = ACTIONS(3790), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3790), - [sym__list_marker_example] = ACTIONS(3790), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3790), - [sym__fenced_code_block_start_backtick] = ACTIONS(3790), - [sym_minus_metadata] = ACTIONS(3790), - [sym__pipe_table_start] = ACTIONS(3790), - [sym__fenced_div_start] = ACTIONS(3790), - [sym_ref_id_specifier] = ACTIONS(3790), - [sym__code_span_start] = ACTIONS(3790), - [sym__html_comment] = ACTIONS(3790), - [sym__autolink] = ACTIONS(3790), - [sym__highlight_span_start] = ACTIONS(3790), - [sym__insert_span_start] = ACTIONS(3790), - [sym__delete_span_start] = ACTIONS(3790), - [sym__edit_comment_span_start] = ACTIONS(3790), - [sym__single_quote_span_open] = ACTIONS(3790), - [sym__double_quote_span_open] = ACTIONS(3790), - [sym__shortcode_open_escaped] = ACTIONS(3790), - [sym__shortcode_open] = ACTIONS(3790), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3790), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3790), - [sym__cite_author_in_text] = ACTIONS(3790), - [sym__cite_suppress_author] = ACTIONS(3790), - [sym__strikeout_open] = ACTIONS(3790), - [sym__subscript_open] = ACTIONS(3790), - [sym__superscript_open] = ACTIONS(3790), - [sym__inline_note_start_token] = ACTIONS(3790), - [sym__strong_emphasis_open_star] = ACTIONS(3790), - [sym__strong_emphasis_open_underscore] = ACTIONS(3790), - [sym__emphasis_open_star] = ACTIONS(3790), - [sym__emphasis_open_underscore] = ACTIONS(3790), - [sym_inline_note_reference] = ACTIONS(3790), - [sym_html_element] = ACTIONS(3790), + [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)] = { - [sym_pandoc_span] = STATE(559), - [sym_pandoc_image] = STATE(559), - [sym_pandoc_math] = STATE(559), - [sym_pandoc_display_math] = STATE(559), - [sym_pandoc_code_span] = STATE(559), - [sym_pandoc_single_quote] = STATE(559), - [sym_pandoc_double_quote] = STATE(559), - [sym_insert] = STATE(559), - [sym_delete] = STATE(559), - [sym_edit_comment] = STATE(559), - [sym_highlight] = STATE(559), - [sym__pandoc_attr_specifier] = STATE(559), - [sym__inline_element] = STATE(559), - [sym_shortcode_escaped] = STATE(559), - [sym_shortcode] = STATE(559), - [sym_citation] = STATE(559), - [sym_inline_note] = STATE(559), - [sym_pandoc_superscript] = STATE(559), - [sym_pandoc_subscript] = STATE(559), - [sym_pandoc_strikeout] = STATE(559), - [sym_pandoc_emph] = STATE(559), - [sym_pandoc_strong] = STATE(559), - [sym_pandoc_str] = STATE(559), - [sym__prose_punctuation] = STATE(559), - [sym_pandoc_line_break] = STATE(559), - [aux_sym__line_repeat1] = STATE(559), - [sym_entity_reference] = ACTIONS(4048), - [sym_numeric_character_reference] = ACTIONS(4048), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_BANG_LBRACK] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4054), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4056), - [anon_sym_LBRACE] = ACTIONS(4058), - [aux_sym_pandoc_str_token1] = ACTIONS(4060), - [anon_sym_PIPE] = ACTIONS(4062), - [aux_sym__prose_punctuation_token1] = ACTIONS(4064), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4066), - [sym__whitespace] = ACTIONS(4068), - [sym__soft_line_ending] = ACTIONS(3460), - [sym__code_span_start] = ACTIONS(4070), - [sym__html_comment] = ACTIONS(4048), - [sym__autolink] = ACTIONS(4048), - [sym__highlight_span_start] = ACTIONS(4072), - [sym__insert_span_start] = ACTIONS(4074), - [sym__delete_span_start] = ACTIONS(4076), - [sym__edit_comment_span_start] = ACTIONS(4078), - [sym__single_quote_span_open] = ACTIONS(4080), - [sym__double_quote_span_open] = ACTIONS(4082), - [sym__double_quote_span_close] = ACTIONS(3460), - [sym__shortcode_open_escaped] = ACTIONS(4084), - [sym__shortcode_open] = ACTIONS(4086), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4088), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4090), - [sym__cite_author_in_text] = ACTIONS(4092), - [sym__cite_suppress_author] = ACTIONS(4094), - [sym__strikeout_open] = ACTIONS(4096), - [sym__subscript_open] = ACTIONS(4098), - [sym__superscript_open] = ACTIONS(4100), - [sym__inline_note_start_token] = ACTIONS(4102), - [sym__strong_emphasis_open_star] = ACTIONS(4104), - [sym__strong_emphasis_open_underscore] = ACTIONS(4106), - [sym__emphasis_open_star] = ACTIONS(4108), - [sym__emphasis_open_underscore] = ACTIONS(4110), - [sym_inline_note_reference] = ACTIONS(4048), - [sym_html_element] = ACTIONS(4048), + [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(3818), - [sym_entity_reference] = ACTIONS(3818), - [sym_numeric_character_reference] = ACTIONS(3818), - [anon_sym_LBRACK] = ACTIONS(3818), - [anon_sym_BANG_LBRACK] = ACTIONS(3818), - [anon_sym_DOLLAR] = ACTIONS(3820), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3818), - [anon_sym_LBRACE] = ACTIONS(3818), - [aux_sym_pandoc_str_token1] = ACTIONS(3820), - [anon_sym_PIPE] = ACTIONS(3818), - [aux_sym__prose_punctuation_token1] = ACTIONS(3820), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3820), - [sym__line_ending] = ACTIONS(3818), - [sym__soft_line_ending] = ACTIONS(3818), - [sym__block_close] = ACTIONS(3818), - [sym__block_quote_start] = ACTIONS(3818), - [sym_atx_h1_marker] = ACTIONS(3818), - [sym_atx_h2_marker] = ACTIONS(3818), - [sym_atx_h3_marker] = ACTIONS(3818), - [sym_atx_h4_marker] = ACTIONS(3818), - [sym_atx_h5_marker] = ACTIONS(3818), - [sym_atx_h6_marker] = ACTIONS(3818), - [sym__thematic_break] = ACTIONS(3818), - [sym__list_marker_minus] = ACTIONS(3818), - [sym__list_marker_plus] = ACTIONS(3818), - [sym__list_marker_star] = ACTIONS(3818), - [sym__list_marker_parenthesis] = ACTIONS(3818), - [sym__list_marker_dot] = ACTIONS(3818), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3818), - [sym__list_marker_example] = ACTIONS(3818), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3818), - [sym__fenced_code_block_start_backtick] = ACTIONS(3818), - [sym_minus_metadata] = ACTIONS(3818), - [sym__pipe_table_start] = ACTIONS(3818), - [sym__fenced_div_start] = ACTIONS(3818), - [sym_ref_id_specifier] = ACTIONS(3818), - [sym__code_span_start] = ACTIONS(3818), - [sym__html_comment] = ACTIONS(3818), - [sym__autolink] = ACTIONS(3818), - [sym__highlight_span_start] = ACTIONS(3818), - [sym__insert_span_start] = ACTIONS(3818), - [sym__delete_span_start] = ACTIONS(3818), - [sym__edit_comment_span_start] = ACTIONS(3818), - [sym__single_quote_span_open] = ACTIONS(3818), - [sym__double_quote_span_open] = ACTIONS(3818), - [sym__shortcode_open_escaped] = ACTIONS(3818), - [sym__shortcode_open] = ACTIONS(3818), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3818), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3818), - [sym__cite_author_in_text] = ACTIONS(3818), - [sym__cite_suppress_author] = ACTIONS(3818), - [sym__strikeout_open] = ACTIONS(3818), - [sym__subscript_open] = ACTIONS(3818), - [sym__superscript_open] = ACTIONS(3818), - [sym__inline_note_start_token] = ACTIONS(3818), - [sym__strong_emphasis_open_star] = ACTIONS(3818), - [sym__strong_emphasis_open_underscore] = ACTIONS(3818), - [sym__emphasis_open_star] = ACTIONS(3818), - [sym__emphasis_open_underscore] = ACTIONS(3818), - [sym_inline_note_reference] = ACTIONS(3818), - [sym_html_element] = ACTIONS(3818), + [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)] = { - [sym_pandoc_span] = STATE(560), - [sym_pandoc_image] = STATE(560), - [sym_pandoc_math] = STATE(560), - [sym_pandoc_display_math] = STATE(560), - [sym_pandoc_code_span] = STATE(560), - [sym_pandoc_single_quote] = STATE(560), - [sym_pandoc_double_quote] = STATE(560), - [sym_insert] = STATE(560), - [sym_delete] = STATE(560), - [sym_edit_comment] = STATE(560), - [sym_highlight] = STATE(560), - [sym__pandoc_attr_specifier] = STATE(560), - [sym__inline_element] = STATE(560), - [sym_shortcode_escaped] = STATE(560), - [sym_shortcode] = STATE(560), - [sym_citation] = STATE(560), - [sym_inline_note] = STATE(560), - [sym_pandoc_superscript] = STATE(560), - [sym_pandoc_subscript] = STATE(560), - [sym_pandoc_strikeout] = STATE(560), - [sym_pandoc_emph] = STATE(560), - [sym_pandoc_strong] = STATE(560), - [sym_pandoc_str] = STATE(560), - [sym__prose_punctuation] = STATE(560), - [sym_pandoc_line_break] = STATE(560), - [aux_sym__line_repeat1] = STATE(560), - [sym_entity_reference] = ACTIONS(4112), - [sym_numeric_character_reference] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4050), - [anon_sym_BANG_LBRACK] = ACTIONS(4052), - [anon_sym_DOLLAR] = ACTIONS(4054), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4056), - [anon_sym_LBRACE] = ACTIONS(4058), - [aux_sym_pandoc_str_token1] = ACTIONS(4060), - [anon_sym_PIPE] = ACTIONS(4062), - [aux_sym__prose_punctuation_token1] = ACTIONS(4114), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4066), - [sym__whitespace] = ACTIONS(4068), - [sym__soft_line_ending] = ACTIONS(3470), - [sym__code_span_start] = ACTIONS(4070), - [sym__html_comment] = ACTIONS(4112), - [sym__autolink] = ACTIONS(4112), - [sym__highlight_span_start] = ACTIONS(4072), - [sym__insert_span_start] = ACTIONS(4074), - [sym__delete_span_start] = ACTIONS(4076), - [sym__edit_comment_span_start] = ACTIONS(4078), - [sym__single_quote_span_open] = ACTIONS(4080), - [sym__double_quote_span_open] = ACTIONS(4082), - [sym__double_quote_span_close] = ACTIONS(3470), - [sym__shortcode_open_escaped] = ACTIONS(4084), - [sym__shortcode_open] = ACTIONS(4086), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4088), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4090), - [sym__cite_author_in_text] = ACTIONS(4092), - [sym__cite_suppress_author] = ACTIONS(4094), - [sym__strikeout_open] = ACTIONS(4096), - [sym__subscript_open] = ACTIONS(4098), - [sym__superscript_open] = ACTIONS(4100), - [sym__inline_note_start_token] = ACTIONS(4102), - [sym__strong_emphasis_open_star] = ACTIONS(4104), - [sym__strong_emphasis_open_underscore] = ACTIONS(4106), - [sym__emphasis_open_star] = ACTIONS(4108), - [sym__emphasis_open_underscore] = ACTIONS(4110), - [sym_inline_note_reference] = ACTIONS(4112), - [sym_html_element] = ACTIONS(4112), + [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)] = { - [sym_pandoc_span] = STATE(560), - [sym_pandoc_image] = STATE(560), - [sym_pandoc_math] = STATE(560), - [sym_pandoc_display_math] = STATE(560), - [sym_pandoc_code_span] = STATE(560), - [sym_pandoc_single_quote] = STATE(560), - [sym_pandoc_double_quote] = STATE(560), - [sym_insert] = STATE(560), - [sym_delete] = STATE(560), - [sym_edit_comment] = STATE(560), - [sym_highlight] = STATE(560), - [sym__pandoc_attr_specifier] = STATE(560), - [sym__inline_element] = STATE(560), - [sym_shortcode_escaped] = STATE(560), - [sym_shortcode] = STATE(560), - [sym_citation] = STATE(560), - [sym_inline_note] = STATE(560), - [sym_pandoc_superscript] = STATE(560), - [sym_pandoc_subscript] = STATE(560), - [sym_pandoc_strikeout] = STATE(560), - [sym_pandoc_emph] = STATE(560), - [sym_pandoc_strong] = STATE(560), - [sym_pandoc_str] = STATE(560), - [sym__prose_punctuation] = STATE(560), - [sym_pandoc_line_break] = STATE(560), - [aux_sym__line_repeat1] = STATE(560), - [sym_entity_reference] = ACTIONS(4116), - [sym_numeric_character_reference] = ACTIONS(4116), - [anon_sym_LBRACK] = ACTIONS(4119), - [anon_sym_BANG_LBRACK] = ACTIONS(4122), - [anon_sym_DOLLAR] = ACTIONS(4125), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4128), - [anon_sym_LBRACE] = ACTIONS(4131), - [aux_sym_pandoc_str_token1] = ACTIONS(4134), - [anon_sym_PIPE] = ACTIONS(4137), - [aux_sym__prose_punctuation_token1] = ACTIONS(4140), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4143), - [sym__whitespace] = ACTIONS(4146), - [sym__soft_line_ending] = ACTIONS(3485), - [sym__code_span_start] = ACTIONS(4149), - [sym__html_comment] = ACTIONS(4116), - [sym__autolink] = ACTIONS(4116), - [sym__highlight_span_start] = ACTIONS(4152), - [sym__insert_span_start] = ACTIONS(4155), - [sym__delete_span_start] = ACTIONS(4158), - [sym__edit_comment_span_start] = ACTIONS(4161), - [sym__single_quote_span_open] = ACTIONS(4164), - [sym__double_quote_span_open] = ACTIONS(4167), - [sym__double_quote_span_close] = ACTIONS(3485), - [sym__shortcode_open_escaped] = ACTIONS(4170), - [sym__shortcode_open] = ACTIONS(4173), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4176), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4179), - [sym__cite_author_in_text] = ACTIONS(4182), - [sym__cite_suppress_author] = ACTIONS(4185), - [sym__strikeout_open] = ACTIONS(4188), - [sym__subscript_open] = ACTIONS(4191), - [sym__superscript_open] = ACTIONS(4194), - [sym__inline_note_start_token] = ACTIONS(4197), - [sym__strong_emphasis_open_star] = ACTIONS(4200), - [sym__strong_emphasis_open_underscore] = ACTIONS(4203), - [sym__emphasis_open_star] = ACTIONS(4206), - [sym__emphasis_open_underscore] = ACTIONS(4209), - [sym_inline_note_reference] = ACTIONS(4116), - [sym_html_element] = ACTIONS(4116), + [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(3614), - [anon_sym_COLON] = ACTIONS(3614), - [sym_entity_reference] = ACTIONS(3614), - [sym_numeric_character_reference] = ACTIONS(3614), - [anon_sym_LBRACK] = ACTIONS(3614), - [anon_sym_BANG_LBRACK] = ACTIONS(3614), - [anon_sym_DOLLAR] = ACTIONS(3616), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3614), - [anon_sym_LBRACE] = ACTIONS(3614), - [aux_sym_pandoc_str_token1] = ACTIONS(3616), - [anon_sym_PIPE] = ACTIONS(3614), - [aux_sym__prose_punctuation_token1] = ACTIONS(3616), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3616), - [sym__line_ending] = ACTIONS(3614), - [sym__soft_line_ending] = ACTIONS(3614), - [sym__block_quote_start] = ACTIONS(3614), - [sym_atx_h1_marker] = ACTIONS(3614), - [sym_atx_h2_marker] = ACTIONS(3614), - [sym_atx_h3_marker] = ACTIONS(3614), - [sym_atx_h4_marker] = ACTIONS(3614), - [sym_atx_h5_marker] = ACTIONS(3614), - [sym_atx_h6_marker] = ACTIONS(3614), - [sym__thematic_break] = ACTIONS(3614), - [sym__list_marker_minus] = ACTIONS(3614), - [sym__list_marker_plus] = ACTIONS(3614), - [sym__list_marker_star] = ACTIONS(3614), - [sym__list_marker_parenthesis] = ACTIONS(3614), - [sym__list_marker_dot] = ACTIONS(3614), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3614), - [sym__list_marker_example] = ACTIONS(3614), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3614), - [sym__fenced_code_block_start_backtick] = ACTIONS(3614), - [sym_minus_metadata] = ACTIONS(3614), - [sym__pipe_table_start] = ACTIONS(3614), - [sym__fenced_div_start] = ACTIONS(3614), - [sym_ref_id_specifier] = ACTIONS(3614), - [sym__code_span_start] = ACTIONS(3614), - [sym__html_comment] = ACTIONS(3614), - [sym__autolink] = ACTIONS(3614), - [sym__highlight_span_start] = ACTIONS(3614), - [sym__insert_span_start] = ACTIONS(3614), - [sym__delete_span_start] = ACTIONS(3614), - [sym__edit_comment_span_start] = ACTIONS(3614), - [sym__single_quote_span_open] = ACTIONS(3614), - [sym__double_quote_span_open] = ACTIONS(3614), - [sym__shortcode_open_escaped] = ACTIONS(3614), - [sym__shortcode_open] = ACTIONS(3614), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3614), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3614), - [sym__cite_author_in_text] = ACTIONS(3614), - [sym__cite_suppress_author] = ACTIONS(3614), - [sym__strikeout_open] = ACTIONS(3614), - [sym__subscript_open] = ACTIONS(3614), - [sym__superscript_open] = ACTIONS(3614), - [sym__inline_note_start_token] = ACTIONS(3614), - [sym__strong_emphasis_open_star] = ACTIONS(3614), - [sym__strong_emphasis_open_underscore] = ACTIONS(3614), - [sym__emphasis_open_star] = ACTIONS(3614), - [sym__emphasis_open_underscore] = ACTIONS(3614), - [sym_inline_note_reference] = ACTIONS(3614), - [sym_html_element] = ACTIONS(3614), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3846), - [anon_sym_COLON] = ACTIONS(3846), - [sym_entity_reference] = ACTIONS(3846), - [sym_numeric_character_reference] = ACTIONS(3846), - [anon_sym_LBRACK] = ACTIONS(3846), - [anon_sym_BANG_LBRACK] = ACTIONS(3846), - [anon_sym_DOLLAR] = ACTIONS(3848), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3846), - [anon_sym_LBRACE] = ACTIONS(3846), - [aux_sym_pandoc_str_token1] = ACTIONS(3848), - [anon_sym_PIPE] = ACTIONS(3846), - [aux_sym__prose_punctuation_token1] = ACTIONS(3848), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3848), - [sym__line_ending] = ACTIONS(3846), - [sym__soft_line_ending] = ACTIONS(3846), - [sym__block_quote_start] = ACTIONS(3846), - [sym_atx_h1_marker] = ACTIONS(3846), - [sym_atx_h2_marker] = ACTIONS(3846), - [sym_atx_h3_marker] = ACTIONS(3846), - [sym_atx_h4_marker] = ACTIONS(3846), - [sym_atx_h5_marker] = ACTIONS(3846), - [sym_atx_h6_marker] = ACTIONS(3846), - [sym__thematic_break] = ACTIONS(3846), - [sym__list_marker_minus] = ACTIONS(3846), - [sym__list_marker_plus] = ACTIONS(3846), - [sym__list_marker_star] = ACTIONS(3846), - [sym__list_marker_parenthesis] = ACTIONS(3846), - [sym__list_marker_dot] = ACTIONS(3846), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3846), - [sym__list_marker_example] = ACTIONS(3846), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3846), - [sym__fenced_code_block_start_backtick] = ACTIONS(3846), - [sym_minus_metadata] = ACTIONS(3846), - [sym__pipe_table_start] = ACTIONS(3846), - [sym__fenced_div_start] = ACTIONS(3846), - [sym_ref_id_specifier] = ACTIONS(3846), - [sym__code_span_start] = ACTIONS(3846), - [sym__html_comment] = ACTIONS(3846), - [sym__autolink] = ACTIONS(3846), - [sym__highlight_span_start] = ACTIONS(3846), - [sym__insert_span_start] = ACTIONS(3846), - [sym__delete_span_start] = ACTIONS(3846), - [sym__edit_comment_span_start] = ACTIONS(3846), - [sym__single_quote_span_open] = ACTIONS(3846), - [sym__double_quote_span_open] = ACTIONS(3846), - [sym__shortcode_open_escaped] = ACTIONS(3846), - [sym__shortcode_open] = ACTIONS(3846), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3846), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3846), - [sym__cite_author_in_text] = ACTIONS(3846), - [sym__cite_suppress_author] = ACTIONS(3846), - [sym__strikeout_open] = ACTIONS(3846), - [sym__subscript_open] = ACTIONS(3846), - [sym__superscript_open] = ACTIONS(3846), - [sym__inline_note_start_token] = ACTIONS(3846), - [sym__strong_emphasis_open_star] = ACTIONS(3846), - [sym__strong_emphasis_open_underscore] = ACTIONS(3846), - [sym__emphasis_open_star] = ACTIONS(3846), - [sym__emphasis_open_underscore] = ACTIONS(3846), - [sym_inline_note_reference] = ACTIONS(3846), - [sym_html_element] = ACTIONS(3846), + [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)] = { - [anon_sym_COLON] = ACTIONS(3828), - [sym_entity_reference] = ACTIONS(3828), - [sym_numeric_character_reference] = ACTIONS(3828), - [anon_sym_LBRACK] = ACTIONS(3828), - [anon_sym_BANG_LBRACK] = ACTIONS(3828), - [anon_sym_DOLLAR] = ACTIONS(3830), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3828), - [aux_sym_pandoc_str_token1] = ACTIONS(3830), - [anon_sym_PIPE] = ACTIONS(3828), - [aux_sym__prose_punctuation_token1] = ACTIONS(3830), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3830), - [sym__line_ending] = ACTIONS(3828), - [sym__soft_line_ending] = ACTIONS(3828), - [sym__block_close] = ACTIONS(3828), - [sym__block_quote_start] = ACTIONS(3828), - [sym_atx_h1_marker] = ACTIONS(3828), - [sym_atx_h2_marker] = ACTIONS(3828), - [sym_atx_h3_marker] = ACTIONS(3828), - [sym_atx_h4_marker] = ACTIONS(3828), - [sym_atx_h5_marker] = ACTIONS(3828), - [sym_atx_h6_marker] = ACTIONS(3828), - [sym__thematic_break] = ACTIONS(3828), - [sym__list_marker_minus] = ACTIONS(3828), - [sym__list_marker_plus] = ACTIONS(3828), - [sym__list_marker_star] = ACTIONS(3828), - [sym__list_marker_parenthesis] = ACTIONS(3828), - [sym__list_marker_dot] = ACTIONS(3828), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3828), - [sym__list_marker_example] = ACTIONS(3828), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3828), - [sym__fenced_code_block_start_backtick] = ACTIONS(3828), - [sym_minus_metadata] = ACTIONS(3828), - [sym__pipe_table_start] = ACTIONS(3828), - [sym__fenced_div_start] = ACTIONS(3828), - [sym_ref_id_specifier] = ACTIONS(3828), - [sym__code_span_start] = ACTIONS(3828), - [sym__html_comment] = ACTIONS(3828), - [sym__autolink] = ACTIONS(3828), - [sym__highlight_span_start] = ACTIONS(3828), - [sym__insert_span_start] = ACTIONS(3828), - [sym__delete_span_start] = ACTIONS(3828), - [sym__edit_comment_span_start] = ACTIONS(3828), - [sym__single_quote_span_open] = ACTIONS(3828), - [sym__double_quote_span_open] = ACTIONS(3828), - [sym__shortcode_open_escaped] = ACTIONS(3828), - [sym__shortcode_open] = ACTIONS(3828), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3828), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3828), - [sym__cite_author_in_text] = ACTIONS(3828), - [sym__cite_suppress_author] = ACTIONS(3828), - [sym__strikeout_open] = ACTIONS(3828), - [sym__subscript_open] = ACTIONS(3828), - [sym__superscript_open] = ACTIONS(3828), - [sym__inline_note_start_token] = ACTIONS(3828), - [sym__strong_emphasis_open_star] = ACTIONS(3828), - [sym__strong_emphasis_open_underscore] = ACTIONS(3828), - [sym__emphasis_open_star] = ACTIONS(3828), - [sym__emphasis_open_underscore] = ACTIONS(3828), - [sym_inline_note_reference] = ACTIONS(3828), - [sym_html_element] = ACTIONS(3828), + [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)] = { - [sym_pandoc_span] = STATE(602), - [sym_pandoc_image] = STATE(602), - [sym_pandoc_math] = STATE(602), - [sym_pandoc_display_math] = STATE(602), - [sym_pandoc_code_span] = STATE(602), - [sym_pandoc_single_quote] = STATE(602), - [sym_pandoc_double_quote] = STATE(602), - [sym_insert] = STATE(602), - [sym_delete] = STATE(602), - [sym_edit_comment] = STATE(602), - [sym_highlight] = STATE(602), - [sym__pandoc_attr_specifier] = STATE(602), - [sym__inline_element] = STATE(602), - [sym_shortcode_escaped] = STATE(602), - [sym_shortcode] = STATE(602), - [sym_citation] = STATE(602), - [sym_inline_note] = STATE(602), - [sym_pandoc_superscript] = STATE(602), - [sym_pandoc_subscript] = STATE(602), - [sym_pandoc_strikeout] = STATE(602), - [sym_pandoc_emph] = STATE(602), - [sym_pandoc_strong] = STATE(602), - [sym_pandoc_str] = STATE(602), - [sym__prose_punctuation] = STATE(602), - [sym_pandoc_line_break] = STATE(602), - [aux_sym__line_repeat1] = STATE(602), - [sym_entity_reference] = ACTIONS(4212), - [sym_numeric_character_reference] = ACTIONS(4212), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_BANG_LBRACK] = ACTIONS(2485), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2489), - [aux_sym_insert_token1] = ACTIONS(3470), - [anon_sym_LBRACE] = ACTIONS(2493), - [aux_sym_pandoc_str_token1] = ACTIONS(2495), - [anon_sym_PIPE] = ACTIONS(2497), - [aux_sym__prose_punctuation_token1] = ACTIONS(4214), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2501), - [sym__whitespace] = ACTIONS(3978), - [sym__soft_line_ending] = ACTIONS(3470), - [sym__code_span_start] = ACTIONS(2507), - [sym__html_comment] = ACTIONS(4212), - [sym__autolink] = ACTIONS(4212), - [sym__highlight_span_start] = ACTIONS(2509), - [sym__insert_span_start] = ACTIONS(2511), - [sym__delete_span_start] = ACTIONS(2513), - [sym__edit_comment_span_start] = ACTIONS(2515), - [sym__single_quote_span_open] = ACTIONS(2517), - [sym__double_quote_span_open] = ACTIONS(2519), - [sym__shortcode_open_escaped] = ACTIONS(2521), - [sym__shortcode_open] = ACTIONS(2523), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2525), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2527), - [sym__cite_author_in_text] = ACTIONS(2529), - [sym__cite_suppress_author] = ACTIONS(2531), - [sym__strikeout_open] = ACTIONS(2533), - [sym__subscript_open] = ACTIONS(2535), - [sym__superscript_open] = ACTIONS(2537), - [sym__inline_note_start_token] = ACTIONS(2539), - [sym__strong_emphasis_open_star] = ACTIONS(2541), - [sym__strong_emphasis_open_underscore] = ACTIONS(2543), - [sym__emphasis_open_star] = ACTIONS(2545), - [sym__emphasis_open_underscore] = ACTIONS(2547), - [sym_inline_note_reference] = ACTIONS(4212), - [sym_html_element] = ACTIONS(4212), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3850), - [anon_sym_COLON] = ACTIONS(3850), - [sym_entity_reference] = ACTIONS(3850), - [sym_numeric_character_reference] = ACTIONS(3850), - [anon_sym_LBRACK] = ACTIONS(3850), - [anon_sym_BANG_LBRACK] = ACTIONS(3850), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3850), - [anon_sym_LBRACE] = ACTIONS(3850), - [aux_sym_pandoc_str_token1] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3850), - [aux_sym__prose_punctuation_token1] = ACTIONS(3852), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3852), - [sym__line_ending] = ACTIONS(3850), - [sym__soft_line_ending] = ACTIONS(3850), - [sym__block_quote_start] = ACTIONS(3850), - [sym_atx_h1_marker] = ACTIONS(3850), - [sym_atx_h2_marker] = ACTIONS(3850), - [sym_atx_h3_marker] = ACTIONS(3850), - [sym_atx_h4_marker] = ACTIONS(3850), - [sym_atx_h5_marker] = ACTIONS(3850), - [sym_atx_h6_marker] = ACTIONS(3850), - [sym__thematic_break] = ACTIONS(3850), - [sym__list_marker_minus] = ACTIONS(3850), - [sym__list_marker_plus] = ACTIONS(3850), - [sym__list_marker_star] = ACTIONS(3850), - [sym__list_marker_parenthesis] = ACTIONS(3850), - [sym__list_marker_dot] = ACTIONS(3850), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_example] = ACTIONS(3850), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3850), - [sym__fenced_code_block_start_backtick] = ACTIONS(3850), - [sym_minus_metadata] = ACTIONS(3850), - [sym__pipe_table_start] = ACTIONS(3850), - [sym__fenced_div_start] = ACTIONS(3850), - [sym_ref_id_specifier] = ACTIONS(3850), - [sym__code_span_start] = ACTIONS(3850), - [sym__html_comment] = ACTIONS(3850), - [sym__autolink] = ACTIONS(3850), - [sym__highlight_span_start] = ACTIONS(3850), - [sym__insert_span_start] = ACTIONS(3850), - [sym__delete_span_start] = ACTIONS(3850), - [sym__edit_comment_span_start] = ACTIONS(3850), - [sym__single_quote_span_open] = ACTIONS(3850), - [sym__double_quote_span_open] = ACTIONS(3850), - [sym__shortcode_open_escaped] = ACTIONS(3850), - [sym__shortcode_open] = ACTIONS(3850), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3850), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3850), - [sym__cite_author_in_text] = ACTIONS(3850), - [sym__cite_suppress_author] = ACTIONS(3850), - [sym__strikeout_open] = ACTIONS(3850), - [sym__subscript_open] = ACTIONS(3850), - [sym__superscript_open] = ACTIONS(3850), - [sym__inline_note_start_token] = ACTIONS(3850), - [sym__strong_emphasis_open_star] = ACTIONS(3850), - [sym__strong_emphasis_open_underscore] = ACTIONS(3850), - [sym__emphasis_open_star] = ACTIONS(3850), - [sym__emphasis_open_underscore] = ACTIONS(3850), - [sym_inline_note_reference] = ACTIONS(3850), - [sym_html_element] = ACTIONS(3850), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3854), - [anon_sym_COLON] = ACTIONS(3854), - [sym_entity_reference] = ACTIONS(3854), - [sym_numeric_character_reference] = ACTIONS(3854), - [anon_sym_LBRACK] = ACTIONS(3854), - [anon_sym_BANG_LBRACK] = ACTIONS(3854), - [anon_sym_DOLLAR] = ACTIONS(3856), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3854), - [anon_sym_LBRACE] = ACTIONS(3854), - [aux_sym_pandoc_str_token1] = ACTIONS(3856), - [anon_sym_PIPE] = ACTIONS(3854), - [aux_sym__prose_punctuation_token1] = ACTIONS(3856), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3856), - [sym__line_ending] = ACTIONS(3854), - [sym__soft_line_ending] = ACTIONS(3854), - [sym__block_quote_start] = ACTIONS(3854), - [sym_atx_h1_marker] = ACTIONS(3854), - [sym_atx_h2_marker] = ACTIONS(3854), - [sym_atx_h3_marker] = ACTIONS(3854), - [sym_atx_h4_marker] = ACTIONS(3854), - [sym_atx_h5_marker] = ACTIONS(3854), - [sym_atx_h6_marker] = ACTIONS(3854), - [sym__thematic_break] = ACTIONS(3854), - [sym__list_marker_minus] = ACTIONS(3854), - [sym__list_marker_plus] = ACTIONS(3854), - [sym__list_marker_star] = ACTIONS(3854), - [sym__list_marker_parenthesis] = ACTIONS(3854), - [sym__list_marker_dot] = ACTIONS(3854), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_example] = ACTIONS(3854), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3854), - [sym__fenced_code_block_start_backtick] = ACTIONS(3854), - [sym_minus_metadata] = ACTIONS(3854), - [sym__pipe_table_start] = ACTIONS(3854), - [sym__fenced_div_start] = ACTIONS(3854), - [sym_ref_id_specifier] = ACTIONS(3854), - [sym__code_span_start] = ACTIONS(3854), - [sym__html_comment] = ACTIONS(3854), - [sym__autolink] = ACTIONS(3854), - [sym__highlight_span_start] = ACTIONS(3854), - [sym__insert_span_start] = ACTIONS(3854), - [sym__delete_span_start] = ACTIONS(3854), - [sym__edit_comment_span_start] = ACTIONS(3854), - [sym__single_quote_span_open] = ACTIONS(3854), - [sym__double_quote_span_open] = ACTIONS(3854), - [sym__shortcode_open_escaped] = ACTIONS(3854), - [sym__shortcode_open] = ACTIONS(3854), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3854), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3854), - [sym__cite_author_in_text] = ACTIONS(3854), - [sym__cite_suppress_author] = ACTIONS(3854), - [sym__strikeout_open] = ACTIONS(3854), - [sym__subscript_open] = ACTIONS(3854), - [sym__superscript_open] = ACTIONS(3854), - [sym__inline_note_start_token] = ACTIONS(3854), - [sym__strong_emphasis_open_star] = ACTIONS(3854), - [sym__strong_emphasis_open_underscore] = ACTIONS(3854), - [sym__emphasis_open_star] = ACTIONS(3854), - [sym__emphasis_open_underscore] = ACTIONS(3854), - [sym_inline_note_reference] = ACTIONS(3854), - [sym_html_element] = ACTIONS(3854), + [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)] = { - [sym_pandoc_span] = STATE(568), - [sym_pandoc_image] = STATE(568), - [sym_pandoc_math] = STATE(568), - [sym_pandoc_display_math] = STATE(568), - [sym_pandoc_code_span] = STATE(568), - [sym_pandoc_single_quote] = STATE(568), - [sym_pandoc_double_quote] = STATE(568), - [sym_insert] = STATE(568), - [sym_delete] = STATE(568), - [sym_edit_comment] = STATE(568), - [sym_highlight] = STATE(568), - [sym__pandoc_attr_specifier] = STATE(568), - [sym__inline_element] = STATE(568), - [sym_shortcode_escaped] = STATE(568), - [sym_shortcode] = STATE(568), - [sym_citation] = STATE(568), - [sym_inline_note] = STATE(568), - [sym_pandoc_superscript] = STATE(568), - [sym_pandoc_subscript] = STATE(568), - [sym_pandoc_strikeout] = STATE(568), - [sym_pandoc_emph] = STATE(568), - [sym_pandoc_strong] = STATE(568), - [sym_pandoc_str] = STATE(568), - [sym__prose_punctuation] = STATE(568), - [sym_pandoc_line_break] = STATE(568), - [aux_sym__line_repeat1] = STATE(568), - [sym_entity_reference] = ACTIONS(4216), - [sym_numeric_character_reference] = ACTIONS(4216), - [anon_sym_LBRACK] = ACTIONS(4218), - [anon_sym_BANG_LBRACK] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4224), - [anon_sym_LBRACE] = ACTIONS(4226), - [aux_sym_pandoc_str_token1] = ACTIONS(4228), - [anon_sym_PIPE] = ACTIONS(4230), - [aux_sym__prose_punctuation_token1] = ACTIONS(4232), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4234), - [sym__whitespace] = ACTIONS(4236), - [sym__soft_line_ending] = ACTIONS(3460), - [sym__code_span_start] = ACTIONS(4238), - [sym__html_comment] = ACTIONS(4216), - [sym__autolink] = ACTIONS(4216), - [sym__highlight_span_start] = ACTIONS(4240), - [sym__insert_span_start] = ACTIONS(4242), - [sym__delete_span_start] = ACTIONS(4244), - [sym__edit_comment_span_start] = ACTIONS(4246), - [sym__single_quote_span_open] = ACTIONS(4248), - [sym__double_quote_span_open] = ACTIONS(4250), - [sym__shortcode_open_escaped] = ACTIONS(4252), - [sym__shortcode_open] = ACTIONS(4254), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4256), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4258), - [sym__cite_author_in_text] = ACTIONS(4260), - [sym__cite_suppress_author] = ACTIONS(4262), - [sym__strikeout_open] = ACTIONS(4264), - [sym__strikeout_close] = ACTIONS(3460), - [sym__subscript_open] = ACTIONS(4266), - [sym__superscript_open] = ACTIONS(4268), - [sym__inline_note_start_token] = ACTIONS(4270), - [sym__strong_emphasis_open_star] = ACTIONS(4272), - [sym__strong_emphasis_open_underscore] = ACTIONS(4274), - [sym__emphasis_open_star] = ACTIONS(4276), - [sym__emphasis_open_underscore] = ACTIONS(4278), - [sym_inline_note_reference] = ACTIONS(4216), - [sym_html_element] = ACTIONS(4216), + [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)] = { - [sym_pandoc_span] = STATE(575), - [sym_pandoc_image] = STATE(575), - [sym_pandoc_math] = STATE(575), - [sym_pandoc_display_math] = STATE(575), - [sym_pandoc_code_span] = STATE(575), - [sym_pandoc_single_quote] = STATE(575), - [sym_pandoc_double_quote] = STATE(575), - [sym_insert] = STATE(575), - [sym_delete] = STATE(575), - [sym_edit_comment] = STATE(575), - [sym_highlight] = STATE(575), - [sym__pandoc_attr_specifier] = STATE(575), - [sym__inline_element] = STATE(575), - [sym_shortcode_escaped] = STATE(575), - [sym_shortcode] = STATE(575), - [sym_citation] = STATE(575), - [sym_inline_note] = STATE(575), - [sym_pandoc_superscript] = STATE(575), - [sym_pandoc_subscript] = STATE(575), - [sym_pandoc_strikeout] = STATE(575), - [sym_pandoc_emph] = STATE(575), - [sym_pandoc_strong] = STATE(575), - [sym_pandoc_str] = STATE(575), - [sym__prose_punctuation] = STATE(575), - [sym_pandoc_line_break] = STATE(575), - [aux_sym__line_repeat1] = STATE(575), - [sym_entity_reference] = ACTIONS(4280), - [sym_numeric_character_reference] = ACTIONS(4280), - [anon_sym_LBRACK] = ACTIONS(4218), - [anon_sym_BANG_LBRACK] = ACTIONS(4220), - [anon_sym_DOLLAR] = ACTIONS(4222), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4224), - [anon_sym_LBRACE] = ACTIONS(4226), - [aux_sym_pandoc_str_token1] = ACTIONS(4228), - [anon_sym_PIPE] = ACTIONS(4230), - [aux_sym__prose_punctuation_token1] = ACTIONS(4282), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4234), - [sym__whitespace] = ACTIONS(4236), - [sym__soft_line_ending] = ACTIONS(3470), - [sym__code_span_start] = ACTIONS(4238), - [sym__html_comment] = ACTIONS(4280), - [sym__autolink] = ACTIONS(4280), - [sym__highlight_span_start] = ACTIONS(4240), - [sym__insert_span_start] = ACTIONS(4242), - [sym__delete_span_start] = ACTIONS(4244), - [sym__edit_comment_span_start] = ACTIONS(4246), - [sym__single_quote_span_open] = ACTIONS(4248), - [sym__double_quote_span_open] = ACTIONS(4250), - [sym__shortcode_open_escaped] = ACTIONS(4252), - [sym__shortcode_open] = ACTIONS(4254), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4256), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4258), - [sym__cite_author_in_text] = ACTIONS(4260), - [sym__cite_suppress_author] = ACTIONS(4262), - [sym__strikeout_open] = ACTIONS(4264), - [sym__strikeout_close] = ACTIONS(3470), - [sym__subscript_open] = ACTIONS(4266), - [sym__superscript_open] = ACTIONS(4268), - [sym__inline_note_start_token] = ACTIONS(4270), - [sym__strong_emphasis_open_star] = ACTIONS(4272), - [sym__strong_emphasis_open_underscore] = ACTIONS(4274), - [sym__emphasis_open_star] = ACTIONS(4276), - [sym__emphasis_open_underscore] = ACTIONS(4278), - [sym_inline_note_reference] = ACTIONS(4280), - [sym_html_element] = ACTIONS(4280), + [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(3858), - [anon_sym_COLON] = ACTIONS(3858), - [sym_entity_reference] = ACTIONS(3858), - [sym_numeric_character_reference] = ACTIONS(3858), - [anon_sym_LBRACK] = ACTIONS(3858), - [anon_sym_BANG_LBRACK] = ACTIONS(3858), - [anon_sym_DOLLAR] = ACTIONS(3860), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3858), - [anon_sym_LBRACE] = ACTIONS(3858), - [aux_sym_pandoc_str_token1] = ACTIONS(3860), - [anon_sym_PIPE] = ACTIONS(3858), - [aux_sym__prose_punctuation_token1] = ACTIONS(3860), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3860), - [sym__line_ending] = ACTIONS(3858), - [sym__soft_line_ending] = ACTIONS(3858), - [sym__block_quote_start] = ACTIONS(3858), - [sym_atx_h1_marker] = ACTIONS(3858), - [sym_atx_h2_marker] = ACTIONS(3858), - [sym_atx_h3_marker] = ACTIONS(3858), - [sym_atx_h4_marker] = ACTIONS(3858), - [sym_atx_h5_marker] = ACTIONS(3858), - [sym_atx_h6_marker] = ACTIONS(3858), - [sym__thematic_break] = ACTIONS(3858), - [sym__list_marker_minus] = ACTIONS(3858), - [sym__list_marker_plus] = ACTIONS(3858), - [sym__list_marker_star] = ACTIONS(3858), - [sym__list_marker_parenthesis] = ACTIONS(3858), - [sym__list_marker_dot] = ACTIONS(3858), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_example] = ACTIONS(3858), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3858), - [sym__fenced_code_block_start_backtick] = ACTIONS(3858), - [sym_minus_metadata] = ACTIONS(3858), - [sym__pipe_table_start] = ACTIONS(3858), - [sym__fenced_div_start] = ACTIONS(3858), - [sym_ref_id_specifier] = ACTIONS(3858), - [sym__code_span_start] = ACTIONS(3858), - [sym__html_comment] = ACTIONS(3858), - [sym__autolink] = ACTIONS(3858), - [sym__highlight_span_start] = ACTIONS(3858), - [sym__insert_span_start] = ACTIONS(3858), - [sym__delete_span_start] = ACTIONS(3858), - [sym__edit_comment_span_start] = ACTIONS(3858), - [sym__single_quote_span_open] = ACTIONS(3858), - [sym__double_quote_span_open] = ACTIONS(3858), - [sym__shortcode_open_escaped] = ACTIONS(3858), - [sym__shortcode_open] = ACTIONS(3858), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3858), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3858), - [sym__cite_author_in_text] = ACTIONS(3858), - [sym__cite_suppress_author] = ACTIONS(3858), - [sym__strikeout_open] = ACTIONS(3858), - [sym__subscript_open] = ACTIONS(3858), - [sym__superscript_open] = ACTIONS(3858), - [sym__inline_note_start_token] = ACTIONS(3858), - [sym__strong_emphasis_open_star] = ACTIONS(3858), - [sym__strong_emphasis_open_underscore] = ACTIONS(3858), - [sym__emphasis_open_star] = ACTIONS(3858), - [sym__emphasis_open_underscore] = ACTIONS(3858), - [sym_inline_note_reference] = ACTIONS(3858), - [sym_html_element] = ACTIONS(3858), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3862), - [anon_sym_COLON] = ACTIONS(3862), - [sym_entity_reference] = ACTIONS(3862), - [sym_numeric_character_reference] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(3862), - [anon_sym_BANG_LBRACK] = ACTIONS(3862), - [anon_sym_DOLLAR] = ACTIONS(3864), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3862), - [aux_sym_pandoc_str_token1] = ACTIONS(3864), - [anon_sym_PIPE] = ACTIONS(3862), - [aux_sym__prose_punctuation_token1] = ACTIONS(3864), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3864), - [sym__line_ending] = ACTIONS(3862), - [sym__soft_line_ending] = ACTIONS(3862), - [sym__block_quote_start] = ACTIONS(3862), - [sym_atx_h1_marker] = ACTIONS(3862), - [sym_atx_h2_marker] = ACTIONS(3862), - [sym_atx_h3_marker] = ACTIONS(3862), - [sym_atx_h4_marker] = ACTIONS(3862), - [sym_atx_h5_marker] = ACTIONS(3862), - [sym_atx_h6_marker] = ACTIONS(3862), - [sym__thematic_break] = ACTIONS(3862), - [sym__list_marker_minus] = ACTIONS(3862), - [sym__list_marker_plus] = ACTIONS(3862), - [sym__list_marker_star] = ACTIONS(3862), - [sym__list_marker_parenthesis] = ACTIONS(3862), - [sym__list_marker_dot] = ACTIONS(3862), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_example] = ACTIONS(3862), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3862), - [sym__fenced_code_block_start_backtick] = ACTIONS(3862), - [sym_minus_metadata] = ACTIONS(3862), - [sym__pipe_table_start] = ACTIONS(3862), - [sym__fenced_div_start] = ACTIONS(3862), - [sym_ref_id_specifier] = ACTIONS(3862), - [sym__code_span_start] = ACTIONS(3862), - [sym__html_comment] = ACTIONS(3862), - [sym__autolink] = ACTIONS(3862), - [sym__highlight_span_start] = ACTIONS(3862), - [sym__insert_span_start] = ACTIONS(3862), - [sym__delete_span_start] = ACTIONS(3862), - [sym__edit_comment_span_start] = ACTIONS(3862), - [sym__single_quote_span_open] = ACTIONS(3862), - [sym__double_quote_span_open] = ACTIONS(3862), - [sym__shortcode_open_escaped] = ACTIONS(3862), - [sym__shortcode_open] = ACTIONS(3862), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3862), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3862), - [sym__cite_author_in_text] = ACTIONS(3862), - [sym__cite_suppress_author] = ACTIONS(3862), - [sym__strikeout_open] = ACTIONS(3862), - [sym__subscript_open] = ACTIONS(3862), - [sym__superscript_open] = ACTIONS(3862), - [sym__inline_note_start_token] = ACTIONS(3862), - [sym__strong_emphasis_open_star] = ACTIONS(3862), - [sym__strong_emphasis_open_underscore] = ACTIONS(3862), - [sym__emphasis_open_star] = ACTIONS(3862), - [sym__emphasis_open_underscore] = ACTIONS(3862), - [sym_inline_note_reference] = ACTIONS(3862), - [sym_html_element] = ACTIONS(3862), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3866), - [anon_sym_COLON] = ACTIONS(3866), - [sym_entity_reference] = ACTIONS(3866), - [sym_numeric_character_reference] = ACTIONS(3866), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_BANG_LBRACK] = ACTIONS(3866), - [anon_sym_DOLLAR] = ACTIONS(3868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3866), - [aux_sym_pandoc_str_token1] = ACTIONS(3868), - [anon_sym_PIPE] = ACTIONS(3866), - [aux_sym__prose_punctuation_token1] = ACTIONS(3868), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3868), - [sym__line_ending] = ACTIONS(3866), - [sym__soft_line_ending] = ACTIONS(3866), - [sym__block_quote_start] = ACTIONS(3866), - [sym_atx_h1_marker] = ACTIONS(3866), - [sym_atx_h2_marker] = ACTIONS(3866), - [sym_atx_h3_marker] = ACTIONS(3866), - [sym_atx_h4_marker] = ACTIONS(3866), - [sym_atx_h5_marker] = ACTIONS(3866), - [sym_atx_h6_marker] = ACTIONS(3866), - [sym__thematic_break] = ACTIONS(3866), - [sym__list_marker_minus] = ACTIONS(3866), - [sym__list_marker_plus] = ACTIONS(3866), - [sym__list_marker_star] = ACTIONS(3866), - [sym__list_marker_parenthesis] = ACTIONS(3866), - [sym__list_marker_dot] = ACTIONS(3866), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_example] = ACTIONS(3866), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3866), - [sym__fenced_code_block_start_backtick] = ACTIONS(3866), - [sym_minus_metadata] = ACTIONS(3866), - [sym__pipe_table_start] = ACTIONS(3866), - [sym__fenced_div_start] = ACTIONS(3866), - [sym_ref_id_specifier] = ACTIONS(3866), - [sym__code_span_start] = ACTIONS(3866), - [sym__html_comment] = ACTIONS(3866), - [sym__autolink] = ACTIONS(3866), - [sym__highlight_span_start] = ACTIONS(3866), - [sym__insert_span_start] = ACTIONS(3866), - [sym__delete_span_start] = ACTIONS(3866), - [sym__edit_comment_span_start] = ACTIONS(3866), - [sym__single_quote_span_open] = ACTIONS(3866), - [sym__double_quote_span_open] = ACTIONS(3866), - [sym__shortcode_open_escaped] = ACTIONS(3866), - [sym__shortcode_open] = ACTIONS(3866), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3866), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3866), - [sym__cite_author_in_text] = ACTIONS(3866), - [sym__cite_suppress_author] = ACTIONS(3866), - [sym__strikeout_open] = ACTIONS(3866), - [sym__subscript_open] = ACTIONS(3866), - [sym__superscript_open] = ACTIONS(3866), - [sym__inline_note_start_token] = ACTIONS(3866), - [sym__strong_emphasis_open_star] = ACTIONS(3866), - [sym__strong_emphasis_open_underscore] = ACTIONS(3866), - [sym__emphasis_open_star] = ACTIONS(3866), - [sym__emphasis_open_underscore] = ACTIONS(3866), - [sym_inline_note_reference] = ACTIONS(3866), - [sym_html_element] = ACTIONS(3866), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3870), - [anon_sym_COLON] = ACTIONS(3870), - [sym_entity_reference] = ACTIONS(3870), - [sym_numeric_character_reference] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(3870), - [anon_sym_BANG_LBRACK] = ACTIONS(3870), - [anon_sym_DOLLAR] = ACTIONS(3872), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3870), - [aux_sym_pandoc_str_token1] = ACTIONS(3872), - [anon_sym_PIPE] = ACTIONS(3870), - [aux_sym__prose_punctuation_token1] = ACTIONS(3872), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3872), - [sym__line_ending] = ACTIONS(3870), - [sym__soft_line_ending] = ACTIONS(3870), - [sym__block_quote_start] = ACTIONS(3870), - [sym_atx_h1_marker] = ACTIONS(3870), - [sym_atx_h2_marker] = ACTIONS(3870), - [sym_atx_h3_marker] = ACTIONS(3870), - [sym_atx_h4_marker] = ACTIONS(3870), - [sym_atx_h5_marker] = ACTIONS(3870), - [sym_atx_h6_marker] = ACTIONS(3870), - [sym__thematic_break] = ACTIONS(3870), - [sym__list_marker_minus] = ACTIONS(3870), - [sym__list_marker_plus] = ACTIONS(3870), - [sym__list_marker_star] = ACTIONS(3870), - [sym__list_marker_parenthesis] = ACTIONS(3870), - [sym__list_marker_dot] = ACTIONS(3870), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_example] = ACTIONS(3870), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3870), - [sym__fenced_code_block_start_backtick] = ACTIONS(3870), - [sym_minus_metadata] = ACTIONS(3870), - [sym__pipe_table_start] = ACTIONS(3870), - [sym__fenced_div_start] = ACTIONS(3870), - [sym_ref_id_specifier] = ACTIONS(3870), - [sym__code_span_start] = ACTIONS(3870), - [sym__html_comment] = ACTIONS(3870), - [sym__autolink] = ACTIONS(3870), - [sym__highlight_span_start] = ACTIONS(3870), - [sym__insert_span_start] = ACTIONS(3870), - [sym__delete_span_start] = ACTIONS(3870), - [sym__edit_comment_span_start] = ACTIONS(3870), - [sym__single_quote_span_open] = ACTIONS(3870), - [sym__double_quote_span_open] = ACTIONS(3870), - [sym__shortcode_open_escaped] = ACTIONS(3870), - [sym__shortcode_open] = ACTIONS(3870), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3870), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3870), - [sym__cite_author_in_text] = ACTIONS(3870), - [sym__cite_suppress_author] = ACTIONS(3870), - [sym__strikeout_open] = ACTIONS(3870), - [sym__subscript_open] = ACTIONS(3870), - [sym__superscript_open] = ACTIONS(3870), - [sym__inline_note_start_token] = ACTIONS(3870), - [sym__strong_emphasis_open_star] = ACTIONS(3870), - [sym__strong_emphasis_open_underscore] = ACTIONS(3870), - [sym__emphasis_open_star] = ACTIONS(3870), - [sym__emphasis_open_underscore] = ACTIONS(3870), - [sym_inline_note_reference] = ACTIONS(3870), - [sym_html_element] = ACTIONS(3870), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3216), - [anon_sym_COLON] = ACTIONS(3216), - [sym_entity_reference] = ACTIONS(3216), - [sym_numeric_character_reference] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_BANG_LBRACK] = ACTIONS(3216), - [anon_sym_DOLLAR] = ACTIONS(3218), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [aux_sym_pandoc_str_token1] = ACTIONS(3218), - [anon_sym_PIPE] = ACTIONS(3216), - [aux_sym__prose_punctuation_token1] = ACTIONS(3218), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3218), - [sym__line_ending] = ACTIONS(3216), - [sym__soft_line_ending] = ACTIONS(3216), - [sym__block_quote_start] = ACTIONS(3216), - [sym_atx_h1_marker] = ACTIONS(3216), - [sym_atx_h2_marker] = ACTIONS(3216), - [sym_atx_h3_marker] = ACTIONS(3216), - [sym_atx_h4_marker] = ACTIONS(3216), - [sym_atx_h5_marker] = ACTIONS(3216), - [sym_atx_h6_marker] = ACTIONS(3216), - [sym__thematic_break] = ACTIONS(3216), - [sym__list_marker_minus] = ACTIONS(3216), - [sym__list_marker_plus] = ACTIONS(3216), - [sym__list_marker_star] = ACTIONS(3216), - [sym__list_marker_parenthesis] = ACTIONS(3216), - [sym__list_marker_dot] = ACTIONS(3216), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_example] = ACTIONS(3216), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3216), - [sym__fenced_code_block_start_backtick] = ACTIONS(3216), - [sym_minus_metadata] = ACTIONS(3216), - [sym__pipe_table_start] = ACTIONS(3216), - [sym__fenced_div_start] = ACTIONS(3216), - [sym_ref_id_specifier] = ACTIONS(3216), - [sym__code_span_start] = ACTIONS(3216), - [sym__html_comment] = ACTIONS(3216), - [sym__autolink] = ACTIONS(3216), - [sym__highlight_span_start] = ACTIONS(3216), - [sym__insert_span_start] = ACTIONS(3216), - [sym__delete_span_start] = ACTIONS(3216), - [sym__edit_comment_span_start] = ACTIONS(3216), - [sym__single_quote_span_open] = ACTIONS(3216), - [sym__double_quote_span_open] = ACTIONS(3216), - [sym__shortcode_open_escaped] = ACTIONS(3216), - [sym__shortcode_open] = ACTIONS(3216), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3216), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3216), - [sym__cite_author_in_text] = ACTIONS(3216), - [sym__cite_suppress_author] = ACTIONS(3216), - [sym__strikeout_open] = ACTIONS(3216), - [sym__subscript_open] = ACTIONS(3216), - [sym__superscript_open] = ACTIONS(3216), - [sym__inline_note_start_token] = ACTIONS(3216), - [sym__strong_emphasis_open_star] = ACTIONS(3216), - [sym__strong_emphasis_open_underscore] = ACTIONS(3216), - [sym__emphasis_open_star] = ACTIONS(3216), - [sym__emphasis_open_underscore] = ACTIONS(3216), - [sym_inline_note_reference] = ACTIONS(3216), - [sym_html_element] = ACTIONS(3216), + [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(2979), - [sym_entity_reference] = ACTIONS(2979), - [sym_numeric_character_reference] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_BANG_LBRACK] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2981), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2979), - [aux_sym_pandoc_str_token1] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2979), - [aux_sym__prose_punctuation_token1] = ACTIONS(2981), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2981), - [sym__line_ending] = ACTIONS(2979), - [sym__soft_line_ending] = ACTIONS(2979), - [sym__block_close] = ACTIONS(2979), - [sym__block_quote_start] = ACTIONS(2979), - [sym_atx_h1_marker] = ACTIONS(2979), - [sym_atx_h2_marker] = ACTIONS(2979), - [sym_atx_h3_marker] = ACTIONS(2979), - [sym_atx_h4_marker] = ACTIONS(2979), - [sym_atx_h5_marker] = ACTIONS(2979), - [sym_atx_h6_marker] = ACTIONS(2979), - [sym__thematic_break] = ACTIONS(2979), - [sym__list_marker_minus] = ACTIONS(2979), - [sym__list_marker_plus] = ACTIONS(2979), - [sym__list_marker_star] = ACTIONS(2979), - [sym__list_marker_parenthesis] = ACTIONS(2979), - [sym__list_marker_dot] = ACTIONS(2979), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_star_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(2979), - [sym__list_marker_example] = ACTIONS(2979), - [sym__list_marker_example_dont_interrupt] = ACTIONS(2979), - [sym__fenced_code_block_start_backtick] = ACTIONS(2979), - [sym_minus_metadata] = ACTIONS(2979), - [sym__pipe_table_start] = ACTIONS(2979), - [sym__fenced_div_start] = ACTIONS(2979), - [sym_ref_id_specifier] = ACTIONS(2979), - [sym__code_span_start] = ACTIONS(2979), - [sym__html_comment] = ACTIONS(2979), - [sym__autolink] = ACTIONS(2979), - [sym__highlight_span_start] = ACTIONS(2979), - [sym__insert_span_start] = ACTIONS(2979), - [sym__delete_span_start] = ACTIONS(2979), - [sym__edit_comment_span_start] = ACTIONS(2979), - [sym__single_quote_span_open] = ACTIONS(2979), - [sym__double_quote_span_open] = ACTIONS(2979), - [sym__shortcode_open_escaped] = ACTIONS(2979), - [sym__shortcode_open] = ACTIONS(2979), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2979), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2979), - [sym__cite_author_in_text] = ACTIONS(2979), - [sym__cite_suppress_author] = ACTIONS(2979), - [sym__strikeout_open] = ACTIONS(2979), - [sym__subscript_open] = ACTIONS(2979), - [sym__superscript_open] = ACTIONS(2979), - [sym__inline_note_start_token] = ACTIONS(2979), - [sym__strong_emphasis_open_star] = ACTIONS(2979), - [sym__strong_emphasis_open_underscore] = ACTIONS(2979), - [sym__emphasis_open_star] = ACTIONS(2979), - [sym__emphasis_open_underscore] = ACTIONS(2979), - [sym_inline_note_reference] = ACTIONS(2979), - [sym_html_element] = ACTIONS(2979), + [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)] = { - [sym_pandoc_span] = STATE(575), - [sym_pandoc_image] = STATE(575), - [sym_pandoc_math] = STATE(575), - [sym_pandoc_display_math] = STATE(575), - [sym_pandoc_code_span] = STATE(575), - [sym_pandoc_single_quote] = STATE(575), - [sym_pandoc_double_quote] = STATE(575), - [sym_insert] = STATE(575), - [sym_delete] = STATE(575), - [sym_edit_comment] = STATE(575), - [sym_highlight] = STATE(575), - [sym__pandoc_attr_specifier] = STATE(575), - [sym__inline_element] = STATE(575), - [sym_shortcode_escaped] = STATE(575), - [sym_shortcode] = STATE(575), - [sym_citation] = STATE(575), - [sym_inline_note] = STATE(575), - [sym_pandoc_superscript] = STATE(575), - [sym_pandoc_subscript] = STATE(575), - [sym_pandoc_strikeout] = STATE(575), - [sym_pandoc_emph] = STATE(575), - [sym_pandoc_strong] = STATE(575), - [sym_pandoc_str] = STATE(575), - [sym__prose_punctuation] = STATE(575), - [sym_pandoc_line_break] = STATE(575), - [aux_sym__line_repeat1] = STATE(575), - [sym_entity_reference] = ACTIONS(4284), - [sym_numeric_character_reference] = ACTIONS(4284), - [anon_sym_LBRACK] = ACTIONS(4287), - [anon_sym_BANG_LBRACK] = ACTIONS(4290), - [anon_sym_DOLLAR] = ACTIONS(4293), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4296), - [anon_sym_LBRACE] = ACTIONS(4299), - [aux_sym_pandoc_str_token1] = ACTIONS(4302), - [anon_sym_PIPE] = ACTIONS(4305), - [aux_sym__prose_punctuation_token1] = ACTIONS(4308), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4311), - [sym__whitespace] = ACTIONS(4314), - [sym__soft_line_ending] = ACTIONS(3485), - [sym__code_span_start] = ACTIONS(4317), - [sym__html_comment] = ACTIONS(4284), - [sym__autolink] = ACTIONS(4284), - [sym__highlight_span_start] = ACTIONS(4320), - [sym__insert_span_start] = ACTIONS(4323), - [sym__delete_span_start] = ACTIONS(4326), - [sym__edit_comment_span_start] = ACTIONS(4329), - [sym__single_quote_span_open] = ACTIONS(4332), - [sym__double_quote_span_open] = ACTIONS(4335), - [sym__shortcode_open_escaped] = ACTIONS(4338), - [sym__shortcode_open] = ACTIONS(4341), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4344), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4347), - [sym__cite_author_in_text] = ACTIONS(4350), - [sym__cite_suppress_author] = ACTIONS(4353), - [sym__strikeout_open] = ACTIONS(4356), - [sym__strikeout_close] = ACTIONS(3485), - [sym__subscript_open] = ACTIONS(4359), - [sym__superscript_open] = ACTIONS(4362), - [sym__inline_note_start_token] = ACTIONS(4365), - [sym__strong_emphasis_open_star] = ACTIONS(4368), - [sym__strong_emphasis_open_underscore] = ACTIONS(4371), - [sym__emphasis_open_star] = ACTIONS(4374), - [sym__emphasis_open_underscore] = ACTIONS(4377), - [sym_inline_note_reference] = ACTIONS(4284), - [sym_html_element] = ACTIONS(4284), + [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)] = { - [sym_pandoc_span] = STATE(577), - [sym_pandoc_image] = STATE(577), - [sym_pandoc_math] = STATE(577), - [sym_pandoc_display_math] = STATE(577), - [sym_pandoc_code_span] = STATE(577), - [sym_pandoc_single_quote] = STATE(577), - [sym_pandoc_double_quote] = STATE(577), - [sym_insert] = STATE(577), - [sym_delete] = STATE(577), - [sym_edit_comment] = STATE(577), - [sym_highlight] = STATE(577), - [sym__pandoc_attr_specifier] = STATE(577), - [sym__inline_element] = STATE(577), - [sym_shortcode_escaped] = STATE(577), - [sym_shortcode] = STATE(577), - [sym_citation] = STATE(577), - [sym_inline_note] = STATE(577), - [sym_pandoc_superscript] = STATE(577), - [sym_pandoc_subscript] = STATE(577), - [sym_pandoc_strikeout] = STATE(577), - [sym_pandoc_emph] = STATE(577), - [sym_pandoc_strong] = STATE(577), - [sym_pandoc_str] = STATE(577), - [sym__prose_punctuation] = STATE(577), - [sym_pandoc_line_break] = STATE(577), - [aux_sym__line_repeat1] = STATE(577), - [sym_entity_reference] = ACTIONS(4380), - [sym_numeric_character_reference] = ACTIONS(4380), - [anon_sym_LBRACK] = ACTIONS(4382), - [anon_sym_BANG_LBRACK] = ACTIONS(4384), - [anon_sym_DOLLAR] = ACTIONS(4386), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4388), - [anon_sym_LBRACE] = ACTIONS(4390), - [aux_sym_pandoc_str_token1] = ACTIONS(4392), - [anon_sym_PIPE] = ACTIONS(4394), - [aux_sym__prose_punctuation_token1] = ACTIONS(4396), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4398), - [sym__whitespace] = ACTIONS(4400), - [sym__soft_line_ending] = ACTIONS(3460), - [sym__code_span_start] = ACTIONS(4402), - [sym__html_comment] = ACTIONS(4380), - [sym__autolink] = ACTIONS(4380), - [sym__highlight_span_start] = ACTIONS(4404), - [sym__insert_span_start] = ACTIONS(4406), - [sym__delete_span_start] = ACTIONS(4408), - [sym__edit_comment_span_start] = ACTIONS(4410), - [sym__single_quote_span_open] = ACTIONS(4412), - [sym__double_quote_span_open] = ACTIONS(4414), - [sym__shortcode_open_escaped] = ACTIONS(4416), - [sym__shortcode_open] = ACTIONS(4418), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4420), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4422), - [sym__cite_author_in_text] = ACTIONS(4424), - [sym__cite_suppress_author] = ACTIONS(4426), - [sym__strikeout_open] = ACTIONS(4428), - [sym__subscript_open] = ACTIONS(4430), - [sym__subscript_close] = ACTIONS(3460), - [sym__superscript_open] = ACTIONS(4432), - [sym__inline_note_start_token] = ACTIONS(4434), - [sym__strong_emphasis_open_star] = ACTIONS(4436), - [sym__strong_emphasis_open_underscore] = ACTIONS(4438), - [sym__emphasis_open_star] = ACTIONS(4440), - [sym__emphasis_open_underscore] = ACTIONS(4442), - [sym_inline_note_reference] = ACTIONS(4380), - [sym_html_element] = ACTIONS(4380), + [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)] = { - [sym_pandoc_span] = STATE(578), - [sym_pandoc_image] = STATE(578), - [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__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__prose_punctuation] = STATE(578), - [sym_pandoc_line_break] = STATE(578), - [aux_sym__line_repeat1] = STATE(578), - [sym_entity_reference] = ACTIONS(4444), - [sym_numeric_character_reference] = ACTIONS(4444), - [anon_sym_LBRACK] = ACTIONS(4382), - [anon_sym_BANG_LBRACK] = ACTIONS(4384), - [anon_sym_DOLLAR] = ACTIONS(4386), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4388), - [anon_sym_LBRACE] = ACTIONS(4390), - [aux_sym_pandoc_str_token1] = ACTIONS(4392), - [anon_sym_PIPE] = ACTIONS(4394), - [aux_sym__prose_punctuation_token1] = ACTIONS(4446), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4398), - [sym__whitespace] = ACTIONS(4400), - [sym__soft_line_ending] = ACTIONS(3470), - [sym__code_span_start] = ACTIONS(4402), - [sym__html_comment] = ACTIONS(4444), - [sym__autolink] = ACTIONS(4444), - [sym__highlight_span_start] = ACTIONS(4404), - [sym__insert_span_start] = ACTIONS(4406), - [sym__delete_span_start] = ACTIONS(4408), - [sym__edit_comment_span_start] = ACTIONS(4410), - [sym__single_quote_span_open] = ACTIONS(4412), - [sym__double_quote_span_open] = ACTIONS(4414), - [sym__shortcode_open_escaped] = ACTIONS(4416), - [sym__shortcode_open] = ACTIONS(4418), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4420), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4422), - [sym__cite_author_in_text] = ACTIONS(4424), - [sym__cite_suppress_author] = ACTIONS(4426), - [sym__strikeout_open] = ACTIONS(4428), - [sym__subscript_open] = ACTIONS(4430), - [sym__subscript_close] = ACTIONS(3470), - [sym__superscript_open] = ACTIONS(4432), - [sym__inline_note_start_token] = ACTIONS(4434), - [sym__strong_emphasis_open_star] = ACTIONS(4436), - [sym__strong_emphasis_open_underscore] = ACTIONS(4438), - [sym__emphasis_open_star] = ACTIONS(4440), - [sym__emphasis_open_underscore] = ACTIONS(4442), - [sym_inline_note_reference] = ACTIONS(4444), - [sym_html_element] = ACTIONS(4444), + [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_pandoc_span] = STATE(578), - [sym_pandoc_image] = STATE(578), - [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__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__prose_punctuation] = STATE(578), - [sym_pandoc_line_break] = STATE(578), - [aux_sym__line_repeat1] = STATE(578), - [sym_entity_reference] = ACTIONS(4448), - [sym_numeric_character_reference] = ACTIONS(4448), - [anon_sym_LBRACK] = ACTIONS(4451), - [anon_sym_BANG_LBRACK] = ACTIONS(4454), - [anon_sym_DOLLAR] = ACTIONS(4457), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4460), - [anon_sym_LBRACE] = ACTIONS(4463), - [aux_sym_pandoc_str_token1] = ACTIONS(4466), - [anon_sym_PIPE] = ACTIONS(4469), - [aux_sym__prose_punctuation_token1] = ACTIONS(4472), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4475), - [sym__whitespace] = ACTIONS(4478), - [sym__soft_line_ending] = ACTIONS(3485), - [sym__code_span_start] = ACTIONS(4481), - [sym__html_comment] = ACTIONS(4448), - [sym__autolink] = ACTIONS(4448), - [sym__highlight_span_start] = ACTIONS(4484), - [sym__insert_span_start] = ACTIONS(4487), - [sym__delete_span_start] = ACTIONS(4490), - [sym__edit_comment_span_start] = ACTIONS(4493), - [sym__single_quote_span_open] = ACTIONS(4496), - [sym__double_quote_span_open] = ACTIONS(4499), - [sym__shortcode_open_escaped] = ACTIONS(4502), - [sym__shortcode_open] = ACTIONS(4505), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4508), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4511), - [sym__cite_author_in_text] = ACTIONS(4514), - [sym__cite_suppress_author] = ACTIONS(4517), - [sym__strikeout_open] = ACTIONS(4520), - [sym__subscript_open] = ACTIONS(4523), - [sym__subscript_close] = ACTIONS(3485), - [sym__superscript_open] = ACTIONS(4526), - [sym__inline_note_start_token] = ACTIONS(4529), - [sym__strong_emphasis_open_star] = ACTIONS(4532), - [sym__strong_emphasis_open_underscore] = ACTIONS(4535), - [sym__emphasis_open_star] = ACTIONS(4538), - [sym__emphasis_open_underscore] = ACTIONS(4541), - [sym_inline_note_reference] = ACTIONS(4448), - [sym_html_element] = ACTIONS(4448), + [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)] = { - [anon_sym_COLON] = ACTIONS(3850), - [sym_entity_reference] = ACTIONS(3850), - [sym_numeric_character_reference] = ACTIONS(3850), - [anon_sym_LBRACK] = ACTIONS(3850), - [anon_sym_BANG_LBRACK] = ACTIONS(3850), - [anon_sym_DOLLAR] = ACTIONS(3852), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3850), - [anon_sym_LBRACE] = ACTIONS(3850), - [aux_sym_pandoc_str_token1] = ACTIONS(3852), - [anon_sym_PIPE] = ACTIONS(3850), - [aux_sym__prose_punctuation_token1] = ACTIONS(3852), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3852), - [sym__line_ending] = ACTIONS(3850), - [sym__soft_line_ending] = ACTIONS(3850), - [sym__block_close] = ACTIONS(3850), - [sym__block_quote_start] = ACTIONS(3850), - [sym_atx_h1_marker] = ACTIONS(3850), - [sym_atx_h2_marker] = ACTIONS(3850), - [sym_atx_h3_marker] = ACTIONS(3850), - [sym_atx_h4_marker] = ACTIONS(3850), - [sym_atx_h5_marker] = ACTIONS(3850), - [sym_atx_h6_marker] = ACTIONS(3850), - [sym__thematic_break] = ACTIONS(3850), - [sym__list_marker_minus] = ACTIONS(3850), - [sym__list_marker_plus] = ACTIONS(3850), - [sym__list_marker_star] = ACTIONS(3850), - [sym__list_marker_parenthesis] = ACTIONS(3850), - [sym__list_marker_dot] = ACTIONS(3850), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3850), - [sym__list_marker_example] = ACTIONS(3850), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3850), - [sym__fenced_code_block_start_backtick] = ACTIONS(3850), - [sym_minus_metadata] = ACTIONS(3850), - [sym__pipe_table_start] = ACTIONS(3850), - [sym__fenced_div_start] = ACTIONS(3850), - [sym_ref_id_specifier] = ACTIONS(3850), - [sym__code_span_start] = ACTIONS(3850), - [sym__html_comment] = ACTIONS(3850), - [sym__autolink] = ACTIONS(3850), - [sym__highlight_span_start] = ACTIONS(3850), - [sym__insert_span_start] = ACTIONS(3850), - [sym__delete_span_start] = ACTIONS(3850), - [sym__edit_comment_span_start] = ACTIONS(3850), - [sym__single_quote_span_open] = ACTIONS(3850), - [sym__double_quote_span_open] = ACTIONS(3850), - [sym__shortcode_open_escaped] = ACTIONS(3850), - [sym__shortcode_open] = ACTIONS(3850), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3850), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3850), - [sym__cite_author_in_text] = ACTIONS(3850), - [sym__cite_suppress_author] = ACTIONS(3850), - [sym__strikeout_open] = ACTIONS(3850), - [sym__subscript_open] = ACTIONS(3850), - [sym__superscript_open] = ACTIONS(3850), - [sym__inline_note_start_token] = ACTIONS(3850), - [sym__strong_emphasis_open_star] = ACTIONS(3850), - [sym__strong_emphasis_open_underscore] = ACTIONS(3850), - [sym__emphasis_open_star] = ACTIONS(3850), - [sym__emphasis_open_underscore] = ACTIONS(3850), - [sym_inline_note_reference] = ACTIONS(3850), - [sym_html_element] = ACTIONS(3850), + [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)] = { - [anon_sym_COLON] = ACTIONS(3854), - [sym_entity_reference] = ACTIONS(3854), - [sym_numeric_character_reference] = ACTIONS(3854), - [anon_sym_LBRACK] = ACTIONS(3854), - [anon_sym_BANG_LBRACK] = ACTIONS(3854), - [anon_sym_DOLLAR] = ACTIONS(3856), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3854), - [anon_sym_LBRACE] = ACTIONS(3854), - [aux_sym_pandoc_str_token1] = ACTIONS(3856), - [anon_sym_PIPE] = ACTIONS(3854), - [aux_sym__prose_punctuation_token1] = ACTIONS(3856), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3856), - [sym__line_ending] = ACTIONS(3854), - [sym__soft_line_ending] = ACTIONS(3854), - [sym__block_close] = ACTIONS(3854), - [sym__block_quote_start] = ACTIONS(3854), - [sym_atx_h1_marker] = ACTIONS(3854), - [sym_atx_h2_marker] = ACTIONS(3854), - [sym_atx_h3_marker] = ACTIONS(3854), - [sym_atx_h4_marker] = ACTIONS(3854), - [sym_atx_h5_marker] = ACTIONS(3854), - [sym_atx_h6_marker] = ACTIONS(3854), - [sym__thematic_break] = ACTIONS(3854), - [sym__list_marker_minus] = ACTIONS(3854), - [sym__list_marker_plus] = ACTIONS(3854), - [sym__list_marker_star] = ACTIONS(3854), - [sym__list_marker_parenthesis] = ACTIONS(3854), - [sym__list_marker_dot] = ACTIONS(3854), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3854), - [sym__list_marker_example] = ACTIONS(3854), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3854), - [sym__fenced_code_block_start_backtick] = ACTIONS(3854), - [sym_minus_metadata] = ACTIONS(3854), - [sym__pipe_table_start] = ACTIONS(3854), - [sym__fenced_div_start] = ACTIONS(3854), - [sym_ref_id_specifier] = ACTIONS(3854), - [sym__code_span_start] = ACTIONS(3854), - [sym__html_comment] = ACTIONS(3854), - [sym__autolink] = ACTIONS(3854), - [sym__highlight_span_start] = ACTIONS(3854), - [sym__insert_span_start] = ACTIONS(3854), - [sym__delete_span_start] = ACTIONS(3854), - [sym__edit_comment_span_start] = ACTIONS(3854), - [sym__single_quote_span_open] = ACTIONS(3854), - [sym__double_quote_span_open] = ACTIONS(3854), - [sym__shortcode_open_escaped] = ACTIONS(3854), - [sym__shortcode_open] = ACTIONS(3854), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3854), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3854), - [sym__cite_author_in_text] = ACTIONS(3854), - [sym__cite_suppress_author] = ACTIONS(3854), - [sym__strikeout_open] = ACTIONS(3854), - [sym__subscript_open] = ACTIONS(3854), - [sym__superscript_open] = ACTIONS(3854), - [sym__inline_note_start_token] = ACTIONS(3854), - [sym__strong_emphasis_open_star] = ACTIONS(3854), - [sym__strong_emphasis_open_underscore] = ACTIONS(3854), - [sym__emphasis_open_star] = ACTIONS(3854), - [sym__emphasis_open_underscore] = ACTIONS(3854), - [sym_inline_note_reference] = ACTIONS(3854), - [sym_html_element] = ACTIONS(3854), + [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)] = { - [anon_sym_COLON] = ACTIONS(3858), - [sym_entity_reference] = ACTIONS(3858), - [sym_numeric_character_reference] = ACTIONS(3858), - [anon_sym_LBRACK] = ACTIONS(3858), - [anon_sym_BANG_LBRACK] = ACTIONS(3858), - [anon_sym_DOLLAR] = ACTIONS(3860), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3858), - [anon_sym_LBRACE] = ACTIONS(3858), - [aux_sym_pandoc_str_token1] = ACTIONS(3860), - [anon_sym_PIPE] = ACTIONS(3858), - [aux_sym__prose_punctuation_token1] = ACTIONS(3860), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3860), - [sym__line_ending] = ACTIONS(3858), - [sym__soft_line_ending] = ACTIONS(3858), - [sym__block_close] = ACTIONS(3858), - [sym__block_quote_start] = ACTIONS(3858), - [sym_atx_h1_marker] = ACTIONS(3858), - [sym_atx_h2_marker] = ACTIONS(3858), - [sym_atx_h3_marker] = ACTIONS(3858), - [sym_atx_h4_marker] = ACTIONS(3858), - [sym_atx_h5_marker] = ACTIONS(3858), - [sym_atx_h6_marker] = ACTIONS(3858), - [sym__thematic_break] = ACTIONS(3858), - [sym__list_marker_minus] = ACTIONS(3858), - [sym__list_marker_plus] = ACTIONS(3858), - [sym__list_marker_star] = ACTIONS(3858), - [sym__list_marker_parenthesis] = ACTIONS(3858), - [sym__list_marker_dot] = ACTIONS(3858), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3858), - [sym__list_marker_example] = ACTIONS(3858), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3858), - [sym__fenced_code_block_start_backtick] = ACTIONS(3858), - [sym_minus_metadata] = ACTIONS(3858), - [sym__pipe_table_start] = ACTIONS(3858), - [sym__fenced_div_start] = ACTIONS(3858), - [sym_ref_id_specifier] = ACTIONS(3858), - [sym__code_span_start] = ACTIONS(3858), - [sym__html_comment] = ACTIONS(3858), - [sym__autolink] = ACTIONS(3858), - [sym__highlight_span_start] = ACTIONS(3858), - [sym__insert_span_start] = ACTIONS(3858), - [sym__delete_span_start] = ACTIONS(3858), - [sym__edit_comment_span_start] = ACTIONS(3858), - [sym__single_quote_span_open] = ACTIONS(3858), - [sym__double_quote_span_open] = ACTIONS(3858), - [sym__shortcode_open_escaped] = ACTIONS(3858), - [sym__shortcode_open] = ACTIONS(3858), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3858), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3858), - [sym__cite_author_in_text] = ACTIONS(3858), - [sym__cite_suppress_author] = ACTIONS(3858), - [sym__strikeout_open] = ACTIONS(3858), - [sym__subscript_open] = ACTIONS(3858), - [sym__superscript_open] = ACTIONS(3858), - [sym__inline_note_start_token] = ACTIONS(3858), - [sym__strong_emphasis_open_star] = ACTIONS(3858), - [sym__strong_emphasis_open_underscore] = ACTIONS(3858), - [sym__emphasis_open_star] = ACTIONS(3858), - [sym__emphasis_open_underscore] = ACTIONS(3858), - [sym_inline_note_reference] = ACTIONS(3858), - [sym_html_element] = ACTIONS(3858), + [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)] = { - [anon_sym_COLON] = ACTIONS(3862), - [sym_entity_reference] = ACTIONS(3862), - [sym_numeric_character_reference] = ACTIONS(3862), - [anon_sym_LBRACK] = ACTIONS(3862), - [anon_sym_BANG_LBRACK] = ACTIONS(3862), - [anon_sym_DOLLAR] = ACTIONS(3864), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3862), - [anon_sym_LBRACE] = ACTIONS(3862), - [aux_sym_pandoc_str_token1] = ACTIONS(3864), - [anon_sym_PIPE] = ACTIONS(3862), - [aux_sym__prose_punctuation_token1] = ACTIONS(3864), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3864), - [sym__line_ending] = ACTIONS(3862), - [sym__soft_line_ending] = ACTIONS(3862), - [sym__block_close] = ACTIONS(3862), - [sym__block_quote_start] = ACTIONS(3862), - [sym_atx_h1_marker] = ACTIONS(3862), - [sym_atx_h2_marker] = ACTIONS(3862), - [sym_atx_h3_marker] = ACTIONS(3862), - [sym_atx_h4_marker] = ACTIONS(3862), - [sym_atx_h5_marker] = ACTIONS(3862), - [sym_atx_h6_marker] = ACTIONS(3862), - [sym__thematic_break] = ACTIONS(3862), - [sym__list_marker_minus] = ACTIONS(3862), - [sym__list_marker_plus] = ACTIONS(3862), - [sym__list_marker_star] = ACTIONS(3862), - [sym__list_marker_parenthesis] = ACTIONS(3862), - [sym__list_marker_dot] = ACTIONS(3862), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3862), - [sym__list_marker_example] = ACTIONS(3862), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3862), - [sym__fenced_code_block_start_backtick] = ACTIONS(3862), - [sym_minus_metadata] = ACTIONS(3862), - [sym__pipe_table_start] = ACTIONS(3862), - [sym__fenced_div_start] = ACTIONS(3862), - [sym_ref_id_specifier] = ACTIONS(3862), - [sym__code_span_start] = ACTIONS(3862), - [sym__html_comment] = ACTIONS(3862), - [sym__autolink] = ACTIONS(3862), - [sym__highlight_span_start] = ACTIONS(3862), - [sym__insert_span_start] = ACTIONS(3862), - [sym__delete_span_start] = ACTIONS(3862), - [sym__edit_comment_span_start] = ACTIONS(3862), - [sym__single_quote_span_open] = ACTIONS(3862), - [sym__double_quote_span_open] = ACTIONS(3862), - [sym__shortcode_open_escaped] = ACTIONS(3862), - [sym__shortcode_open] = ACTIONS(3862), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3862), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3862), - [sym__cite_author_in_text] = ACTIONS(3862), - [sym__cite_suppress_author] = ACTIONS(3862), - [sym__strikeout_open] = ACTIONS(3862), - [sym__subscript_open] = ACTIONS(3862), - [sym__superscript_open] = ACTIONS(3862), - [sym__inline_note_start_token] = ACTIONS(3862), - [sym__strong_emphasis_open_star] = ACTIONS(3862), - [sym__strong_emphasis_open_underscore] = ACTIONS(3862), - [sym__emphasis_open_star] = ACTIONS(3862), - [sym__emphasis_open_underscore] = ACTIONS(3862), - [sym_inline_note_reference] = ACTIONS(3862), - [sym_html_element] = ACTIONS(3862), + [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(3143), - [anon_sym_COLON] = ACTIONS(3143), - [sym_entity_reference] = ACTIONS(3143), - [sym_numeric_character_reference] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_BANG_LBRACK] = ACTIONS(3143), - [anon_sym_DOLLAR] = ACTIONS(3145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3143), - [aux_sym_pandoc_str_token1] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3143), - [aux_sym__prose_punctuation_token1] = ACTIONS(3145), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3145), - [sym__line_ending] = ACTIONS(3143), - [sym__soft_line_ending] = ACTIONS(3143), - [sym__block_quote_start] = ACTIONS(3143), - [sym_atx_h1_marker] = ACTIONS(3143), - [sym_atx_h2_marker] = ACTIONS(3143), - [sym_atx_h3_marker] = ACTIONS(3143), - [sym_atx_h4_marker] = ACTIONS(3143), - [sym_atx_h5_marker] = ACTIONS(3143), - [sym_atx_h6_marker] = ACTIONS(3143), - [sym__thematic_break] = ACTIONS(3143), - [sym__list_marker_minus] = ACTIONS(3143), - [sym__list_marker_plus] = ACTIONS(3143), - [sym__list_marker_star] = ACTIONS(3143), - [sym__list_marker_parenthesis] = ACTIONS(3143), - [sym__list_marker_dot] = ACTIONS(3143), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_example] = ACTIONS(3143), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3143), - [sym__fenced_code_block_start_backtick] = ACTIONS(3143), - [sym_minus_metadata] = ACTIONS(3143), - [sym__pipe_table_start] = ACTIONS(3143), - [sym__fenced_div_start] = ACTIONS(3143), - [sym_ref_id_specifier] = ACTIONS(3143), - [sym__code_span_start] = ACTIONS(3143), - [sym__html_comment] = ACTIONS(3143), - [sym__autolink] = ACTIONS(3143), - [sym__highlight_span_start] = ACTIONS(3143), - [sym__insert_span_start] = ACTIONS(3143), - [sym__delete_span_start] = ACTIONS(3143), - [sym__edit_comment_span_start] = ACTIONS(3143), - [sym__single_quote_span_open] = ACTIONS(3143), - [sym__double_quote_span_open] = ACTIONS(3143), - [sym__shortcode_open_escaped] = ACTIONS(3143), - [sym__shortcode_open] = ACTIONS(3143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3143), - [sym__cite_author_in_text] = ACTIONS(3143), - [sym__cite_suppress_author] = ACTIONS(3143), - [sym__strikeout_open] = ACTIONS(3143), - [sym__subscript_open] = ACTIONS(3143), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3143), - [sym__strong_emphasis_open_star] = ACTIONS(3143), - [sym__strong_emphasis_open_underscore] = ACTIONS(3143), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3143), - [sym_inline_note_reference] = ACTIONS(3143), - [sym_html_element] = ACTIONS(3143), + [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)] = { - [sym_pandoc_span] = STATE(588), - [sym_pandoc_image] = STATE(588), - [sym_pandoc_math] = STATE(588), - [sym_pandoc_display_math] = STATE(588), - [sym_pandoc_code_span] = STATE(588), - [sym_pandoc_single_quote] = STATE(588), - [sym_pandoc_double_quote] = STATE(588), - [sym_insert] = STATE(588), - [sym_delete] = STATE(588), - [sym_edit_comment] = STATE(588), - [sym_highlight] = STATE(588), - [sym__pandoc_attr_specifier] = STATE(588), - [sym__inline_element] = STATE(588), - [sym_shortcode_escaped] = STATE(588), - [sym_shortcode] = STATE(588), - [sym_citation] = STATE(588), - [sym_inline_note] = STATE(588), - [sym_pandoc_superscript] = STATE(588), - [sym_pandoc_subscript] = STATE(588), - [sym_pandoc_strikeout] = STATE(588), - [sym_pandoc_emph] = STATE(588), - [sym_pandoc_strong] = STATE(588), - [sym_pandoc_str] = STATE(588), - [sym__prose_punctuation] = STATE(588), - [sym_pandoc_line_break] = STATE(588), - [aux_sym__line_repeat1] = STATE(588), - [sym_entity_reference] = ACTIONS(4544), - [sym_numeric_character_reference] = ACTIONS(4544), - [anon_sym_LBRACK] = ACTIONS(4546), - [anon_sym_BANG_LBRACK] = ACTIONS(4548), - [anon_sym_DOLLAR] = ACTIONS(4550), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), - [anon_sym_LBRACE] = ACTIONS(4554), - [aux_sym_pandoc_str_token1] = ACTIONS(4556), - [anon_sym_PIPE] = ACTIONS(4558), - [aux_sym__prose_punctuation_token1] = ACTIONS(4560), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4562), - [sym__whitespace] = ACTIONS(4564), - [sym__soft_line_ending] = ACTIONS(3460), - [sym__code_span_start] = ACTIONS(4566), - [sym__html_comment] = ACTIONS(4544), - [sym__autolink] = ACTIONS(4544), - [sym__highlight_span_start] = ACTIONS(4568), - [sym__insert_span_start] = ACTIONS(4570), - [sym__delete_span_start] = ACTIONS(4572), - [sym__edit_comment_span_start] = ACTIONS(4574), - [sym__single_quote_span_open] = ACTIONS(4576), - [sym__double_quote_span_open] = ACTIONS(4578), - [sym__shortcode_open_escaped] = ACTIONS(4580), - [sym__shortcode_open] = ACTIONS(4582), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4584), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4586), - [sym__cite_author_in_text] = ACTIONS(4588), - [sym__cite_suppress_author] = ACTIONS(4590), - [sym__strikeout_open] = ACTIONS(4592), - [sym__subscript_open] = ACTIONS(4594), - [sym__superscript_open] = ACTIONS(4596), - [sym__superscript_close] = ACTIONS(3460), - [sym__inline_note_start_token] = ACTIONS(4598), - [sym__strong_emphasis_open_star] = ACTIONS(4600), - [sym__strong_emphasis_open_underscore] = ACTIONS(4602), - [sym__emphasis_open_star] = ACTIONS(4604), - [sym__emphasis_open_underscore] = ACTIONS(4606), - [sym_inline_note_reference] = ACTIONS(4544), - [sym_html_element] = ACTIONS(4544), + [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)] = { - [anon_sym_COLON] = ACTIONS(3866), - [sym_entity_reference] = ACTIONS(3866), - [sym_numeric_character_reference] = ACTIONS(3866), - [anon_sym_LBRACK] = ACTIONS(3866), - [anon_sym_BANG_LBRACK] = ACTIONS(3866), - [anon_sym_DOLLAR] = ACTIONS(3868), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3866), - [anon_sym_LBRACE] = ACTIONS(3866), - [aux_sym_pandoc_str_token1] = ACTIONS(3868), - [anon_sym_PIPE] = ACTIONS(3866), - [aux_sym__prose_punctuation_token1] = ACTIONS(3868), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3868), - [sym__line_ending] = ACTIONS(3866), - [sym__soft_line_ending] = ACTIONS(3866), - [sym__block_close] = ACTIONS(3866), - [sym__block_quote_start] = ACTIONS(3866), - [sym_atx_h1_marker] = ACTIONS(3866), - [sym_atx_h2_marker] = ACTIONS(3866), - [sym_atx_h3_marker] = ACTIONS(3866), - [sym_atx_h4_marker] = ACTIONS(3866), - [sym_atx_h5_marker] = ACTIONS(3866), - [sym_atx_h6_marker] = ACTIONS(3866), - [sym__thematic_break] = ACTIONS(3866), - [sym__list_marker_minus] = ACTIONS(3866), - [sym__list_marker_plus] = ACTIONS(3866), - [sym__list_marker_star] = ACTIONS(3866), - [sym__list_marker_parenthesis] = ACTIONS(3866), - [sym__list_marker_dot] = ACTIONS(3866), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3866), - [sym__list_marker_example] = ACTIONS(3866), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3866), - [sym__fenced_code_block_start_backtick] = ACTIONS(3866), - [sym_minus_metadata] = ACTIONS(3866), - [sym__pipe_table_start] = ACTIONS(3866), - [sym__fenced_div_start] = ACTIONS(3866), - [sym_ref_id_specifier] = ACTIONS(3866), - [sym__code_span_start] = ACTIONS(3866), - [sym__html_comment] = ACTIONS(3866), - [sym__autolink] = ACTIONS(3866), - [sym__highlight_span_start] = ACTIONS(3866), - [sym__insert_span_start] = ACTIONS(3866), - [sym__delete_span_start] = ACTIONS(3866), - [sym__edit_comment_span_start] = ACTIONS(3866), - [sym__single_quote_span_open] = ACTIONS(3866), - [sym__double_quote_span_open] = ACTIONS(3866), - [sym__shortcode_open_escaped] = ACTIONS(3866), - [sym__shortcode_open] = ACTIONS(3866), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3866), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3866), - [sym__cite_author_in_text] = ACTIONS(3866), - [sym__cite_suppress_author] = ACTIONS(3866), - [sym__strikeout_open] = ACTIONS(3866), - [sym__subscript_open] = ACTIONS(3866), - [sym__superscript_open] = ACTIONS(3866), - [sym__inline_note_start_token] = ACTIONS(3866), - [sym__strong_emphasis_open_star] = ACTIONS(3866), - [sym__strong_emphasis_open_underscore] = ACTIONS(3866), - [sym__emphasis_open_star] = ACTIONS(3866), - [sym__emphasis_open_underscore] = ACTIONS(3866), - [sym_inline_note_reference] = ACTIONS(3866), - [sym_html_element] = ACTIONS(3866), + [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)] = { - [anon_sym_COLON] = ACTIONS(3870), - [sym_entity_reference] = ACTIONS(3870), - [sym_numeric_character_reference] = ACTIONS(3870), - [anon_sym_LBRACK] = ACTIONS(3870), - [anon_sym_BANG_LBRACK] = ACTIONS(3870), - [anon_sym_DOLLAR] = ACTIONS(3872), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3870), - [aux_sym_pandoc_str_token1] = ACTIONS(3872), - [anon_sym_PIPE] = ACTIONS(3870), - [aux_sym__prose_punctuation_token1] = ACTIONS(3872), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3872), - [sym__line_ending] = ACTIONS(3870), - [sym__soft_line_ending] = ACTIONS(3870), - [sym__block_close] = ACTIONS(3870), - [sym__block_quote_start] = ACTIONS(3870), - [sym_atx_h1_marker] = ACTIONS(3870), - [sym_atx_h2_marker] = ACTIONS(3870), - [sym_atx_h3_marker] = ACTIONS(3870), - [sym_atx_h4_marker] = ACTIONS(3870), - [sym_atx_h5_marker] = ACTIONS(3870), - [sym_atx_h6_marker] = ACTIONS(3870), - [sym__thematic_break] = ACTIONS(3870), - [sym__list_marker_minus] = ACTIONS(3870), - [sym__list_marker_plus] = ACTIONS(3870), - [sym__list_marker_star] = ACTIONS(3870), - [sym__list_marker_parenthesis] = ACTIONS(3870), - [sym__list_marker_dot] = ACTIONS(3870), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3870), - [sym__list_marker_example] = ACTIONS(3870), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3870), - [sym__fenced_code_block_start_backtick] = ACTIONS(3870), - [sym_minus_metadata] = ACTIONS(3870), - [sym__pipe_table_start] = ACTIONS(3870), - [sym__fenced_div_start] = ACTIONS(3870), - [sym_ref_id_specifier] = ACTIONS(3870), - [sym__code_span_start] = ACTIONS(3870), - [sym__html_comment] = ACTIONS(3870), - [sym__autolink] = ACTIONS(3870), - [sym__highlight_span_start] = ACTIONS(3870), - [sym__insert_span_start] = ACTIONS(3870), - [sym__delete_span_start] = ACTIONS(3870), - [sym__edit_comment_span_start] = ACTIONS(3870), - [sym__single_quote_span_open] = ACTIONS(3870), - [sym__double_quote_span_open] = ACTIONS(3870), - [sym__shortcode_open_escaped] = ACTIONS(3870), - [sym__shortcode_open] = ACTIONS(3870), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3870), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3870), - [sym__cite_author_in_text] = ACTIONS(3870), - [sym__cite_suppress_author] = ACTIONS(3870), - [sym__strikeout_open] = ACTIONS(3870), - [sym__subscript_open] = ACTIONS(3870), - [sym__superscript_open] = ACTIONS(3870), - [sym__inline_note_start_token] = ACTIONS(3870), - [sym__strong_emphasis_open_star] = ACTIONS(3870), - [sym__strong_emphasis_open_underscore] = ACTIONS(3870), - [sym__emphasis_open_star] = ACTIONS(3870), - [sym__emphasis_open_underscore] = ACTIONS(3870), - [sym_inline_note_reference] = ACTIONS(3870), - [sym_html_element] = ACTIONS(3870), + [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(3216), - [sym_entity_reference] = ACTIONS(3216), - [sym_numeric_character_reference] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_BANG_LBRACK] = ACTIONS(3216), - [anon_sym_DOLLAR] = ACTIONS(3218), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [aux_sym_pandoc_str_token1] = ACTIONS(3218), - [anon_sym_PIPE] = ACTIONS(3216), - [aux_sym__prose_punctuation_token1] = ACTIONS(3218), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3218), - [sym__line_ending] = ACTIONS(3216), - [sym__soft_line_ending] = ACTIONS(3216), - [sym__block_close] = ACTIONS(3216), - [sym__block_quote_start] = ACTIONS(3216), - [sym_atx_h1_marker] = ACTIONS(3216), - [sym_atx_h2_marker] = ACTIONS(3216), - [sym_atx_h3_marker] = ACTIONS(3216), - [sym_atx_h4_marker] = ACTIONS(3216), - [sym_atx_h5_marker] = ACTIONS(3216), - [sym_atx_h6_marker] = ACTIONS(3216), - [sym__thematic_break] = ACTIONS(3216), - [sym__list_marker_minus] = ACTIONS(3216), - [sym__list_marker_plus] = ACTIONS(3216), - [sym__list_marker_star] = ACTIONS(3216), - [sym__list_marker_parenthesis] = ACTIONS(3216), - [sym__list_marker_dot] = ACTIONS(3216), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3216), - [sym__list_marker_example] = ACTIONS(3216), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3216), - [sym__fenced_code_block_start_backtick] = ACTIONS(3216), - [sym_minus_metadata] = ACTIONS(3216), - [sym__pipe_table_start] = ACTIONS(3216), - [sym__fenced_div_start] = ACTIONS(3216), - [sym_ref_id_specifier] = ACTIONS(3216), - [sym__code_span_start] = ACTIONS(3216), - [sym__html_comment] = ACTIONS(3216), - [sym__autolink] = ACTIONS(3216), - [sym__highlight_span_start] = ACTIONS(3216), - [sym__insert_span_start] = ACTIONS(3216), - [sym__delete_span_start] = ACTIONS(3216), - [sym__edit_comment_span_start] = ACTIONS(3216), - [sym__single_quote_span_open] = ACTIONS(3216), - [sym__double_quote_span_open] = ACTIONS(3216), - [sym__shortcode_open_escaped] = ACTIONS(3216), - [sym__shortcode_open] = ACTIONS(3216), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3216), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3216), - [sym__cite_author_in_text] = ACTIONS(3216), - [sym__cite_suppress_author] = ACTIONS(3216), - [sym__strikeout_open] = ACTIONS(3216), - [sym__subscript_open] = ACTIONS(3216), - [sym__superscript_open] = ACTIONS(3216), - [sym__inline_note_start_token] = ACTIONS(3216), - [sym__strong_emphasis_open_star] = ACTIONS(3216), - [sym__strong_emphasis_open_underscore] = ACTIONS(3216), - [sym__emphasis_open_star] = ACTIONS(3216), - [sym__emphasis_open_underscore] = ACTIONS(3216), - [sym_inline_note_reference] = ACTIONS(3216), - [sym_html_element] = ACTIONS(3216), + [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)] = { - [sym_pandoc_span] = STATE(589), - [sym_pandoc_image] = STATE(589), - [sym_pandoc_math] = STATE(589), - [sym_pandoc_display_math] = STATE(589), - [sym_pandoc_code_span] = STATE(589), - [sym_pandoc_single_quote] = STATE(589), - [sym_pandoc_double_quote] = STATE(589), - [sym_insert] = STATE(589), - [sym_delete] = STATE(589), - [sym_edit_comment] = STATE(589), - [sym_highlight] = STATE(589), - [sym__pandoc_attr_specifier] = STATE(589), - [sym__inline_element] = STATE(589), - [sym_shortcode_escaped] = STATE(589), - [sym_shortcode] = STATE(589), - [sym_citation] = STATE(589), - [sym_inline_note] = STATE(589), - [sym_pandoc_superscript] = STATE(589), - [sym_pandoc_subscript] = STATE(589), - [sym_pandoc_strikeout] = STATE(589), - [sym_pandoc_emph] = STATE(589), - [sym_pandoc_strong] = STATE(589), - [sym_pandoc_str] = STATE(589), - [sym__prose_punctuation] = STATE(589), - [sym_pandoc_line_break] = STATE(589), - [aux_sym__line_repeat1] = STATE(589), - [sym_entity_reference] = ACTIONS(4608), - [sym_numeric_character_reference] = ACTIONS(4608), - [anon_sym_LBRACK] = ACTIONS(4546), - [anon_sym_BANG_LBRACK] = ACTIONS(4548), - [anon_sym_DOLLAR] = ACTIONS(4550), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4552), - [anon_sym_LBRACE] = ACTIONS(4554), - [aux_sym_pandoc_str_token1] = ACTIONS(4556), - [anon_sym_PIPE] = ACTIONS(4558), - [aux_sym__prose_punctuation_token1] = ACTIONS(4610), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4562), - [sym__whitespace] = ACTIONS(4564), - [sym__soft_line_ending] = ACTIONS(3470), - [sym__code_span_start] = ACTIONS(4566), - [sym__html_comment] = ACTIONS(4608), - [sym__autolink] = ACTIONS(4608), - [sym__highlight_span_start] = ACTIONS(4568), - [sym__insert_span_start] = ACTIONS(4570), - [sym__delete_span_start] = ACTIONS(4572), - [sym__edit_comment_span_start] = ACTIONS(4574), - [sym__single_quote_span_open] = ACTIONS(4576), - [sym__double_quote_span_open] = ACTIONS(4578), - [sym__shortcode_open_escaped] = ACTIONS(4580), - [sym__shortcode_open] = ACTIONS(4582), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4584), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4586), - [sym__cite_author_in_text] = ACTIONS(4588), - [sym__cite_suppress_author] = ACTIONS(4590), - [sym__strikeout_open] = ACTIONS(4592), - [sym__subscript_open] = ACTIONS(4594), - [sym__superscript_open] = ACTIONS(4596), - [sym__superscript_close] = ACTIONS(3470), - [sym__inline_note_start_token] = ACTIONS(4598), - [sym__strong_emphasis_open_star] = ACTIONS(4600), - [sym__strong_emphasis_open_underscore] = ACTIONS(4602), - [sym__emphasis_open_star] = ACTIONS(4604), - [sym__emphasis_open_underscore] = ACTIONS(4606), - [sym_inline_note_reference] = ACTIONS(4608), - [sym_html_element] = ACTIONS(4608), + [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_pandoc_span] = STATE(589), - [sym_pandoc_image] = STATE(589), - [sym_pandoc_math] = STATE(589), - [sym_pandoc_display_math] = STATE(589), - [sym_pandoc_code_span] = STATE(589), - [sym_pandoc_single_quote] = STATE(589), - [sym_pandoc_double_quote] = STATE(589), - [sym_insert] = STATE(589), - [sym_delete] = STATE(589), - [sym_edit_comment] = STATE(589), - [sym_highlight] = STATE(589), - [sym__pandoc_attr_specifier] = STATE(589), - [sym__inline_element] = STATE(589), - [sym_shortcode_escaped] = STATE(589), - [sym_shortcode] = STATE(589), - [sym_citation] = STATE(589), - [sym_inline_note] = STATE(589), - [sym_pandoc_superscript] = STATE(589), - [sym_pandoc_subscript] = STATE(589), - [sym_pandoc_strikeout] = STATE(589), - [sym_pandoc_emph] = STATE(589), - [sym_pandoc_strong] = STATE(589), - [sym_pandoc_str] = STATE(589), - [sym__prose_punctuation] = STATE(589), - [sym_pandoc_line_break] = STATE(589), - [aux_sym__line_repeat1] = STATE(589), - [sym_entity_reference] = ACTIONS(4612), - [sym_numeric_character_reference] = ACTIONS(4612), - [anon_sym_LBRACK] = ACTIONS(4615), - [anon_sym_BANG_LBRACK] = ACTIONS(4618), - [anon_sym_DOLLAR] = ACTIONS(4621), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4624), - [anon_sym_LBRACE] = ACTIONS(4627), - [aux_sym_pandoc_str_token1] = ACTIONS(4630), - [anon_sym_PIPE] = ACTIONS(4633), - [aux_sym__prose_punctuation_token1] = ACTIONS(4636), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4639), - [sym__whitespace] = ACTIONS(4642), - [sym__soft_line_ending] = ACTIONS(3485), - [sym__code_span_start] = ACTIONS(4645), - [sym__html_comment] = ACTIONS(4612), - [sym__autolink] = ACTIONS(4612), - [sym__highlight_span_start] = ACTIONS(4648), - [sym__insert_span_start] = ACTIONS(4651), - [sym__delete_span_start] = ACTIONS(4654), - [sym__edit_comment_span_start] = ACTIONS(4657), - [sym__single_quote_span_open] = ACTIONS(4660), - [sym__double_quote_span_open] = ACTIONS(4663), - [sym__shortcode_open_escaped] = ACTIONS(4666), - [sym__shortcode_open] = ACTIONS(4669), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4672), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4675), - [sym__cite_author_in_text] = ACTIONS(4678), - [sym__cite_suppress_author] = ACTIONS(4681), - [sym__strikeout_open] = ACTIONS(4684), - [sym__subscript_open] = ACTIONS(4687), - [sym__superscript_open] = ACTIONS(4690), - [sym__superscript_close] = ACTIONS(3485), - [sym__inline_note_start_token] = ACTIONS(4693), - [sym__strong_emphasis_open_star] = ACTIONS(4696), - [sym__strong_emphasis_open_underscore] = ACTIONS(4699), - [sym__emphasis_open_star] = ACTIONS(4702), - [sym__emphasis_open_underscore] = ACTIONS(4705), - [sym_inline_note_reference] = ACTIONS(4612), - [sym_html_element] = ACTIONS(4612), + [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_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__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_line_break] = STATE(591), - [aux_sym__line_repeat1] = STATE(591), - [sym_entity_reference] = ACTIONS(4708), - [sym_numeric_character_reference] = ACTIONS(4708), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_inline_note_token1] = ACTIONS(3460), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(4710), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(4712), - [sym__soft_line_ending] = ACTIONS(3460), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(4708), - [sym__autolink] = ACTIONS(4708), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(4708), - [sym_html_element] = ACTIONS(4708), + [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(592), - [sym_pandoc_image] = STATE(592), - [sym_pandoc_math] = STATE(592), - [sym_pandoc_display_math] = STATE(592), - [sym_pandoc_code_span] = STATE(592), - [sym_pandoc_single_quote] = STATE(592), - [sym_pandoc_double_quote] = STATE(592), - [sym_insert] = STATE(592), - [sym_delete] = STATE(592), - [sym_edit_comment] = STATE(592), - [sym_highlight] = STATE(592), - [sym__pandoc_attr_specifier] = STATE(592), - [sym__inline_element] = STATE(592), - [sym_shortcode_escaped] = STATE(592), - [sym_shortcode] = STATE(592), - [sym_citation] = STATE(592), - [sym_inline_note] = STATE(592), - [sym_pandoc_superscript] = STATE(592), - [sym_pandoc_subscript] = STATE(592), - [sym_pandoc_strikeout] = STATE(592), - [sym_pandoc_emph] = STATE(592), - [sym_pandoc_strong] = STATE(592), - [sym_pandoc_str] = STATE(592), - [sym__prose_punctuation] = STATE(592), - [sym_pandoc_line_break] = STATE(592), - [aux_sym__line_repeat1] = STATE(592), - [sym_entity_reference] = ACTIONS(4714), - [sym_numeric_character_reference] = ACTIONS(4714), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_BANG_LBRACK] = ACTIONS(2901), - [anon_sym_DOLLAR] = ACTIONS(2903), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2907), - [aux_sym_inline_note_token1] = ACTIONS(3470), - [aux_sym_pandoc_str_token1] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [aux_sym__prose_punctuation_token1] = ACTIONS(4716), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2915), - [sym__whitespace] = ACTIONS(4712), - [sym__soft_line_ending] = ACTIONS(3470), - [sym__code_span_start] = ACTIONS(2919), - [sym__html_comment] = ACTIONS(4714), - [sym__autolink] = ACTIONS(4714), - [sym__highlight_span_start] = ACTIONS(2921), - [sym__insert_span_start] = ACTIONS(2923), - [sym__delete_span_start] = ACTIONS(2925), - [sym__edit_comment_span_start] = ACTIONS(2927), - [sym__single_quote_span_open] = ACTIONS(2929), - [sym__double_quote_span_open] = ACTIONS(2931), - [sym__shortcode_open_escaped] = ACTIONS(2933), - [sym__shortcode_open] = ACTIONS(2935), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2937), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2939), - [sym__cite_author_in_text] = ACTIONS(2941), - [sym__cite_suppress_author] = ACTIONS(2943), - [sym__strikeout_open] = ACTIONS(2945), - [sym__subscript_open] = ACTIONS(2947), - [sym__superscript_open] = ACTIONS(2949), - [sym__inline_note_start_token] = ACTIONS(2951), - [sym__strong_emphasis_open_star] = ACTIONS(2953), - [sym__strong_emphasis_open_underscore] = ACTIONS(2955), - [sym__emphasis_open_star] = ACTIONS(2957), - [sym__emphasis_open_underscore] = ACTIONS(2959), - [sym_inline_note_reference] = ACTIONS(4714), - [sym_html_element] = ACTIONS(4714), + [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), + [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(3819), + [sym__whitespace] = ACTIONS(3821), + [sym__line_ending] = ACTIONS(3487), + [sym__soft_line_ending] = ACTIONS(3487), + [sym__eof] = ACTIONS(3487), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(3817), + [sym__autolink] = ACTIONS(3817), + [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(3817), + [sym_html_element] = ACTIONS(3817), + [sym__pandoc_line_break] = ACTIONS(3817), }, [STATE(592)] = { - [sym_pandoc_span] = STATE(592), - [sym_pandoc_image] = STATE(592), - [sym_pandoc_math] = STATE(592), - [sym_pandoc_display_math] = STATE(592), - [sym_pandoc_code_span] = STATE(592), - [sym_pandoc_single_quote] = STATE(592), - [sym_pandoc_double_quote] = STATE(592), - [sym_insert] = STATE(592), - [sym_delete] = STATE(592), - [sym_edit_comment] = STATE(592), - [sym_highlight] = STATE(592), - [sym__pandoc_attr_specifier] = STATE(592), - [sym__inline_element] = STATE(592), - [sym_shortcode_escaped] = STATE(592), - [sym_shortcode] = STATE(592), - [sym_citation] = STATE(592), - [sym_inline_note] = STATE(592), - [sym_pandoc_superscript] = STATE(592), - [sym_pandoc_subscript] = STATE(592), - [sym_pandoc_strikeout] = STATE(592), - [sym_pandoc_emph] = STATE(592), - [sym_pandoc_strong] = STATE(592), - [sym_pandoc_str] = STATE(592), - [sym__prose_punctuation] = STATE(592), - [sym_pandoc_line_break] = STATE(592), - [aux_sym__line_repeat1] = STATE(592), - [sym_entity_reference] = ACTIONS(4718), - [sym_numeric_character_reference] = ACTIONS(4718), - [anon_sym_LBRACK] = ACTIONS(4721), - [anon_sym_BANG_LBRACK] = ACTIONS(4724), - [anon_sym_DOLLAR] = ACTIONS(4727), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4730), - [anon_sym_LBRACE] = ACTIONS(4733), - [aux_sym_inline_note_token1] = ACTIONS(3485), - [aux_sym_pandoc_str_token1] = ACTIONS(4736), - [anon_sym_PIPE] = ACTIONS(4739), - [aux_sym__prose_punctuation_token1] = ACTIONS(4742), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4745), - [sym__whitespace] = ACTIONS(4748), - [sym__soft_line_ending] = ACTIONS(3485), - [sym__code_span_start] = ACTIONS(4751), - [sym__html_comment] = ACTIONS(4718), - [sym__autolink] = ACTIONS(4718), - [sym__highlight_span_start] = ACTIONS(4754), - [sym__insert_span_start] = ACTIONS(4757), - [sym__delete_span_start] = ACTIONS(4760), - [sym__edit_comment_span_start] = ACTIONS(4763), - [sym__single_quote_span_open] = ACTIONS(4766), - [sym__double_quote_span_open] = ACTIONS(4769), - [sym__shortcode_open_escaped] = ACTIONS(4772), - [sym__shortcode_open] = ACTIONS(4775), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4778), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4781), - [sym__cite_author_in_text] = ACTIONS(4784), - [sym__cite_suppress_author] = ACTIONS(4787), - [sym__strikeout_open] = ACTIONS(4790), - [sym__subscript_open] = ACTIONS(4793), - [sym__superscript_open] = ACTIONS(4796), - [sym__inline_note_start_token] = ACTIONS(4799), - [sym__strong_emphasis_open_star] = ACTIONS(4802), - [sym__strong_emphasis_open_underscore] = ACTIONS(4805), - [sym__emphasis_open_star] = ACTIONS(4808), - [sym__emphasis_open_underscore] = ACTIONS(4811), - [sym_inline_note_reference] = ACTIONS(4718), - [sym_html_element] = ACTIONS(4718), + [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)] = { - [sym_pandoc_span] = STATE(593), - [sym_pandoc_image] = STATE(593), - [sym_pandoc_math] = STATE(593), - [sym_pandoc_display_math] = STATE(593), - [sym_pandoc_code_span] = STATE(593), - [sym_pandoc_single_quote] = STATE(593), - [sym_pandoc_double_quote] = STATE(593), - [sym_insert] = STATE(593), - [sym_delete] = STATE(593), - [sym_edit_comment] = STATE(593), - [sym_highlight] = STATE(593), - [sym__pandoc_attr_specifier] = STATE(593), - [sym__inline_element] = STATE(593), - [sym_shortcode_escaped] = STATE(593), - [sym_shortcode] = STATE(593), - [sym_citation] = STATE(593), - [sym_inline_note] = STATE(593), - [sym_pandoc_superscript] = STATE(593), - [sym_pandoc_subscript] = STATE(593), - [sym_pandoc_strikeout] = STATE(593), - [sym_pandoc_emph] = STATE(593), - [sym_pandoc_strong] = STATE(593), - [sym_pandoc_str] = STATE(593), - [sym__prose_punctuation] = STATE(593), - [sym_pandoc_line_break] = STATE(593), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(593), - [sym_entity_reference] = ACTIONS(4814), - [sym_numeric_character_reference] = ACTIONS(4814), - [anon_sym_LBRACK] = ACTIONS(4817), - [anon_sym_BANG_LBRACK] = ACTIONS(4820), - [anon_sym_DOLLAR] = ACTIONS(4823), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4826), - [anon_sym_LBRACE] = ACTIONS(4829), - [aux_sym_pandoc_str_token1] = ACTIONS(4832), - [anon_sym_PIPE] = ACTIONS(4835), - [aux_sym__prose_punctuation_token1] = ACTIONS(4838), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4841), - [sym__whitespace] = ACTIONS(4844), - [sym__line_ending] = ACTIONS(3018), - [sym__code_span_start] = ACTIONS(4847), - [sym__html_comment] = ACTIONS(4814), - [sym__autolink] = ACTIONS(4814), - [sym__highlight_span_start] = ACTIONS(4850), - [sym__insert_span_start] = ACTIONS(4853), - [sym__delete_span_start] = ACTIONS(4856), - [sym__edit_comment_span_start] = ACTIONS(4859), - [sym__single_quote_span_open] = ACTIONS(4862), - [sym__double_quote_span_open] = ACTIONS(4865), - [sym__shortcode_open_escaped] = ACTIONS(4868), - [sym__shortcode_open] = ACTIONS(4871), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4874), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4877), - [sym__cite_author_in_text] = ACTIONS(4880), - [sym__cite_suppress_author] = ACTIONS(4883), - [sym__strikeout_open] = ACTIONS(4886), - [sym__subscript_open] = ACTIONS(4889), - [sym__superscript_open] = ACTIONS(4892), - [sym__inline_note_start_token] = ACTIONS(4895), - [sym__strong_emphasis_open_star] = ACTIONS(4898), - [sym__strong_emphasis_open_underscore] = ACTIONS(4901), - [sym__emphasis_open_star] = ACTIONS(4904), - [sym__emphasis_open_underscore] = ACTIONS(4907), - [sym_inline_note_reference] = ACTIONS(4814), - [sym_html_element] = ACTIONS(4814), - [sym__pipe_table_delimiter] = ACTIONS(3018), + [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)] = { - [anon_sym_COLON] = ACTIONS(3224), - [sym_entity_reference] = ACTIONS(3224), - [sym_numeric_character_reference] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_BANG_LBRACK] = ACTIONS(3224), - [anon_sym_DOLLAR] = ACTIONS(3226), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3224), - [aux_sym_pandoc_str_token1] = ACTIONS(3226), - [anon_sym_PIPE] = ACTIONS(3224), - [aux_sym__prose_punctuation_token1] = ACTIONS(3226), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3226), - [sym__line_ending] = ACTIONS(3224), - [sym__soft_line_ending] = ACTIONS(3224), - [sym__block_close] = ACTIONS(3224), - [sym__block_quote_start] = ACTIONS(3224), - [sym_atx_h1_marker] = ACTIONS(3224), - [sym_atx_h2_marker] = ACTIONS(3224), - [sym_atx_h3_marker] = ACTIONS(3224), - [sym_atx_h4_marker] = ACTIONS(3224), - [sym_atx_h5_marker] = ACTIONS(3224), - [sym_atx_h6_marker] = ACTIONS(3224), - [sym__thematic_break] = ACTIONS(3224), - [sym__list_marker_minus] = ACTIONS(3224), - [sym__list_marker_plus] = ACTIONS(3224), - [sym__list_marker_star] = ACTIONS(3224), - [sym__list_marker_parenthesis] = ACTIONS(3224), - [sym__list_marker_dot] = ACTIONS(3224), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_example] = ACTIONS(3224), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3224), - [sym__fenced_code_block_start_backtick] = ACTIONS(3224), - [sym_minus_metadata] = ACTIONS(3224), - [sym__pipe_table_start] = ACTIONS(3224), - [sym__fenced_div_start] = ACTIONS(3224), - [sym_ref_id_specifier] = ACTIONS(3224), - [sym__code_span_start] = ACTIONS(3224), - [sym__html_comment] = ACTIONS(3224), - [sym__autolink] = ACTIONS(3224), - [sym__highlight_span_start] = ACTIONS(3224), - [sym__insert_span_start] = ACTIONS(3224), - [sym__delete_span_start] = ACTIONS(3224), - [sym__edit_comment_span_start] = ACTIONS(3224), - [sym__single_quote_span_open] = ACTIONS(3224), - [sym__double_quote_span_open] = ACTIONS(3224), - [sym__shortcode_open_escaped] = ACTIONS(3224), - [sym__shortcode_open] = ACTIONS(3224), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3224), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3224), - [sym__cite_author_in_text] = ACTIONS(3224), - [sym__cite_suppress_author] = ACTIONS(3224), - [sym__strikeout_open] = ACTIONS(3224), - [sym__subscript_open] = ACTIONS(3224), - [sym__superscript_open] = ACTIONS(3224), - [sym__inline_note_start_token] = ACTIONS(3224), - [sym__strong_emphasis_open_star] = ACTIONS(3224), - [sym__strong_emphasis_open_underscore] = ACTIONS(3224), - [sym__emphasis_open_star] = ACTIONS(3224), - [sym__emphasis_open_underscore] = ACTIONS(3224), - [sym_inline_note_reference] = ACTIONS(3224), - [sym_html_element] = ACTIONS(3224), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3208), - [anon_sym_COLON] = ACTIONS(3208), - [sym_entity_reference] = ACTIONS(3208), - [sym_numeric_character_reference] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_BANG_LBRACK] = ACTIONS(3208), - [anon_sym_DOLLAR] = ACTIONS(3210), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3208), - [aux_sym_pandoc_str_token1] = ACTIONS(3210), - [anon_sym_PIPE] = ACTIONS(3208), - [aux_sym__prose_punctuation_token1] = ACTIONS(3210), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3210), - [sym__line_ending] = ACTIONS(3208), - [sym__soft_line_ending] = ACTIONS(3208), - [sym__block_quote_start] = ACTIONS(3208), - [sym_atx_h1_marker] = ACTIONS(3208), - [sym_atx_h2_marker] = ACTIONS(3208), - [sym_atx_h3_marker] = ACTIONS(3208), - [sym_atx_h4_marker] = ACTIONS(3208), - [sym_atx_h5_marker] = ACTIONS(3208), - [sym_atx_h6_marker] = ACTIONS(3208), - [sym__thematic_break] = ACTIONS(3208), - [sym__list_marker_minus] = ACTIONS(3208), - [sym__list_marker_plus] = ACTIONS(3208), - [sym__list_marker_star] = ACTIONS(3208), - [sym__list_marker_parenthesis] = ACTIONS(3208), - [sym__list_marker_dot] = ACTIONS(3208), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_example] = ACTIONS(3208), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3208), - [sym__fenced_code_block_start_backtick] = ACTIONS(3208), - [sym_minus_metadata] = ACTIONS(3208), - [sym__pipe_table_start] = ACTIONS(3208), - [sym__fenced_div_start] = ACTIONS(3208), - [sym_ref_id_specifier] = ACTIONS(3208), - [sym__code_span_start] = ACTIONS(3208), - [sym__html_comment] = ACTIONS(3208), - [sym__autolink] = ACTIONS(3208), - [sym__highlight_span_start] = ACTIONS(3208), - [sym__insert_span_start] = ACTIONS(3208), - [sym__delete_span_start] = ACTIONS(3208), - [sym__edit_comment_span_start] = ACTIONS(3208), - [sym__single_quote_span_open] = ACTIONS(3208), - [sym__double_quote_span_open] = ACTIONS(3208), - [sym__shortcode_open_escaped] = ACTIONS(3208), - [sym__shortcode_open] = ACTIONS(3208), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3208), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3208), - [sym__cite_author_in_text] = ACTIONS(3208), - [sym__cite_suppress_author] = ACTIONS(3208), - [sym__strikeout_open] = ACTIONS(3208), - [sym__subscript_open] = ACTIONS(3208), - [sym__superscript_open] = ACTIONS(3208), - [sym__inline_note_start_token] = ACTIONS(3208), - [sym__strong_emphasis_open_star] = ACTIONS(3208), - [sym__strong_emphasis_open_underscore] = ACTIONS(3208), - [sym__emphasis_open_star] = ACTIONS(3208), - [sym__emphasis_open_underscore] = ACTIONS(3208), - [sym_inline_note_reference] = ACTIONS(3208), - [sym_html_element] = ACTIONS(3208), + [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)] = { - [ts_builtin_sym_end] = ACTIONS(3224), - [anon_sym_COLON] = ACTIONS(3224), - [sym_entity_reference] = ACTIONS(3224), - [sym_numeric_character_reference] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_BANG_LBRACK] = ACTIONS(3224), - [anon_sym_DOLLAR] = ACTIONS(3226), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3224), - [aux_sym_pandoc_str_token1] = ACTIONS(3226), - [anon_sym_PIPE] = ACTIONS(3224), - [aux_sym__prose_punctuation_token1] = ACTIONS(3226), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3226), - [sym__line_ending] = ACTIONS(3224), - [sym__soft_line_ending] = ACTIONS(3224), - [sym__block_quote_start] = ACTIONS(3224), - [sym_atx_h1_marker] = ACTIONS(3224), - [sym_atx_h2_marker] = ACTIONS(3224), - [sym_atx_h3_marker] = ACTIONS(3224), - [sym_atx_h4_marker] = ACTIONS(3224), - [sym_atx_h5_marker] = ACTIONS(3224), - [sym_atx_h6_marker] = ACTIONS(3224), - [sym__thematic_break] = ACTIONS(3224), - [sym__list_marker_minus] = ACTIONS(3224), - [sym__list_marker_plus] = ACTIONS(3224), - [sym__list_marker_star] = ACTIONS(3224), - [sym__list_marker_parenthesis] = ACTIONS(3224), - [sym__list_marker_dot] = ACTIONS(3224), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3224), - [sym__list_marker_example] = ACTIONS(3224), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3224), - [sym__fenced_code_block_start_backtick] = ACTIONS(3224), - [sym_minus_metadata] = ACTIONS(3224), - [sym__pipe_table_start] = ACTIONS(3224), - [sym__fenced_div_start] = ACTIONS(3224), - [sym_ref_id_specifier] = ACTIONS(3224), - [sym__code_span_start] = ACTIONS(3224), - [sym__html_comment] = ACTIONS(3224), - [sym__autolink] = ACTIONS(3224), - [sym__highlight_span_start] = ACTIONS(3224), - [sym__insert_span_start] = ACTIONS(3224), - [sym__delete_span_start] = ACTIONS(3224), - [sym__edit_comment_span_start] = ACTIONS(3224), - [sym__single_quote_span_open] = ACTIONS(3224), - [sym__double_quote_span_open] = ACTIONS(3224), - [sym__shortcode_open_escaped] = ACTIONS(3224), - [sym__shortcode_open] = ACTIONS(3224), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3224), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3224), - [sym__cite_author_in_text] = ACTIONS(3224), - [sym__cite_suppress_author] = ACTIONS(3224), - [sym__strikeout_open] = ACTIONS(3224), - [sym__subscript_open] = ACTIONS(3224), - [sym__superscript_open] = ACTIONS(3224), - [sym__inline_note_start_token] = ACTIONS(3224), - [sym__strong_emphasis_open_star] = ACTIONS(3224), - [sym__strong_emphasis_open_underscore] = ACTIONS(3224), - [sym__emphasis_open_star] = ACTIONS(3224), - [sym__emphasis_open_underscore] = ACTIONS(3224), - [sym_inline_note_reference] = ACTIONS(3224), - [sym_html_element] = ACTIONS(3224), + [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)] = { - [sym_pandoc_span] = STATE(599), - [sym_pandoc_image] = STATE(599), - [sym_pandoc_math] = STATE(599), - [sym_pandoc_display_math] = STATE(599), - [sym_pandoc_code_span] = STATE(599), - [sym_pandoc_single_quote] = STATE(599), - [sym_pandoc_double_quote] = STATE(599), - [sym_insert] = STATE(599), - [sym_delete] = STATE(599), - [sym_edit_comment] = STATE(599), - [sym_highlight] = STATE(599), - [sym__pandoc_attr_specifier] = STATE(599), - [sym__inline_element] = STATE(599), - [sym_shortcode_escaped] = STATE(599), - [sym_shortcode] = STATE(599), - [sym_citation] = STATE(599), - [sym_inline_note] = STATE(599), - [sym_pandoc_superscript] = STATE(599), - [sym_pandoc_subscript] = STATE(599), - [sym_pandoc_strikeout] = STATE(599), - [sym_pandoc_emph] = STATE(599), - [sym_pandoc_strong] = STATE(599), - [sym_pandoc_str] = STATE(599), - [sym__prose_punctuation] = STATE(599), - [sym_pandoc_line_break] = STATE(599), - [aux_sym__line_repeat1] = STATE(599), - [sym_entity_reference] = ACTIONS(4910), - [sym_numeric_character_reference] = ACTIONS(4910), - [anon_sym_LBRACK] = ACTIONS(4912), - [anon_sym_BANG_LBRACK] = ACTIONS(4914), - [anon_sym_DOLLAR] = ACTIONS(4916), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4918), - [anon_sym_LBRACE] = ACTIONS(4920), - [aux_sym_pandoc_str_token1] = ACTIONS(4922), - [anon_sym_PIPE] = ACTIONS(4924), - [aux_sym__prose_punctuation_token1] = ACTIONS(4926), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4928), - [sym__whitespace] = ACTIONS(4930), - [sym__soft_line_ending] = ACTIONS(3460), - [sym__code_span_start] = ACTIONS(4932), - [sym__html_comment] = ACTIONS(4910), - [sym__autolink] = ACTIONS(4910), - [sym__highlight_span_start] = ACTIONS(4934), - [sym__insert_span_start] = ACTIONS(4936), - [sym__delete_span_start] = ACTIONS(4938), - [sym__edit_comment_span_start] = ACTIONS(4940), - [sym__single_quote_span_open] = ACTIONS(4942), - [sym__double_quote_span_open] = ACTIONS(4944), - [sym__shortcode_open_escaped] = ACTIONS(4946), - [sym__shortcode_open] = ACTIONS(4948), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4950), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4952), - [sym__cite_author_in_text] = ACTIONS(4954), - [sym__cite_suppress_author] = ACTIONS(4956), - [sym__strikeout_open] = ACTIONS(4958), - [sym__subscript_open] = ACTIONS(4960), - [sym__superscript_open] = ACTIONS(4962), - [sym__inline_note_start_token] = ACTIONS(4964), - [sym__strong_emphasis_open_star] = ACTIONS(4966), - [sym__strong_emphasis_close_star] = ACTIONS(3460), - [sym__strong_emphasis_open_underscore] = ACTIONS(4968), - [sym__emphasis_open_star] = ACTIONS(4970), - [sym__emphasis_open_underscore] = ACTIONS(4972), - [sym_inline_note_reference] = ACTIONS(4910), - [sym_html_element] = ACTIONS(4910), + [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)] = { - [anon_sym_COLON] = ACTIONS(3432), - [sym_entity_reference] = ACTIONS(3432), - [sym_numeric_character_reference] = ACTIONS(3432), - [anon_sym_LBRACK] = ACTIONS(3432), - [anon_sym_BANG_LBRACK] = ACTIONS(3432), - [anon_sym_DOLLAR] = ACTIONS(3434), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3432), - [aux_sym_pandoc_str_token1] = ACTIONS(3434), - [anon_sym_PIPE] = ACTIONS(3432), - [aux_sym__prose_punctuation_token1] = ACTIONS(3434), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3434), - [sym__line_ending] = ACTIONS(3432), - [sym__soft_line_ending] = ACTIONS(3432), - [sym__block_close] = ACTIONS(3432), - [sym__block_quote_start] = ACTIONS(3432), - [sym_atx_h1_marker] = ACTIONS(3432), - [sym_atx_h2_marker] = ACTIONS(3432), - [sym_atx_h3_marker] = ACTIONS(3432), - [sym_atx_h4_marker] = ACTIONS(3432), - [sym_atx_h5_marker] = ACTIONS(3432), - [sym_atx_h6_marker] = ACTIONS(3432), - [sym__thematic_break] = ACTIONS(3432), - [sym__list_marker_minus] = ACTIONS(3432), - [sym__list_marker_plus] = ACTIONS(3432), - [sym__list_marker_star] = ACTIONS(3432), - [sym__list_marker_parenthesis] = ACTIONS(3432), - [sym__list_marker_dot] = ACTIONS(3432), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3432), - [sym__list_marker_example] = ACTIONS(3432), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3432), - [sym__fenced_code_block_start_backtick] = ACTIONS(3432), - [sym_minus_metadata] = ACTIONS(3432), - [sym__pipe_table_start] = ACTIONS(3432), - [sym__fenced_div_start] = ACTIONS(3432), - [sym_ref_id_specifier] = ACTIONS(3432), - [sym__code_span_start] = ACTIONS(3432), - [sym__html_comment] = ACTIONS(3432), - [sym__autolink] = ACTIONS(3432), - [sym__highlight_span_start] = ACTIONS(3432), - [sym__insert_span_start] = ACTIONS(3432), - [sym__delete_span_start] = ACTIONS(3432), - [sym__edit_comment_span_start] = ACTIONS(3432), - [sym__single_quote_span_open] = ACTIONS(3432), - [sym__double_quote_span_open] = ACTIONS(3432), - [sym__shortcode_open_escaped] = ACTIONS(3432), - [sym__shortcode_open] = ACTIONS(3432), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3432), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3432), - [sym__cite_author_in_text] = ACTIONS(3432), - [sym__cite_suppress_author] = ACTIONS(3432), - [sym__strikeout_open] = ACTIONS(3432), - [sym__subscript_open] = ACTIONS(3432), - [sym__superscript_open] = ACTIONS(3432), - [sym__inline_note_start_token] = ACTIONS(3432), - [sym__strong_emphasis_open_star] = ACTIONS(3432), - [sym__strong_emphasis_open_underscore] = ACTIONS(3432), - [sym__emphasis_open_star] = ACTIONS(3432), - [sym__emphasis_open_underscore] = ACTIONS(3432), - [sym_inline_note_reference] = ACTIONS(3432), - [sym_html_element] = ACTIONS(3432), + [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_pandoc_span] = STATE(600), - [sym_pandoc_image] = STATE(600), - [sym_pandoc_math] = STATE(600), - [sym_pandoc_display_math] = STATE(600), - [sym_pandoc_code_span] = STATE(600), - [sym_pandoc_single_quote] = STATE(600), - [sym_pandoc_double_quote] = STATE(600), - [sym_insert] = STATE(600), - [sym_delete] = STATE(600), - [sym_edit_comment] = STATE(600), - [sym_highlight] = STATE(600), - [sym__pandoc_attr_specifier] = STATE(600), - [sym__inline_element] = STATE(600), - [sym_shortcode_escaped] = STATE(600), - [sym_shortcode] = STATE(600), - [sym_citation] = STATE(600), - [sym_inline_note] = STATE(600), - [sym_pandoc_superscript] = STATE(600), - [sym_pandoc_subscript] = STATE(600), - [sym_pandoc_strikeout] = STATE(600), - [sym_pandoc_emph] = STATE(600), - [sym_pandoc_strong] = STATE(600), - [sym_pandoc_str] = STATE(600), - [sym__prose_punctuation] = STATE(600), - [sym_pandoc_line_break] = STATE(600), - [aux_sym__line_repeat1] = STATE(600), - [sym_entity_reference] = ACTIONS(4974), - [sym_numeric_character_reference] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4912), - [anon_sym_BANG_LBRACK] = ACTIONS(4914), - [anon_sym_DOLLAR] = ACTIONS(4916), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4918), - [anon_sym_LBRACE] = ACTIONS(4920), - [aux_sym_pandoc_str_token1] = ACTIONS(4922), - [anon_sym_PIPE] = ACTIONS(4924), - [aux_sym__prose_punctuation_token1] = ACTIONS(4976), - [aux_sym_pandoc_line_break_token1] = ACTIONS(4928), - [sym__whitespace] = ACTIONS(4930), - [sym__soft_line_ending] = ACTIONS(3470), - [sym__code_span_start] = ACTIONS(4932), - [sym__html_comment] = ACTIONS(4974), - [sym__autolink] = ACTIONS(4974), - [sym__highlight_span_start] = ACTIONS(4934), - [sym__insert_span_start] = ACTIONS(4936), - [sym__delete_span_start] = ACTIONS(4938), - [sym__edit_comment_span_start] = ACTIONS(4940), - [sym__single_quote_span_open] = ACTIONS(4942), - [sym__double_quote_span_open] = ACTIONS(4944), - [sym__shortcode_open_escaped] = ACTIONS(4946), - [sym__shortcode_open] = ACTIONS(4948), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(4950), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(4952), - [sym__cite_author_in_text] = ACTIONS(4954), - [sym__cite_suppress_author] = ACTIONS(4956), - [sym__strikeout_open] = ACTIONS(4958), - [sym__subscript_open] = ACTIONS(4960), - [sym__superscript_open] = ACTIONS(4962), - [sym__inline_note_start_token] = ACTIONS(4964), - [sym__strong_emphasis_open_star] = ACTIONS(4966), - [sym__strong_emphasis_close_star] = ACTIONS(3470), - [sym__strong_emphasis_open_underscore] = ACTIONS(4968), - [sym__emphasis_open_star] = ACTIONS(4970), - [sym__emphasis_open_underscore] = ACTIONS(4972), - [sym_inline_note_reference] = ACTIONS(4974), - [sym_html_element] = ACTIONS(4974), + [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_pandoc_span] = STATE(600), - [sym_pandoc_image] = STATE(600), - [sym_pandoc_math] = STATE(600), - [sym_pandoc_display_math] = STATE(600), - [sym_pandoc_code_span] = STATE(600), - [sym_pandoc_single_quote] = STATE(600), - [sym_pandoc_double_quote] = STATE(600), - [sym_insert] = STATE(600), - [sym_delete] = STATE(600), - [sym_edit_comment] = STATE(600), - [sym_highlight] = STATE(600), - [sym__pandoc_attr_specifier] = STATE(600), - [sym__inline_element] = STATE(600), - [sym_shortcode_escaped] = STATE(600), - [sym_shortcode] = STATE(600), - [sym_citation] = STATE(600), - [sym_inline_note] = STATE(600), - [sym_pandoc_superscript] = STATE(600), - [sym_pandoc_subscript] = STATE(600), - [sym_pandoc_strikeout] = STATE(600), - [sym_pandoc_emph] = STATE(600), - [sym_pandoc_strong] = STATE(600), - [sym_pandoc_str] = STATE(600), - [sym__prose_punctuation] = STATE(600), - [sym_pandoc_line_break] = STATE(600), - [aux_sym__line_repeat1] = STATE(600), - [sym_entity_reference] = ACTIONS(4978), - [sym_numeric_character_reference] = ACTIONS(4978), - [anon_sym_LBRACK] = ACTIONS(4981), - [anon_sym_BANG_LBRACK] = ACTIONS(4984), - [anon_sym_DOLLAR] = ACTIONS(4987), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(4990), - [anon_sym_LBRACE] = ACTIONS(4993), - [aux_sym_pandoc_str_token1] = ACTIONS(4996), - [anon_sym_PIPE] = ACTIONS(4999), - [aux_sym__prose_punctuation_token1] = ACTIONS(5002), - [aux_sym_pandoc_line_break_token1] = ACTIONS(5005), - [sym__whitespace] = ACTIONS(5008), - [sym__soft_line_ending] = ACTIONS(3485), - [sym__code_span_start] = ACTIONS(5011), - [sym__html_comment] = ACTIONS(4978), - [sym__autolink] = ACTIONS(4978), - [sym__highlight_span_start] = ACTIONS(5014), - [sym__insert_span_start] = ACTIONS(5017), - [sym__delete_span_start] = ACTIONS(5020), - [sym__edit_comment_span_start] = ACTIONS(5023), - [sym__single_quote_span_open] = ACTIONS(5026), - [sym__double_quote_span_open] = ACTIONS(5029), - [sym__shortcode_open_escaped] = ACTIONS(5032), - [sym__shortcode_open] = ACTIONS(5035), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5038), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5041), - [sym__cite_author_in_text] = ACTIONS(5044), - [sym__cite_suppress_author] = ACTIONS(5047), - [sym__strikeout_open] = ACTIONS(5050), - [sym__subscript_open] = ACTIONS(5053), - [sym__superscript_open] = ACTIONS(5056), - [sym__inline_note_start_token] = ACTIONS(5059), - [sym__strong_emphasis_open_star] = ACTIONS(5062), - [sym__strong_emphasis_close_star] = ACTIONS(3485), - [sym__strong_emphasis_open_underscore] = ACTIONS(5065), - [sym__emphasis_open_star] = ACTIONS(5068), - [sym__emphasis_open_underscore] = ACTIONS(5071), - [sym_inline_note_reference] = ACTIONS(4978), - [sym_html_element] = ACTIONS(4978), + [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)] = { - [sym_pandoc_span] = STATE(593), - [sym_pandoc_image] = STATE(593), - [sym_pandoc_math] = STATE(593), - [sym_pandoc_display_math] = STATE(593), - [sym_pandoc_code_span] = STATE(593), - [sym_pandoc_single_quote] = STATE(593), - [sym_pandoc_double_quote] = STATE(593), - [sym_insert] = STATE(593), - [sym_delete] = STATE(593), - [sym_edit_comment] = STATE(593), - [sym_highlight] = STATE(593), - [sym__pandoc_attr_specifier] = STATE(593), - [sym__inline_element] = STATE(593), - [sym_shortcode_escaped] = STATE(593), - [sym_shortcode] = STATE(593), - [sym_citation] = STATE(593), - [sym_inline_note] = STATE(593), - [sym_pandoc_superscript] = STATE(593), - [sym_pandoc_subscript] = STATE(593), - [sym_pandoc_strikeout] = STATE(593), - [sym_pandoc_emph] = STATE(593), - [sym_pandoc_strong] = STATE(593), - [sym_pandoc_str] = STATE(593), - [sym__prose_punctuation] = STATE(593), - [sym_pandoc_line_break] = STATE(593), - [aux_sym__line_with_maybe_spaces_repeat1] = STATE(593), - [sym_entity_reference] = ACTIONS(5074), - [sym_numeric_character_reference] = ACTIONS(5074), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_BANG_LBRACK] = ACTIONS(2809), - [anon_sym_DOLLAR] = ACTIONS(2811), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2815), - [aux_sym_pandoc_str_token1] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2819), - [aux_sym__prose_punctuation_token1] = ACTIONS(5076), - [aux_sym_pandoc_line_break_token1] = ACTIONS(2823), - [sym__whitespace] = ACTIONS(2961), - [sym__line_ending] = ACTIONS(2977), - [sym__code_span_start] = ACTIONS(2827), - [sym__html_comment] = ACTIONS(5074), - [sym__autolink] = ACTIONS(5074), - [sym__highlight_span_start] = ACTIONS(2829), - [sym__insert_span_start] = ACTIONS(2831), - [sym__delete_span_start] = ACTIONS(2833), - [sym__edit_comment_span_start] = ACTIONS(2835), - [sym__single_quote_span_open] = ACTIONS(2837), - [sym__double_quote_span_open] = ACTIONS(2839), - [sym__shortcode_open_escaped] = ACTIONS(2841), - [sym__shortcode_open] = ACTIONS(2843), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(2845), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(2847), - [sym__cite_author_in_text] = ACTIONS(2849), - [sym__cite_suppress_author] = ACTIONS(2851), - [sym__strikeout_open] = ACTIONS(2853), - [sym__subscript_open] = ACTIONS(2855), - [sym__superscript_open] = ACTIONS(2857), - [sym__inline_note_start_token] = ACTIONS(2859), - [sym__strong_emphasis_open_star] = ACTIONS(2861), - [sym__strong_emphasis_open_underscore] = ACTIONS(2863), - [sym__emphasis_open_star] = ACTIONS(2865), - [sym__emphasis_open_underscore] = ACTIONS(2867), - [sym_inline_note_reference] = ACTIONS(5074), - [sym_html_element] = ACTIONS(5074), - [sym__pipe_table_delimiter] = ACTIONS(2977), + [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)] = { - [sym_pandoc_span] = STATE(602), - [sym_pandoc_image] = STATE(602), - [sym_pandoc_math] = STATE(602), - [sym_pandoc_display_math] = STATE(602), - [sym_pandoc_code_span] = STATE(602), - [sym_pandoc_single_quote] = STATE(602), - [sym_pandoc_double_quote] = STATE(602), - [sym_insert] = STATE(602), - [sym_delete] = STATE(602), - [sym_edit_comment] = STATE(602), - [sym_highlight] = STATE(602), - [sym__pandoc_attr_specifier] = STATE(602), - [sym__inline_element] = STATE(602), - [sym_shortcode_escaped] = STATE(602), - [sym_shortcode] = STATE(602), - [sym_citation] = STATE(602), - [sym_inline_note] = STATE(602), - [sym_pandoc_superscript] = STATE(602), - [sym_pandoc_subscript] = STATE(602), - [sym_pandoc_strikeout] = STATE(602), - [sym_pandoc_emph] = STATE(602), - [sym_pandoc_strong] = STATE(602), - [sym_pandoc_str] = STATE(602), - [sym__prose_punctuation] = STATE(602), - [sym_pandoc_line_break] = STATE(602), - [aux_sym__line_repeat1] = STATE(602), - [sym_entity_reference] = ACTIONS(5078), - [sym_numeric_character_reference] = ACTIONS(5078), - [anon_sym_LBRACK] = ACTIONS(5081), - [anon_sym_BANG_LBRACK] = ACTIONS(5084), - [anon_sym_DOLLAR] = ACTIONS(5087), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5090), - [aux_sym_insert_token1] = ACTIONS(3485), - [anon_sym_LBRACE] = ACTIONS(5093), - [aux_sym_pandoc_str_token1] = ACTIONS(5096), - [anon_sym_PIPE] = ACTIONS(5099), - [aux_sym__prose_punctuation_token1] = ACTIONS(5102), - [aux_sym_pandoc_line_break_token1] = ACTIONS(5105), - [sym__whitespace] = ACTIONS(5108), - [sym__soft_line_ending] = ACTIONS(3485), - [sym__code_span_start] = ACTIONS(5111), - [sym__html_comment] = ACTIONS(5078), - [sym__autolink] = ACTIONS(5078), - [sym__highlight_span_start] = ACTIONS(5114), - [sym__insert_span_start] = ACTIONS(5117), - [sym__delete_span_start] = ACTIONS(5120), - [sym__edit_comment_span_start] = ACTIONS(5123), - [sym__single_quote_span_open] = ACTIONS(5126), - [sym__double_quote_span_open] = ACTIONS(5129), - [sym__shortcode_open_escaped] = ACTIONS(5132), - [sym__shortcode_open] = ACTIONS(5135), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5138), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5141), - [sym__cite_author_in_text] = ACTIONS(5144), - [sym__cite_suppress_author] = ACTIONS(5147), - [sym__strikeout_open] = ACTIONS(5150), - [sym__subscript_open] = ACTIONS(5153), - [sym__superscript_open] = ACTIONS(5156), - [sym__inline_note_start_token] = ACTIONS(5159), - [sym__strong_emphasis_open_star] = ACTIONS(5162), - [sym__strong_emphasis_open_underscore] = ACTIONS(5165), - [sym__emphasis_open_star] = ACTIONS(5168), - [sym__emphasis_open_underscore] = ACTIONS(5171), - [sym_inline_note_reference] = ACTIONS(5078), - [sym_html_element] = ACTIONS(5078), + [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)] = { - [sym_pandoc_span] = STATE(604), - [sym_pandoc_image] = STATE(604), - [sym_pandoc_math] = STATE(604), - [sym_pandoc_display_math] = STATE(604), - [sym_pandoc_code_span] = STATE(604), - [sym_pandoc_single_quote] = STATE(604), - [sym_pandoc_double_quote] = STATE(604), - [sym_insert] = STATE(604), - [sym_delete] = STATE(604), - [sym_edit_comment] = STATE(604), - [sym_highlight] = STATE(604), - [sym__pandoc_attr_specifier] = STATE(604), - [sym__inline_element] = STATE(604), - [sym_shortcode_escaped] = STATE(604), - [sym_shortcode] = STATE(604), - [sym_citation] = STATE(604), - [sym_inline_note] = STATE(604), - [sym_pandoc_superscript] = STATE(604), - [sym_pandoc_subscript] = STATE(604), - [sym_pandoc_strikeout] = STATE(604), - [sym_pandoc_emph] = STATE(604), - [sym_pandoc_strong] = STATE(604), - [sym_pandoc_str] = STATE(604), - [sym__prose_punctuation] = STATE(604), - [sym_pandoc_line_break] = STATE(604), - [aux_sym__line_repeat1] = STATE(604), - [sym_entity_reference] = ACTIONS(5174), - [sym_numeric_character_reference] = ACTIONS(5174), - [anon_sym_LBRACK] = ACTIONS(5176), - [anon_sym_BANG_LBRACK] = ACTIONS(5178), - [anon_sym_DOLLAR] = ACTIONS(5180), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5182), - [anon_sym_LBRACE] = ACTIONS(5184), - [aux_sym_pandoc_str_token1] = ACTIONS(5186), - [anon_sym_PIPE] = ACTIONS(5188), - [aux_sym__prose_punctuation_token1] = ACTIONS(5190), - [aux_sym_pandoc_line_break_token1] = ACTIONS(5192), - [sym__whitespace] = ACTIONS(5194), - [sym__soft_line_ending] = ACTIONS(3460), - [sym__code_span_start] = ACTIONS(5196), - [sym__html_comment] = ACTIONS(5174), - [sym__autolink] = ACTIONS(5174), - [sym__highlight_span_start] = ACTIONS(5198), - [sym__insert_span_start] = ACTIONS(5200), - [sym__delete_span_start] = ACTIONS(5202), - [sym__edit_comment_span_start] = ACTIONS(5204), - [sym__single_quote_span_open] = ACTIONS(5206), - [sym__double_quote_span_open] = ACTIONS(5208), - [sym__shortcode_open_escaped] = ACTIONS(5210), - [sym__shortcode_open] = ACTIONS(5212), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5214), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5216), - [sym__cite_author_in_text] = ACTIONS(5218), - [sym__cite_suppress_author] = ACTIONS(5220), - [sym__strikeout_open] = ACTIONS(5222), - [sym__subscript_open] = ACTIONS(5224), - [sym__superscript_open] = ACTIONS(5226), - [sym__inline_note_start_token] = ACTIONS(5228), - [sym__strong_emphasis_open_star] = ACTIONS(5230), - [sym__strong_emphasis_open_underscore] = ACTIONS(5232), - [sym__strong_emphasis_close_underscore] = ACTIONS(3460), - [sym__emphasis_open_star] = ACTIONS(5234), - [sym__emphasis_open_underscore] = ACTIONS(5236), - [sym_inline_note_reference] = ACTIONS(5174), - [sym_html_element] = ACTIONS(5174), + [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)] = { - [sym_pandoc_span] = STATE(605), - [sym_pandoc_image] = STATE(605), - [sym_pandoc_math] = STATE(605), - [sym_pandoc_display_math] = STATE(605), - [sym_pandoc_code_span] = STATE(605), - [sym_pandoc_single_quote] = STATE(605), - [sym_pandoc_double_quote] = STATE(605), - [sym_insert] = STATE(605), - [sym_delete] = STATE(605), - [sym_edit_comment] = STATE(605), - [sym_highlight] = STATE(605), - [sym__pandoc_attr_specifier] = STATE(605), - [sym__inline_element] = STATE(605), - [sym_shortcode_escaped] = STATE(605), - [sym_shortcode] = STATE(605), - [sym_citation] = STATE(605), - [sym_inline_note] = STATE(605), - [sym_pandoc_superscript] = STATE(605), - [sym_pandoc_subscript] = STATE(605), - [sym_pandoc_strikeout] = STATE(605), - [sym_pandoc_emph] = STATE(605), - [sym_pandoc_strong] = STATE(605), - [sym_pandoc_str] = STATE(605), - [sym__prose_punctuation] = STATE(605), - [sym_pandoc_line_break] = STATE(605), - [aux_sym__line_repeat1] = STATE(605), - [sym_entity_reference] = ACTIONS(5238), - [sym_numeric_character_reference] = ACTIONS(5238), - [anon_sym_LBRACK] = ACTIONS(5176), - [anon_sym_BANG_LBRACK] = ACTIONS(5178), - [anon_sym_DOLLAR] = ACTIONS(5180), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5182), - [anon_sym_LBRACE] = ACTIONS(5184), - [aux_sym_pandoc_str_token1] = ACTIONS(5186), - [anon_sym_PIPE] = ACTIONS(5188), - [aux_sym__prose_punctuation_token1] = ACTIONS(5240), - [aux_sym_pandoc_line_break_token1] = ACTIONS(5192), - [sym__whitespace] = ACTIONS(5194), - [sym__soft_line_ending] = ACTIONS(3470), - [sym__code_span_start] = ACTIONS(5196), - [sym__html_comment] = ACTIONS(5238), - [sym__autolink] = ACTIONS(5238), - [sym__highlight_span_start] = ACTIONS(5198), - [sym__insert_span_start] = ACTIONS(5200), - [sym__delete_span_start] = ACTIONS(5202), - [sym__edit_comment_span_start] = ACTIONS(5204), - [sym__single_quote_span_open] = ACTIONS(5206), - [sym__double_quote_span_open] = ACTIONS(5208), - [sym__shortcode_open_escaped] = ACTIONS(5210), - [sym__shortcode_open] = ACTIONS(5212), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5214), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5216), - [sym__cite_author_in_text] = ACTIONS(5218), - [sym__cite_suppress_author] = ACTIONS(5220), - [sym__strikeout_open] = ACTIONS(5222), - [sym__subscript_open] = ACTIONS(5224), - [sym__superscript_open] = ACTIONS(5226), - [sym__inline_note_start_token] = ACTIONS(5228), - [sym__strong_emphasis_open_star] = ACTIONS(5230), - [sym__strong_emphasis_open_underscore] = ACTIONS(5232), - [sym__strong_emphasis_close_underscore] = ACTIONS(3470), - [sym__emphasis_open_star] = ACTIONS(5234), - [sym__emphasis_open_underscore] = ACTIONS(5236), - [sym_inline_note_reference] = ACTIONS(5238), - [sym_html_element] = ACTIONS(5238), + [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)] = { - [sym_pandoc_span] = STATE(605), - [sym_pandoc_image] = STATE(605), - [sym_pandoc_math] = STATE(605), - [sym_pandoc_display_math] = STATE(605), - [sym_pandoc_code_span] = STATE(605), - [sym_pandoc_single_quote] = STATE(605), - [sym_pandoc_double_quote] = STATE(605), - [sym_insert] = STATE(605), - [sym_delete] = STATE(605), - [sym_edit_comment] = STATE(605), - [sym_highlight] = STATE(605), - [sym__pandoc_attr_specifier] = STATE(605), - [sym__inline_element] = STATE(605), - [sym_shortcode_escaped] = STATE(605), - [sym_shortcode] = STATE(605), - [sym_citation] = STATE(605), - [sym_inline_note] = STATE(605), - [sym_pandoc_superscript] = STATE(605), - [sym_pandoc_subscript] = STATE(605), - [sym_pandoc_strikeout] = STATE(605), - [sym_pandoc_emph] = STATE(605), - [sym_pandoc_strong] = STATE(605), - [sym_pandoc_str] = STATE(605), - [sym__prose_punctuation] = STATE(605), - [sym_pandoc_line_break] = STATE(605), - [aux_sym__line_repeat1] = STATE(605), - [sym_entity_reference] = ACTIONS(5242), - [sym_numeric_character_reference] = ACTIONS(5242), - [anon_sym_LBRACK] = ACTIONS(5245), - [anon_sym_BANG_LBRACK] = ACTIONS(5248), - [anon_sym_DOLLAR] = ACTIONS(5251), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5254), - [anon_sym_LBRACE] = ACTIONS(5257), - [aux_sym_pandoc_str_token1] = ACTIONS(5260), - [anon_sym_PIPE] = ACTIONS(5263), - [aux_sym__prose_punctuation_token1] = ACTIONS(5266), - [aux_sym_pandoc_line_break_token1] = ACTIONS(5269), - [sym__whitespace] = ACTIONS(5272), - [sym__soft_line_ending] = ACTIONS(3485), - [sym__code_span_start] = ACTIONS(5275), - [sym__html_comment] = ACTIONS(5242), - [sym__autolink] = ACTIONS(5242), - [sym__highlight_span_start] = ACTIONS(5278), - [sym__insert_span_start] = ACTIONS(5281), - [sym__delete_span_start] = ACTIONS(5284), - [sym__edit_comment_span_start] = ACTIONS(5287), - [sym__single_quote_span_open] = ACTIONS(5290), - [sym__double_quote_span_open] = ACTIONS(5293), - [sym__shortcode_open_escaped] = ACTIONS(5296), - [sym__shortcode_open] = ACTIONS(5299), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5302), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5305), - [sym__cite_author_in_text] = ACTIONS(5308), - [sym__cite_suppress_author] = ACTIONS(5311), - [sym__strikeout_open] = ACTIONS(5314), - [sym__subscript_open] = ACTIONS(5317), - [sym__superscript_open] = ACTIONS(5320), - [sym__inline_note_start_token] = ACTIONS(5323), - [sym__strong_emphasis_open_star] = ACTIONS(5326), - [sym__strong_emphasis_open_underscore] = ACTIONS(5329), - [sym__strong_emphasis_close_underscore] = ACTIONS(3485), - [sym__emphasis_open_star] = ACTIONS(5332), - [sym__emphasis_open_underscore] = ACTIONS(5335), - [sym_inline_note_reference] = ACTIONS(5242), - [sym_html_element] = ACTIONS(5242), + [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)] = { - [sym_pandoc_span] = STATE(607), - [sym_pandoc_image] = STATE(607), - [sym_pandoc_math] = STATE(607), - [sym_pandoc_display_math] = STATE(607), - [sym_pandoc_code_span] = STATE(607), - [sym_pandoc_single_quote] = STATE(607), - [sym_pandoc_double_quote] = STATE(607), - [sym_insert] = STATE(607), - [sym_delete] = STATE(607), - [sym_edit_comment] = STATE(607), - [sym_highlight] = STATE(607), - [sym__pandoc_attr_specifier] = STATE(607), - [sym__inline_element] = STATE(607), - [sym_shortcode_escaped] = STATE(607), - [sym_shortcode] = STATE(607), - [sym_citation] = STATE(607), - [sym_inline_note] = STATE(607), - [sym_pandoc_superscript] = STATE(607), - [sym_pandoc_subscript] = STATE(607), - [sym_pandoc_strikeout] = STATE(607), - [sym_pandoc_emph] = STATE(607), - [sym_pandoc_strong] = STATE(607), - [sym_pandoc_str] = STATE(607), - [sym__prose_punctuation] = STATE(607), - [sym_pandoc_line_break] = STATE(607), - [aux_sym__line_repeat1] = STATE(607), - [sym_entity_reference] = ACTIONS(5338), - [sym_numeric_character_reference] = ACTIONS(5338), - [anon_sym_LBRACK] = ACTIONS(5340), - [anon_sym_BANG_LBRACK] = ACTIONS(5342), - [anon_sym_DOLLAR] = ACTIONS(5344), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5346), - [anon_sym_LBRACE] = ACTIONS(5348), - [aux_sym_pandoc_str_token1] = ACTIONS(5350), - [anon_sym_PIPE] = ACTIONS(5352), - [aux_sym__prose_punctuation_token1] = ACTIONS(5354), - [aux_sym_pandoc_line_break_token1] = ACTIONS(5356), - [sym__whitespace] = ACTIONS(5358), - [sym__soft_line_ending] = ACTIONS(3460), - [sym__code_span_start] = ACTIONS(5360), - [sym__html_comment] = ACTIONS(5338), - [sym__autolink] = ACTIONS(5338), - [sym__highlight_span_start] = ACTIONS(5362), - [sym__insert_span_start] = ACTIONS(5364), - [sym__delete_span_start] = ACTIONS(5366), - [sym__edit_comment_span_start] = ACTIONS(5368), - [sym__single_quote_span_open] = ACTIONS(5370), - [sym__double_quote_span_open] = ACTIONS(5372), - [sym__shortcode_open_escaped] = ACTIONS(5374), - [sym__shortcode_open] = ACTIONS(5376), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5378), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5380), - [sym__cite_author_in_text] = ACTIONS(5382), - [sym__cite_suppress_author] = ACTIONS(5384), - [sym__strikeout_open] = ACTIONS(5386), - [sym__subscript_open] = ACTIONS(5388), - [sym__superscript_open] = ACTIONS(5390), - [sym__inline_note_start_token] = ACTIONS(5392), - [sym__strong_emphasis_open_star] = ACTIONS(5394), - [sym__strong_emphasis_open_underscore] = ACTIONS(5396), - [sym__emphasis_open_star] = ACTIONS(5398), - [sym__emphasis_close_star] = ACTIONS(3460), - [sym__emphasis_open_underscore] = ACTIONS(5400), - [sym_inline_note_reference] = ACTIONS(5338), - [sym_html_element] = ACTIONS(5338), + [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)] = { - [sym_pandoc_span] = STATE(608), - [sym_pandoc_image] = STATE(608), - [sym_pandoc_math] = STATE(608), - [sym_pandoc_display_math] = STATE(608), - [sym_pandoc_code_span] = STATE(608), - [sym_pandoc_single_quote] = STATE(608), - [sym_pandoc_double_quote] = STATE(608), - [sym_insert] = STATE(608), - [sym_delete] = STATE(608), - [sym_edit_comment] = STATE(608), - [sym_highlight] = STATE(608), - [sym__pandoc_attr_specifier] = STATE(608), - [sym__inline_element] = STATE(608), - [sym_shortcode_escaped] = STATE(608), - [sym_shortcode] = STATE(608), - [sym_citation] = STATE(608), - [sym_inline_note] = STATE(608), - [sym_pandoc_superscript] = STATE(608), - [sym_pandoc_subscript] = STATE(608), - [sym_pandoc_strikeout] = STATE(608), - [sym_pandoc_emph] = STATE(608), - [sym_pandoc_strong] = STATE(608), - [sym_pandoc_str] = STATE(608), - [sym__prose_punctuation] = STATE(608), - [sym_pandoc_line_break] = STATE(608), - [aux_sym__line_repeat1] = STATE(608), - [sym_entity_reference] = ACTIONS(5402), - [sym_numeric_character_reference] = ACTIONS(5402), - [anon_sym_LBRACK] = ACTIONS(5340), - [anon_sym_BANG_LBRACK] = ACTIONS(5342), - [anon_sym_DOLLAR] = ACTIONS(5344), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5346), - [anon_sym_LBRACE] = ACTIONS(5348), - [aux_sym_pandoc_str_token1] = ACTIONS(5350), - [anon_sym_PIPE] = ACTIONS(5352), - [aux_sym__prose_punctuation_token1] = ACTIONS(5404), - [aux_sym_pandoc_line_break_token1] = ACTIONS(5356), - [sym__whitespace] = ACTIONS(5358), - [sym__soft_line_ending] = ACTIONS(3470), - [sym__code_span_start] = ACTIONS(5360), - [sym__html_comment] = ACTIONS(5402), - [sym__autolink] = ACTIONS(5402), - [sym__highlight_span_start] = ACTIONS(5362), - [sym__insert_span_start] = ACTIONS(5364), - [sym__delete_span_start] = ACTIONS(5366), - [sym__edit_comment_span_start] = ACTIONS(5368), - [sym__single_quote_span_open] = ACTIONS(5370), - [sym__double_quote_span_open] = ACTIONS(5372), - [sym__shortcode_open_escaped] = ACTIONS(5374), - [sym__shortcode_open] = ACTIONS(5376), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5378), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5380), - [sym__cite_author_in_text] = ACTIONS(5382), - [sym__cite_suppress_author] = ACTIONS(5384), - [sym__strikeout_open] = ACTIONS(5386), - [sym__subscript_open] = ACTIONS(5388), - [sym__superscript_open] = ACTIONS(5390), - [sym__inline_note_start_token] = ACTIONS(5392), - [sym__strong_emphasis_open_star] = ACTIONS(5394), - [sym__strong_emphasis_open_underscore] = ACTIONS(5396), - [sym__emphasis_open_star] = ACTIONS(5398), - [sym__emphasis_close_star] = ACTIONS(3470), - [sym__emphasis_open_underscore] = ACTIONS(5400), - [sym_inline_note_reference] = ACTIONS(5402), - [sym_html_element] = ACTIONS(5402), + [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)] = { - [sym_pandoc_span] = STATE(608), - [sym_pandoc_image] = STATE(608), - [sym_pandoc_math] = STATE(608), - [sym_pandoc_display_math] = STATE(608), - [sym_pandoc_code_span] = STATE(608), - [sym_pandoc_single_quote] = STATE(608), - [sym_pandoc_double_quote] = STATE(608), - [sym_insert] = STATE(608), - [sym_delete] = STATE(608), - [sym_edit_comment] = STATE(608), - [sym_highlight] = STATE(608), - [sym__pandoc_attr_specifier] = STATE(608), - [sym__inline_element] = STATE(608), - [sym_shortcode_escaped] = STATE(608), - [sym_shortcode] = STATE(608), - [sym_citation] = STATE(608), - [sym_inline_note] = STATE(608), - [sym_pandoc_superscript] = STATE(608), - [sym_pandoc_subscript] = STATE(608), - [sym_pandoc_strikeout] = STATE(608), - [sym_pandoc_emph] = STATE(608), - [sym_pandoc_strong] = STATE(608), - [sym_pandoc_str] = STATE(608), - [sym__prose_punctuation] = STATE(608), - [sym_pandoc_line_break] = STATE(608), - [aux_sym__line_repeat1] = STATE(608), - [sym_entity_reference] = ACTIONS(5406), - [sym_numeric_character_reference] = ACTIONS(5406), - [anon_sym_LBRACK] = ACTIONS(5409), - [anon_sym_BANG_LBRACK] = ACTIONS(5412), - [anon_sym_DOLLAR] = ACTIONS(5415), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5418), - [anon_sym_LBRACE] = ACTIONS(5421), - [aux_sym_pandoc_str_token1] = ACTIONS(5424), - [anon_sym_PIPE] = ACTIONS(5427), - [aux_sym__prose_punctuation_token1] = ACTIONS(5430), - [aux_sym_pandoc_line_break_token1] = ACTIONS(5433), - [sym__whitespace] = ACTIONS(5436), - [sym__soft_line_ending] = ACTIONS(3485), - [sym__code_span_start] = ACTIONS(5439), - [sym__html_comment] = ACTIONS(5406), - [sym__autolink] = ACTIONS(5406), - [sym__highlight_span_start] = ACTIONS(5442), - [sym__insert_span_start] = ACTIONS(5445), - [sym__delete_span_start] = ACTIONS(5448), - [sym__edit_comment_span_start] = ACTIONS(5451), - [sym__single_quote_span_open] = ACTIONS(5454), - [sym__double_quote_span_open] = ACTIONS(5457), - [sym__shortcode_open_escaped] = ACTIONS(5460), - [sym__shortcode_open] = ACTIONS(5463), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5466), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5469), - [sym__cite_author_in_text] = ACTIONS(5472), - [sym__cite_suppress_author] = ACTIONS(5475), - [sym__strikeout_open] = ACTIONS(5478), - [sym__subscript_open] = ACTIONS(5481), - [sym__superscript_open] = ACTIONS(5484), - [sym__inline_note_start_token] = ACTIONS(5487), - [sym__strong_emphasis_open_star] = ACTIONS(5490), - [sym__strong_emphasis_open_underscore] = ACTIONS(5493), - [sym__emphasis_open_star] = ACTIONS(5496), - [sym__emphasis_close_star] = ACTIONS(3485), - [sym__emphasis_open_underscore] = ACTIONS(5499), - [sym_inline_note_reference] = ACTIONS(5406), - [sym_html_element] = ACTIONS(5406), + [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)] = { - [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), - [sym_pandoc_line_break] = STATE(610), - [aux_sym__line_repeat1] = STATE(610), - [sym_entity_reference] = ACTIONS(5502), - [sym_numeric_character_reference] = ACTIONS(5502), - [anon_sym_LBRACK] = ACTIONS(5504), - [anon_sym_BANG_LBRACK] = ACTIONS(5506), - [anon_sym_DOLLAR] = ACTIONS(5508), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5510), - [anon_sym_LBRACE] = ACTIONS(5512), - [aux_sym_pandoc_str_token1] = ACTIONS(5514), - [anon_sym_PIPE] = ACTIONS(5516), - [aux_sym__prose_punctuation_token1] = ACTIONS(5518), - [aux_sym_pandoc_line_break_token1] = ACTIONS(5520), - [sym__whitespace] = ACTIONS(5522), - [sym__soft_line_ending] = ACTIONS(3460), - [sym__code_span_start] = ACTIONS(5524), - [sym__html_comment] = ACTIONS(5502), - [sym__autolink] = ACTIONS(5502), - [sym__highlight_span_start] = ACTIONS(5526), - [sym__insert_span_start] = ACTIONS(5528), - [sym__delete_span_start] = ACTIONS(5530), - [sym__edit_comment_span_start] = ACTIONS(5532), - [sym__single_quote_span_open] = ACTIONS(5534), - [sym__double_quote_span_open] = ACTIONS(5536), - [sym__shortcode_open_escaped] = ACTIONS(5538), - [sym__shortcode_open] = ACTIONS(5540), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5542), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5544), - [sym__cite_author_in_text] = ACTIONS(5546), - [sym__cite_suppress_author] = ACTIONS(5548), - [sym__strikeout_open] = ACTIONS(5550), - [sym__subscript_open] = ACTIONS(5552), - [sym__superscript_open] = ACTIONS(5554), - [sym__inline_note_start_token] = ACTIONS(5556), - [sym__strong_emphasis_open_star] = ACTIONS(5558), - [sym__strong_emphasis_open_underscore] = ACTIONS(5560), - [sym__emphasis_open_star] = ACTIONS(5562), - [sym__emphasis_open_underscore] = ACTIONS(5564), - [sym__emphasis_close_underscore] = ACTIONS(3460), - [sym_inline_note_reference] = ACTIONS(5502), - [sym_html_element] = ACTIONS(5502), + [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(612), - [sym_pandoc_image] = STATE(612), - [sym_pandoc_math] = STATE(612), - [sym_pandoc_display_math] = STATE(612), - [sym_pandoc_code_span] = STATE(612), - [sym_pandoc_single_quote] = STATE(612), - [sym_pandoc_double_quote] = STATE(612), - [sym_insert] = STATE(612), - [sym_delete] = STATE(612), - [sym_edit_comment] = STATE(612), - [sym_highlight] = STATE(612), - [sym__pandoc_attr_specifier] = STATE(612), - [sym__inline_element] = STATE(612), - [sym_shortcode_escaped] = STATE(612), - [sym_shortcode] = STATE(612), - [sym_citation] = STATE(612), - [sym_inline_note] = STATE(612), - [sym_pandoc_superscript] = STATE(612), - [sym_pandoc_subscript] = STATE(612), - [sym_pandoc_strikeout] = STATE(612), - [sym_pandoc_emph] = STATE(612), - [sym_pandoc_strong] = STATE(612), - [sym_pandoc_str] = STATE(612), - [sym__prose_punctuation] = STATE(612), - [sym_pandoc_line_break] = STATE(612), - [aux_sym__line_repeat1] = STATE(612), - [sym_entity_reference] = ACTIONS(5566), - [sym_numeric_character_reference] = ACTIONS(5566), - [anon_sym_LBRACK] = ACTIONS(5504), - [anon_sym_BANG_LBRACK] = ACTIONS(5506), - [anon_sym_DOLLAR] = ACTIONS(5508), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5510), - [anon_sym_LBRACE] = ACTIONS(5512), - [aux_sym_pandoc_str_token1] = ACTIONS(5514), - [anon_sym_PIPE] = ACTIONS(5516), - [aux_sym__prose_punctuation_token1] = ACTIONS(5568), - [aux_sym_pandoc_line_break_token1] = ACTIONS(5520), - [sym__whitespace] = ACTIONS(5522), - [sym__soft_line_ending] = ACTIONS(3470), - [sym__code_span_start] = ACTIONS(5524), - [sym__html_comment] = ACTIONS(5566), - [sym__autolink] = ACTIONS(5566), - [sym__highlight_span_start] = ACTIONS(5526), - [sym__insert_span_start] = ACTIONS(5528), - [sym__delete_span_start] = ACTIONS(5530), - [sym__edit_comment_span_start] = ACTIONS(5532), - [sym__single_quote_span_open] = ACTIONS(5534), - [sym__double_quote_span_open] = ACTIONS(5536), - [sym__shortcode_open_escaped] = ACTIONS(5538), - [sym__shortcode_open] = ACTIONS(5540), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5542), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5544), - [sym__cite_author_in_text] = ACTIONS(5546), - [sym__cite_suppress_author] = ACTIONS(5548), - [sym__strikeout_open] = ACTIONS(5550), - [sym__subscript_open] = ACTIONS(5552), - [sym__superscript_open] = ACTIONS(5554), - [sym__inline_note_start_token] = ACTIONS(5556), - [sym__strong_emphasis_open_star] = ACTIONS(5558), - [sym__strong_emphasis_open_underscore] = ACTIONS(5560), - [sym__emphasis_open_star] = ACTIONS(5562), - [sym__emphasis_open_underscore] = ACTIONS(5564), - [sym__emphasis_close_underscore] = ACTIONS(3470), - [sym_inline_note_reference] = ACTIONS(5566), - [sym_html_element] = ACTIONS(5566), + [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), + [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(3829), + [sym__whitespace] = ACTIONS(3821), + [sym__line_ending] = ACTIONS(3497), + [sym__soft_line_ending] = ACTIONS(3497), + [sym__eof] = ACTIONS(3497), + [sym__code_span_start] = ACTIONS(67), + [sym__html_comment] = ACTIONS(3827), + [sym__autolink] = ACTIONS(3827), + [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(3827), + [sym_html_element] = ACTIONS(3827), + [sym__pandoc_line_break] = ACTIONS(3827), }, [STATE(611)] = { - [anon_sym_COLON] = ACTIONS(3119), - [sym_entity_reference] = ACTIONS(3119), - [sym_numeric_character_reference] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_BANG_LBRACK] = ACTIONS(3119), - [anon_sym_DOLLAR] = ACTIONS(3121), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3119), - [aux_sym_pandoc_str_token1] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3119), - [aux_sym__prose_punctuation_token1] = ACTIONS(3121), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3121), - [sym__line_ending] = ACTIONS(3119), - [sym__soft_line_ending] = ACTIONS(3119), - [sym__block_close] = ACTIONS(3119), - [sym__block_quote_start] = ACTIONS(3119), - [sym_atx_h1_marker] = ACTIONS(3119), - [sym_atx_h2_marker] = ACTIONS(3119), - [sym_atx_h3_marker] = ACTIONS(3119), - [sym_atx_h4_marker] = ACTIONS(3119), - [sym_atx_h5_marker] = ACTIONS(3119), - [sym_atx_h6_marker] = ACTIONS(3119), - [sym__thematic_break] = ACTIONS(3119), - [sym__list_marker_minus] = ACTIONS(3119), - [sym__list_marker_plus] = ACTIONS(3119), - [sym__list_marker_star] = ACTIONS(3119), - [sym__list_marker_parenthesis] = ACTIONS(3119), - [sym__list_marker_dot] = ACTIONS(3119), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3119), - [sym__list_marker_example] = ACTIONS(3119), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3119), - [sym__fenced_code_block_start_backtick] = ACTIONS(3119), - [sym_minus_metadata] = ACTIONS(3119), - [sym__pipe_table_start] = ACTIONS(3119), - [sym__fenced_div_start] = ACTIONS(3119), - [sym_ref_id_specifier] = ACTIONS(3119), - [sym__code_span_start] = ACTIONS(3119), - [sym__html_comment] = ACTIONS(3119), - [sym__autolink] = ACTIONS(3119), - [sym__highlight_span_start] = ACTIONS(3119), - [sym__insert_span_start] = ACTIONS(3119), - [sym__delete_span_start] = ACTIONS(3119), - [sym__edit_comment_span_start] = ACTIONS(3119), - [sym__single_quote_span_open] = ACTIONS(3119), - [sym__double_quote_span_open] = ACTIONS(3119), - [sym__shortcode_open_escaped] = ACTIONS(3119), - [sym__shortcode_open] = ACTIONS(3119), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3119), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3119), - [sym__cite_author_in_text] = ACTIONS(3119), - [sym__cite_suppress_author] = ACTIONS(3119), - [sym__strikeout_open] = ACTIONS(3119), - [sym__subscript_open] = ACTIONS(3119), - [sym__superscript_open] = ACTIONS(3119), - [sym__inline_note_start_token] = ACTIONS(3119), - [sym__strong_emphasis_open_star] = ACTIONS(3119), - [sym__strong_emphasis_open_underscore] = ACTIONS(3119), - [sym__emphasis_open_star] = ACTIONS(3119), - [sym__emphasis_open_underscore] = ACTIONS(3119), - [sym_inline_note_reference] = ACTIONS(3119), - [sym_html_element] = ACTIONS(3119), - }, - [STATE(612)] = { - [sym_pandoc_span] = STATE(612), - [sym_pandoc_image] = STATE(612), - [sym_pandoc_math] = STATE(612), - [sym_pandoc_display_math] = STATE(612), - [sym_pandoc_code_span] = STATE(612), - [sym_pandoc_single_quote] = STATE(612), - [sym_pandoc_double_quote] = STATE(612), - [sym_insert] = STATE(612), - [sym_delete] = STATE(612), - [sym_edit_comment] = STATE(612), - [sym_highlight] = STATE(612), - [sym__pandoc_attr_specifier] = STATE(612), - [sym__inline_element] = STATE(612), - [sym_shortcode_escaped] = STATE(612), - [sym_shortcode] = STATE(612), - [sym_citation] = STATE(612), - [sym_inline_note] = STATE(612), - [sym_pandoc_superscript] = STATE(612), - [sym_pandoc_subscript] = STATE(612), - [sym_pandoc_strikeout] = STATE(612), - [sym_pandoc_emph] = STATE(612), - [sym_pandoc_strong] = STATE(612), - [sym_pandoc_str] = STATE(612), - [sym__prose_punctuation] = STATE(612), - [sym_pandoc_line_break] = STATE(612), - [aux_sym__line_repeat1] = STATE(612), - [sym_entity_reference] = ACTIONS(5570), - [sym_numeric_character_reference] = ACTIONS(5570), - [anon_sym_LBRACK] = ACTIONS(5573), - [anon_sym_BANG_LBRACK] = ACTIONS(5576), - [anon_sym_DOLLAR] = ACTIONS(5579), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(5582), - [anon_sym_LBRACE] = ACTIONS(5585), - [aux_sym_pandoc_str_token1] = ACTIONS(5588), - [anon_sym_PIPE] = ACTIONS(5591), - [aux_sym__prose_punctuation_token1] = ACTIONS(5594), - [aux_sym_pandoc_line_break_token1] = ACTIONS(5597), - [sym__whitespace] = ACTIONS(5600), - [sym__soft_line_ending] = ACTIONS(3485), - [sym__code_span_start] = ACTIONS(5603), - [sym__html_comment] = ACTIONS(5570), - [sym__autolink] = ACTIONS(5570), - [sym__highlight_span_start] = ACTIONS(5606), - [sym__insert_span_start] = ACTIONS(5609), - [sym__delete_span_start] = ACTIONS(5612), - [sym__edit_comment_span_start] = ACTIONS(5615), - [sym__single_quote_span_open] = ACTIONS(5618), - [sym__double_quote_span_open] = ACTIONS(5621), - [sym__shortcode_open_escaped] = ACTIONS(5624), - [sym__shortcode_open] = ACTIONS(5627), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(5630), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(5633), - [sym__cite_author_in_text] = ACTIONS(5636), - [sym__cite_suppress_author] = ACTIONS(5639), - [sym__strikeout_open] = ACTIONS(5642), - [sym__subscript_open] = ACTIONS(5645), - [sym__superscript_open] = ACTIONS(5648), - [sym__inline_note_start_token] = ACTIONS(5651), - [sym__strong_emphasis_open_star] = ACTIONS(5654), - [sym__strong_emphasis_open_underscore] = ACTIONS(5657), - [sym__emphasis_open_star] = ACTIONS(5660), - [sym__emphasis_open_underscore] = ACTIONS(5663), - [sym__emphasis_close_underscore] = ACTIONS(3485), - [sym_inline_note_reference] = ACTIONS(5570), - [sym_html_element] = ACTIONS(5570), - }, - [STATE(613)] = { - [ts_builtin_sym_end] = ACTIONS(3151), - [anon_sym_COLON] = ACTIONS(3151), - [sym_entity_reference] = ACTIONS(3151), - [sym_numeric_character_reference] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_BANG_LBRACK] = ACTIONS(3151), - [anon_sym_DOLLAR] = ACTIONS(3153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [aux_sym_pandoc_str_token1] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3151), - [aux_sym__prose_punctuation_token1] = ACTIONS(3153), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3153), - [sym__line_ending] = ACTIONS(3151), - [sym__soft_line_ending] = ACTIONS(3151), - [sym__block_quote_start] = ACTIONS(3151), - [sym_atx_h1_marker] = ACTIONS(3151), - [sym_atx_h2_marker] = ACTIONS(3151), - [sym_atx_h3_marker] = ACTIONS(3151), - [sym_atx_h4_marker] = ACTIONS(3151), - [sym_atx_h5_marker] = ACTIONS(3151), - [sym_atx_h6_marker] = ACTIONS(3151), - [sym__thematic_break] = ACTIONS(3151), - [sym__list_marker_minus] = ACTIONS(3151), - [sym__list_marker_plus] = ACTIONS(3151), - [sym__list_marker_star] = ACTIONS(3151), - [sym__list_marker_parenthesis] = ACTIONS(3151), - [sym__list_marker_dot] = ACTIONS(3151), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_example] = ACTIONS(3151), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3151), - [sym__fenced_code_block_start_backtick] = ACTIONS(3151), - [sym_minus_metadata] = ACTIONS(3151), - [sym__pipe_table_start] = ACTIONS(3151), - [sym__fenced_div_start] = ACTIONS(3151), - [sym_ref_id_specifier] = ACTIONS(3151), - [sym__code_span_start] = ACTIONS(3151), - [sym__html_comment] = ACTIONS(3151), - [sym__autolink] = ACTIONS(3151), - [sym__highlight_span_start] = ACTIONS(3151), - [sym__insert_span_start] = ACTIONS(3151), - [sym__delete_span_start] = ACTIONS(3151), - [sym__edit_comment_span_start] = ACTIONS(3151), - [sym__single_quote_span_open] = ACTIONS(3151), - [sym__double_quote_span_open] = ACTIONS(3151), - [sym__shortcode_open_escaped] = ACTIONS(3151), - [sym__shortcode_open] = ACTIONS(3151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3151), - [sym__cite_author_in_text] = ACTIONS(3151), - [sym__cite_suppress_author] = ACTIONS(3151), - [sym__strikeout_open] = ACTIONS(3151), - [sym__subscript_open] = ACTIONS(3151), - [sym__superscript_open] = ACTIONS(3151), - [sym__inline_note_start_token] = ACTIONS(3151), - [sym__strong_emphasis_open_star] = ACTIONS(3151), - [sym__strong_emphasis_open_underscore] = ACTIONS(3151), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3151), - [sym_inline_note_reference] = ACTIONS(3151), - [sym_html_element] = ACTIONS(3151), - }, - [STATE(614)] = { - [anon_sym_COLON] = ACTIONS(3436), - [sym_entity_reference] = ACTIONS(3436), - [sym_numeric_character_reference] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_BANG_LBRACK] = ACTIONS(3436), - [anon_sym_DOLLAR] = ACTIONS(3438), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3436), - [aux_sym_pandoc_str_token1] = ACTIONS(3438), - [anon_sym_PIPE] = ACTIONS(3436), - [aux_sym__prose_punctuation_token1] = ACTIONS(3438), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3438), - [sym__line_ending] = ACTIONS(3436), - [sym__soft_line_ending] = ACTIONS(3436), - [sym__block_close] = ACTIONS(3436), - [sym__block_quote_start] = ACTIONS(3436), - [sym_atx_h1_marker] = ACTIONS(3436), - [sym_atx_h2_marker] = ACTIONS(3436), - [sym_atx_h3_marker] = ACTIONS(3436), - [sym_atx_h4_marker] = ACTIONS(3436), - [sym_atx_h5_marker] = ACTIONS(3436), - [sym_atx_h6_marker] = ACTIONS(3436), - [sym__thematic_break] = ACTIONS(3436), - [sym__list_marker_minus] = ACTIONS(3436), - [sym__list_marker_plus] = ACTIONS(3436), - [sym__list_marker_star] = ACTIONS(3436), - [sym__list_marker_parenthesis] = ACTIONS(3436), - [sym__list_marker_dot] = ACTIONS(3436), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_example] = ACTIONS(3436), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3436), - [sym__fenced_code_block_start_backtick] = ACTIONS(3436), - [sym_minus_metadata] = ACTIONS(3436), - [sym__pipe_table_start] = ACTIONS(3436), - [sym__fenced_div_start] = ACTIONS(3436), - [sym_ref_id_specifier] = ACTIONS(3436), - [sym__code_span_start] = ACTIONS(3436), - [sym__html_comment] = ACTIONS(3436), - [sym__autolink] = ACTIONS(3436), - [sym__highlight_span_start] = ACTIONS(3436), - [sym__insert_span_start] = ACTIONS(3436), - [sym__delete_span_start] = ACTIONS(3436), - [sym__edit_comment_span_start] = ACTIONS(3436), - [sym__single_quote_span_open] = ACTIONS(3436), - [sym__double_quote_span_open] = ACTIONS(3436), - [sym__shortcode_open_escaped] = ACTIONS(3436), - [sym__shortcode_open] = ACTIONS(3436), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3436), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3436), - [sym__cite_author_in_text] = ACTIONS(3436), - [sym__cite_suppress_author] = ACTIONS(3436), - [sym__strikeout_open] = ACTIONS(3436), - [sym__subscript_open] = ACTIONS(3436), - [sym__superscript_open] = ACTIONS(3436), - [sym__inline_note_start_token] = ACTIONS(3436), - [sym__strong_emphasis_open_star] = ACTIONS(3436), - [sym__strong_emphasis_open_underscore] = ACTIONS(3436), - [sym__emphasis_open_star] = ACTIONS(3436), - [sym__emphasis_open_underscore] = ACTIONS(3436), - [sym_inline_note_reference] = ACTIONS(3436), - [sym_html_element] = ACTIONS(3436), - }, - [STATE(615)] = { - [anon_sym_COLON] = ACTIONS(3372), - [sym_entity_reference] = ACTIONS(3372), - [sym_numeric_character_reference] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_BANG_LBRACK] = ACTIONS(3372), - [anon_sym_DOLLAR] = ACTIONS(3374), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3372), - [aux_sym_pandoc_str_token1] = ACTIONS(3374), - [anon_sym_PIPE] = ACTIONS(3372), - [aux_sym__prose_punctuation_token1] = ACTIONS(3374), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3374), - [sym__line_ending] = ACTIONS(3372), - [sym__soft_line_ending] = ACTIONS(3372), - [sym__block_close] = ACTIONS(3372), - [sym__block_quote_start] = ACTIONS(3372), - [sym_atx_h1_marker] = ACTIONS(3372), - [sym_atx_h2_marker] = ACTIONS(3372), - [sym_atx_h3_marker] = ACTIONS(3372), - [sym_atx_h4_marker] = ACTIONS(3372), - [sym_atx_h5_marker] = ACTIONS(3372), - [sym_atx_h6_marker] = ACTIONS(3372), - [sym__thematic_break] = ACTIONS(3372), - [sym__list_marker_minus] = ACTIONS(3372), - [sym__list_marker_plus] = ACTIONS(3372), - [sym__list_marker_star] = ACTIONS(3372), - [sym__list_marker_parenthesis] = ACTIONS(3372), - [sym__list_marker_dot] = ACTIONS(3372), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_example] = ACTIONS(3372), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3372), - [sym__fenced_code_block_start_backtick] = ACTIONS(3372), - [sym_minus_metadata] = ACTIONS(3372), - [sym__pipe_table_start] = ACTIONS(3372), - [sym__fenced_div_start] = ACTIONS(3372), - [sym_ref_id_specifier] = ACTIONS(3372), - [sym__code_span_start] = ACTIONS(3372), - [sym__html_comment] = ACTIONS(3372), - [sym__autolink] = ACTIONS(3372), - [sym__highlight_span_start] = ACTIONS(3372), - [sym__insert_span_start] = ACTIONS(3372), - [sym__delete_span_start] = ACTIONS(3372), - [sym__edit_comment_span_start] = ACTIONS(3372), - [sym__single_quote_span_open] = ACTIONS(3372), - [sym__double_quote_span_open] = ACTIONS(3372), - [sym__shortcode_open_escaped] = ACTIONS(3372), - [sym__shortcode_open] = ACTIONS(3372), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3372), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3372), - [sym__cite_author_in_text] = ACTIONS(3372), - [sym__cite_suppress_author] = ACTIONS(3372), - [sym__strikeout_open] = ACTIONS(3372), - [sym__subscript_open] = ACTIONS(3372), - [sym__superscript_open] = ACTIONS(3372), - [sym__inline_note_start_token] = ACTIONS(3372), - [sym__strong_emphasis_open_star] = ACTIONS(3372), - [sym__strong_emphasis_open_underscore] = ACTIONS(3372), - [sym__emphasis_open_star] = ACTIONS(3372), - [sym__emphasis_open_underscore] = ACTIONS(3372), - [sym_inline_note_reference] = ACTIONS(3372), - [sym_html_element] = ACTIONS(3372), - }, - [STATE(616)] = { - [anon_sym_COLON] = ACTIONS(3308), - [sym_entity_reference] = ACTIONS(3308), - [sym_numeric_character_reference] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3308), - [anon_sym_BANG_LBRACK] = ACTIONS(3308), - [anon_sym_DOLLAR] = ACTIONS(3310), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3308), - [aux_sym_pandoc_str_token1] = ACTIONS(3310), - [anon_sym_PIPE] = ACTIONS(3308), - [aux_sym__prose_punctuation_token1] = ACTIONS(3310), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3310), - [sym__line_ending] = ACTIONS(3308), - [sym__soft_line_ending] = ACTIONS(3308), - [sym__block_close] = ACTIONS(3308), - [sym__block_quote_start] = ACTIONS(3308), - [sym_atx_h1_marker] = ACTIONS(3308), - [sym_atx_h2_marker] = ACTIONS(3308), - [sym_atx_h3_marker] = ACTIONS(3308), - [sym_atx_h4_marker] = ACTIONS(3308), - [sym_atx_h5_marker] = ACTIONS(3308), - [sym_atx_h6_marker] = ACTIONS(3308), - [sym__thematic_break] = ACTIONS(3308), - [sym__list_marker_minus] = ACTIONS(3308), - [sym__list_marker_plus] = ACTIONS(3308), - [sym__list_marker_star] = ACTIONS(3308), - [sym__list_marker_parenthesis] = ACTIONS(3308), - [sym__list_marker_dot] = ACTIONS(3308), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3308), - [sym__list_marker_example] = ACTIONS(3308), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3308), - [sym__fenced_code_block_start_backtick] = ACTIONS(3308), - [sym_minus_metadata] = ACTIONS(3308), - [sym__pipe_table_start] = ACTIONS(3308), - [sym__fenced_div_start] = ACTIONS(3308), - [sym_ref_id_specifier] = ACTIONS(3308), - [sym__code_span_start] = ACTIONS(3308), - [sym__html_comment] = ACTIONS(3308), - [sym__autolink] = ACTIONS(3308), - [sym__highlight_span_start] = ACTIONS(3308), - [sym__insert_span_start] = ACTIONS(3308), - [sym__delete_span_start] = ACTIONS(3308), - [sym__edit_comment_span_start] = ACTIONS(3308), - [sym__single_quote_span_open] = ACTIONS(3308), - [sym__double_quote_span_open] = ACTIONS(3308), - [sym__shortcode_open_escaped] = ACTIONS(3308), - [sym__shortcode_open] = ACTIONS(3308), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3308), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3308), - [sym__cite_author_in_text] = ACTIONS(3308), - [sym__cite_suppress_author] = ACTIONS(3308), - [sym__strikeout_open] = ACTIONS(3308), - [sym__subscript_open] = ACTIONS(3308), - [sym__superscript_open] = ACTIONS(3308), - [sym__inline_note_start_token] = ACTIONS(3308), - [sym__strong_emphasis_open_star] = ACTIONS(3308), - [sym__strong_emphasis_open_underscore] = ACTIONS(3308), - [sym__emphasis_open_star] = ACTIONS(3308), - [sym__emphasis_open_underscore] = ACTIONS(3308), - [sym_inline_note_reference] = ACTIONS(3308), - [sym_html_element] = ACTIONS(3308), - }, - [STATE(617)] = { - [ts_builtin_sym_end] = ACTIONS(3352), - [anon_sym_COLON] = ACTIONS(3352), - [sym_entity_reference] = ACTIONS(3352), - [sym_numeric_character_reference] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_BANG_LBRACK] = ACTIONS(3352), - [anon_sym_DOLLAR] = ACTIONS(3354), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3352), - [aux_sym_pandoc_str_token1] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3352), - [aux_sym__prose_punctuation_token1] = ACTIONS(3354), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3354), - [sym__line_ending] = ACTIONS(3352), - [sym__soft_line_ending] = ACTIONS(3352), - [sym__block_quote_start] = ACTIONS(3352), - [sym_atx_h1_marker] = ACTIONS(3352), - [sym_atx_h2_marker] = ACTIONS(3352), - [sym_atx_h3_marker] = ACTIONS(3352), - [sym_atx_h4_marker] = ACTIONS(3352), - [sym_atx_h5_marker] = ACTIONS(3352), - [sym_atx_h6_marker] = ACTIONS(3352), - [sym__thematic_break] = ACTIONS(3352), - [sym__list_marker_minus] = ACTIONS(3352), - [sym__list_marker_plus] = ACTIONS(3352), - [sym__list_marker_star] = ACTIONS(3352), - [sym__list_marker_parenthesis] = ACTIONS(3352), - [sym__list_marker_dot] = ACTIONS(3352), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_example] = ACTIONS(3352), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3352), - [sym__fenced_code_block_start_backtick] = ACTIONS(3352), - [sym_minus_metadata] = ACTIONS(3352), - [sym__pipe_table_start] = ACTIONS(3352), - [sym__fenced_div_start] = ACTIONS(3352), - [sym_ref_id_specifier] = ACTIONS(3352), - [sym__code_span_start] = ACTIONS(3352), - [sym__html_comment] = ACTIONS(3352), - [sym__autolink] = ACTIONS(3352), - [sym__highlight_span_start] = ACTIONS(3352), - [sym__insert_span_start] = ACTIONS(3352), - [sym__delete_span_start] = ACTIONS(3352), - [sym__edit_comment_span_start] = ACTIONS(3352), - [sym__single_quote_span_open] = ACTIONS(3352), - [sym__double_quote_span_open] = ACTIONS(3352), - [sym__shortcode_open_escaped] = ACTIONS(3352), - [sym__shortcode_open] = ACTIONS(3352), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3352), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3352), - [sym__cite_author_in_text] = ACTIONS(3352), - [sym__cite_suppress_author] = ACTIONS(3352), - [sym__strikeout_open] = ACTIONS(3352), - [sym__subscript_open] = ACTIONS(3352), - [sym__superscript_open] = ACTIONS(3352), - [sym__inline_note_start_token] = ACTIONS(3352), - [sym__strong_emphasis_open_star] = ACTIONS(3352), - [sym__strong_emphasis_open_underscore] = ACTIONS(3352), - [sym__emphasis_open_star] = ACTIONS(3352), - [sym__emphasis_open_underscore] = ACTIONS(3352), - [sym_inline_note_reference] = ACTIONS(3352), - [sym_html_element] = ACTIONS(3352), - }, - [STATE(618)] = { - [anon_sym_COLON] = ACTIONS(3312), - [sym_entity_reference] = ACTIONS(3312), - [sym_numeric_character_reference] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3312), - [anon_sym_BANG_LBRACK] = ACTIONS(3312), - [anon_sym_DOLLAR] = ACTIONS(3314), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3312), - [aux_sym_pandoc_str_token1] = ACTIONS(3314), - [anon_sym_PIPE] = ACTIONS(3312), - [aux_sym__prose_punctuation_token1] = ACTIONS(3314), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3314), - [sym__line_ending] = ACTIONS(3312), - [sym__soft_line_ending] = ACTIONS(3312), - [sym__block_close] = ACTIONS(3312), - [sym__block_quote_start] = ACTIONS(3312), - [sym_atx_h1_marker] = ACTIONS(3312), - [sym_atx_h2_marker] = ACTIONS(3312), - [sym_atx_h3_marker] = ACTIONS(3312), - [sym_atx_h4_marker] = ACTIONS(3312), - [sym_atx_h5_marker] = ACTIONS(3312), - [sym_atx_h6_marker] = ACTIONS(3312), - [sym__thematic_break] = ACTIONS(3312), - [sym__list_marker_minus] = ACTIONS(3312), - [sym__list_marker_plus] = ACTIONS(3312), - [sym__list_marker_star] = ACTIONS(3312), - [sym__list_marker_parenthesis] = ACTIONS(3312), - [sym__list_marker_dot] = ACTIONS(3312), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3312), - [sym__list_marker_example] = ACTIONS(3312), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3312), - [sym__fenced_code_block_start_backtick] = ACTIONS(3312), - [sym_minus_metadata] = ACTIONS(3312), - [sym__pipe_table_start] = ACTIONS(3312), - [sym__fenced_div_start] = ACTIONS(3312), - [sym_ref_id_specifier] = ACTIONS(3312), - [sym__code_span_start] = ACTIONS(3312), - [sym__html_comment] = ACTIONS(3312), - [sym__autolink] = ACTIONS(3312), - [sym__highlight_span_start] = ACTIONS(3312), - [sym__insert_span_start] = ACTIONS(3312), - [sym__delete_span_start] = ACTIONS(3312), - [sym__edit_comment_span_start] = ACTIONS(3312), - [sym__single_quote_span_open] = ACTIONS(3312), - [sym__double_quote_span_open] = ACTIONS(3312), - [sym__shortcode_open_escaped] = ACTIONS(3312), - [sym__shortcode_open] = ACTIONS(3312), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3312), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3312), - [sym__cite_author_in_text] = ACTIONS(3312), - [sym__cite_suppress_author] = ACTIONS(3312), - [sym__strikeout_open] = ACTIONS(3312), - [sym__subscript_open] = ACTIONS(3312), - [sym__superscript_open] = ACTIONS(3312), - [sym__inline_note_start_token] = ACTIONS(3312), - [sym__strong_emphasis_open_star] = ACTIONS(3312), - [sym__strong_emphasis_open_underscore] = ACTIONS(3312), - [sym__emphasis_open_star] = ACTIONS(3312), - [sym__emphasis_open_underscore] = ACTIONS(3312), - [sym_inline_note_reference] = ACTIONS(3312), - [sym_html_element] = ACTIONS(3312), - }, - [STATE(619)] = { - [anon_sym_COLON] = ACTIONS(3316), - [sym_entity_reference] = ACTIONS(3316), - [sym_numeric_character_reference] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3316), - [anon_sym_BANG_LBRACK] = ACTIONS(3316), - [anon_sym_DOLLAR] = ACTIONS(3318), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3316), - [aux_sym_pandoc_str_token1] = ACTIONS(3318), - [anon_sym_PIPE] = ACTIONS(3316), - [aux_sym__prose_punctuation_token1] = ACTIONS(3318), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3318), - [sym__line_ending] = ACTIONS(3316), - [sym__soft_line_ending] = ACTIONS(3316), - [sym__block_close] = ACTIONS(3316), - [sym__block_quote_start] = ACTIONS(3316), - [sym_atx_h1_marker] = ACTIONS(3316), - [sym_atx_h2_marker] = ACTIONS(3316), - [sym_atx_h3_marker] = ACTIONS(3316), - [sym_atx_h4_marker] = ACTIONS(3316), - [sym_atx_h5_marker] = ACTIONS(3316), - [sym_atx_h6_marker] = ACTIONS(3316), - [sym__thematic_break] = ACTIONS(3316), - [sym__list_marker_minus] = ACTIONS(3316), - [sym__list_marker_plus] = ACTIONS(3316), - [sym__list_marker_star] = ACTIONS(3316), - [sym__list_marker_parenthesis] = ACTIONS(3316), - [sym__list_marker_dot] = ACTIONS(3316), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3316), - [sym__list_marker_example] = ACTIONS(3316), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3316), - [sym__fenced_code_block_start_backtick] = ACTIONS(3316), - [sym_minus_metadata] = ACTIONS(3316), - [sym__pipe_table_start] = ACTIONS(3316), - [sym__fenced_div_start] = ACTIONS(3316), - [sym_ref_id_specifier] = ACTIONS(3316), - [sym__code_span_start] = ACTIONS(3316), - [sym__html_comment] = ACTIONS(3316), - [sym__autolink] = ACTIONS(3316), - [sym__highlight_span_start] = ACTIONS(3316), - [sym__insert_span_start] = ACTIONS(3316), - [sym__delete_span_start] = ACTIONS(3316), - [sym__edit_comment_span_start] = ACTIONS(3316), - [sym__single_quote_span_open] = ACTIONS(3316), - [sym__double_quote_span_open] = ACTIONS(3316), - [sym__shortcode_open_escaped] = ACTIONS(3316), - [sym__shortcode_open] = ACTIONS(3316), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3316), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3316), - [sym__cite_author_in_text] = ACTIONS(3316), - [sym__cite_suppress_author] = ACTIONS(3316), - [sym__strikeout_open] = ACTIONS(3316), - [sym__subscript_open] = ACTIONS(3316), - [sym__superscript_open] = ACTIONS(3316), - [sym__inline_note_start_token] = ACTIONS(3316), - [sym__strong_emphasis_open_star] = ACTIONS(3316), - [sym__strong_emphasis_open_underscore] = ACTIONS(3316), - [sym__emphasis_open_star] = ACTIONS(3316), - [sym__emphasis_open_underscore] = ACTIONS(3316), - [sym_inline_note_reference] = ACTIONS(3316), - [sym_html_element] = ACTIONS(3316), - }, - [STATE(620)] = { - [ts_builtin_sym_end] = ACTIONS(3356), - [anon_sym_COLON] = ACTIONS(3356), - [sym_entity_reference] = ACTIONS(3356), - [sym_numeric_character_reference] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_BANG_LBRACK] = ACTIONS(3356), - [anon_sym_DOLLAR] = ACTIONS(3358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [aux_sym_pandoc_str_token1] = ACTIONS(3358), - [anon_sym_PIPE] = ACTIONS(3356), - [aux_sym__prose_punctuation_token1] = ACTIONS(3358), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3358), - [sym__line_ending] = ACTIONS(3356), - [sym__soft_line_ending] = ACTIONS(3356), - [sym__block_quote_start] = ACTIONS(3356), - [sym_atx_h1_marker] = ACTIONS(3356), - [sym_atx_h2_marker] = ACTIONS(3356), - [sym_atx_h3_marker] = ACTIONS(3356), - [sym_atx_h4_marker] = ACTIONS(3356), - [sym_atx_h5_marker] = ACTIONS(3356), - [sym_atx_h6_marker] = ACTIONS(3356), - [sym__thematic_break] = ACTIONS(3356), - [sym__list_marker_minus] = ACTIONS(3356), - [sym__list_marker_plus] = ACTIONS(3356), - [sym__list_marker_star] = ACTIONS(3356), - [sym__list_marker_parenthesis] = ACTIONS(3356), - [sym__list_marker_dot] = ACTIONS(3356), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_example] = ACTIONS(3356), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3356), - [sym__fenced_code_block_start_backtick] = ACTIONS(3356), - [sym_minus_metadata] = ACTIONS(3356), - [sym__pipe_table_start] = ACTIONS(3356), - [sym__fenced_div_start] = ACTIONS(3356), - [sym_ref_id_specifier] = ACTIONS(3356), - [sym__code_span_start] = ACTIONS(3356), - [sym__html_comment] = ACTIONS(3356), - [sym__autolink] = ACTIONS(3356), - [sym__highlight_span_start] = ACTIONS(3356), - [sym__insert_span_start] = ACTIONS(3356), - [sym__delete_span_start] = ACTIONS(3356), - [sym__edit_comment_span_start] = ACTIONS(3356), - [sym__single_quote_span_open] = ACTIONS(3356), - [sym__double_quote_span_open] = ACTIONS(3356), - [sym__shortcode_open_escaped] = ACTIONS(3356), - [sym__shortcode_open] = ACTIONS(3356), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3356), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3356), - [sym__cite_author_in_text] = ACTIONS(3356), - [sym__cite_suppress_author] = ACTIONS(3356), - [sym__strikeout_open] = ACTIONS(3356), - [sym__subscript_open] = ACTIONS(3356), - [sym__superscript_open] = ACTIONS(3356), - [sym__inline_note_start_token] = ACTIONS(3356), - [sym__strong_emphasis_open_star] = ACTIONS(3356), - [sym__strong_emphasis_open_underscore] = ACTIONS(3356), - [sym__emphasis_open_star] = ACTIONS(3356), - [sym__emphasis_open_underscore] = ACTIONS(3356), - [sym_inline_note_reference] = ACTIONS(3356), - [sym_html_element] = ACTIONS(3356), - }, - [STATE(621)] = { - [anon_sym_COLON] = ACTIONS(3125), - [sym_entity_reference] = ACTIONS(3125), - [sym_numeric_character_reference] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3125), - [anon_sym_BANG_LBRACK] = ACTIONS(3125), - [anon_sym_DOLLAR] = ACTIONS(3127), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [aux_sym_pandoc_str_token1] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3125), - [aux_sym__prose_punctuation_token1] = ACTIONS(3127), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3127), - [sym__line_ending] = ACTIONS(3125), - [sym__soft_line_ending] = ACTIONS(3125), - [sym__block_close] = ACTIONS(3125), - [sym__block_quote_start] = ACTIONS(3125), - [sym_atx_h1_marker] = ACTIONS(3125), - [sym_atx_h2_marker] = ACTIONS(3125), - [sym_atx_h3_marker] = ACTIONS(3125), - [sym_atx_h4_marker] = ACTIONS(3125), - [sym_atx_h5_marker] = ACTIONS(3125), - [sym_atx_h6_marker] = ACTIONS(3125), - [sym__thematic_break] = ACTIONS(3125), - [sym__list_marker_minus] = ACTIONS(3125), - [sym__list_marker_plus] = ACTIONS(3125), - [sym__list_marker_star] = ACTIONS(3125), - [sym__list_marker_parenthesis] = ACTIONS(3125), - [sym__list_marker_dot] = ACTIONS(3125), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3125), - [sym__list_marker_example] = ACTIONS(3125), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3125), - [sym__fenced_code_block_start_backtick] = ACTIONS(3125), - [sym_minus_metadata] = ACTIONS(3125), - [sym__pipe_table_start] = ACTIONS(3125), - [sym__fenced_div_start] = ACTIONS(3125), - [sym_ref_id_specifier] = ACTIONS(3125), - [sym__code_span_start] = ACTIONS(3125), - [sym__html_comment] = ACTIONS(3125), - [sym__autolink] = ACTIONS(3125), - [sym__highlight_span_start] = ACTIONS(3125), - [sym__insert_span_start] = ACTIONS(3125), - [sym__delete_span_start] = ACTIONS(3125), - [sym__edit_comment_span_start] = ACTIONS(3125), - [sym__single_quote_span_open] = ACTIONS(3125), - [sym__double_quote_span_open] = ACTIONS(3125), - [sym__shortcode_open_escaped] = ACTIONS(3125), - [sym__shortcode_open] = ACTIONS(3125), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3125), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3125), - [sym__cite_author_in_text] = ACTIONS(3125), - [sym__cite_suppress_author] = ACTIONS(3125), - [sym__strikeout_open] = ACTIONS(3125), - [sym__subscript_open] = ACTIONS(3125), - [sym__superscript_open] = ACTIONS(3125), - [sym__inline_note_start_token] = ACTIONS(3125), - [sym__strong_emphasis_open_star] = ACTIONS(3125), - [sym__strong_emphasis_open_underscore] = ACTIONS(3125), - [sym__emphasis_open_star] = ACTIONS(3125), - [sym__emphasis_open_underscore] = ACTIONS(3125), - [sym_inline_note_reference] = ACTIONS(3125), - [sym_html_element] = ACTIONS(3125), - }, - [STATE(622)] = { - [anon_sym_COLON] = ACTIONS(3376), - [sym_entity_reference] = ACTIONS(3376), - [sym_numeric_character_reference] = ACTIONS(3376), - [anon_sym_LBRACK] = ACTIONS(3376), - [anon_sym_BANG_LBRACK] = ACTIONS(3376), - [anon_sym_DOLLAR] = ACTIONS(3378), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3376), - [anon_sym_LBRACE] = ACTIONS(3376), - [aux_sym_pandoc_str_token1] = ACTIONS(3378), - [anon_sym_PIPE] = ACTIONS(3376), - [aux_sym__prose_punctuation_token1] = ACTIONS(3378), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3378), - [sym__line_ending] = ACTIONS(3376), - [sym__soft_line_ending] = ACTIONS(3376), - [sym__block_close] = ACTIONS(3376), - [sym__block_quote_start] = ACTIONS(3376), - [sym_atx_h1_marker] = ACTIONS(3376), - [sym_atx_h2_marker] = ACTIONS(3376), - [sym_atx_h3_marker] = ACTIONS(3376), - [sym_atx_h4_marker] = ACTIONS(3376), - [sym_atx_h5_marker] = ACTIONS(3376), - [sym_atx_h6_marker] = ACTIONS(3376), - [sym__thematic_break] = ACTIONS(3376), - [sym__list_marker_minus] = ACTIONS(3376), - [sym__list_marker_plus] = ACTIONS(3376), - [sym__list_marker_star] = ACTIONS(3376), - [sym__list_marker_parenthesis] = ACTIONS(3376), - [sym__list_marker_dot] = ACTIONS(3376), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_example] = ACTIONS(3376), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3376), - [sym__fenced_code_block_start_backtick] = ACTIONS(3376), - [sym_minus_metadata] = ACTIONS(3376), - [sym__pipe_table_start] = ACTIONS(3376), - [sym__fenced_div_start] = ACTIONS(3376), - [sym_ref_id_specifier] = ACTIONS(3376), - [sym__code_span_start] = ACTIONS(3376), - [sym__html_comment] = ACTIONS(3376), - [sym__autolink] = ACTIONS(3376), - [sym__highlight_span_start] = ACTIONS(3376), - [sym__insert_span_start] = ACTIONS(3376), - [sym__delete_span_start] = ACTIONS(3376), - [sym__edit_comment_span_start] = ACTIONS(3376), - [sym__single_quote_span_open] = ACTIONS(3376), - [sym__double_quote_span_open] = ACTIONS(3376), - [sym__shortcode_open_escaped] = ACTIONS(3376), - [sym__shortcode_open] = ACTIONS(3376), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3376), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3376), - [sym__cite_author_in_text] = ACTIONS(3376), - [sym__cite_suppress_author] = ACTIONS(3376), - [sym__strikeout_open] = ACTIONS(3376), - [sym__subscript_open] = ACTIONS(3376), - [sym__superscript_open] = ACTIONS(3376), - [sym__inline_note_start_token] = ACTIONS(3376), - [sym__strong_emphasis_open_star] = ACTIONS(3376), - [sym__strong_emphasis_open_underscore] = ACTIONS(3376), - [sym__emphasis_open_star] = ACTIONS(3376), - [sym__emphasis_open_underscore] = ACTIONS(3376), - [sym_inline_note_reference] = ACTIONS(3376), - [sym_html_element] = ACTIONS(3376), - }, - [STATE(623)] = { - [anon_sym_COLON] = ACTIONS(3131), - [sym_entity_reference] = ACTIONS(3131), - [sym_numeric_character_reference] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_BANG_LBRACK] = ACTIONS(3131), - [anon_sym_DOLLAR] = ACTIONS(3133), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3131), - [anon_sym_LBRACE] = ACTIONS(3131), - [aux_sym_pandoc_str_token1] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3131), - [aux_sym__prose_punctuation_token1] = ACTIONS(3133), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3133), - [sym__line_ending] = ACTIONS(3131), - [sym__soft_line_ending] = ACTIONS(3131), - [sym__block_close] = ACTIONS(3131), - [sym__block_quote_start] = ACTIONS(3131), - [sym_atx_h1_marker] = ACTIONS(3131), - [sym_atx_h2_marker] = ACTIONS(3131), - [sym_atx_h3_marker] = ACTIONS(3131), - [sym_atx_h4_marker] = ACTIONS(3131), - [sym_atx_h5_marker] = ACTIONS(3131), - [sym_atx_h6_marker] = ACTIONS(3131), - [sym__thematic_break] = ACTIONS(3131), - [sym__list_marker_minus] = ACTIONS(3131), - [sym__list_marker_plus] = ACTIONS(3131), - [sym__list_marker_star] = ACTIONS(3131), - [sym__list_marker_parenthesis] = ACTIONS(3131), - [sym__list_marker_dot] = ACTIONS(3131), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3131), - [sym__list_marker_example] = ACTIONS(3131), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3131), - [sym__fenced_code_block_start_backtick] = ACTIONS(3131), - [sym_minus_metadata] = ACTIONS(3131), - [sym__pipe_table_start] = ACTIONS(3131), - [sym__fenced_div_start] = ACTIONS(3131), - [sym_ref_id_specifier] = ACTIONS(3131), - [sym__code_span_start] = ACTIONS(3131), - [sym__html_comment] = ACTIONS(3131), - [sym__autolink] = ACTIONS(3131), - [sym__highlight_span_start] = ACTIONS(3131), - [sym__insert_span_start] = ACTIONS(3131), - [sym__delete_span_start] = ACTIONS(3131), - [sym__edit_comment_span_start] = ACTIONS(3131), - [sym__single_quote_span_open] = ACTIONS(3131), - [sym__double_quote_span_open] = ACTIONS(3131), - [sym__shortcode_open_escaped] = ACTIONS(3131), - [sym__shortcode_open] = ACTIONS(3131), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3131), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3131), - [sym__cite_author_in_text] = ACTIONS(3131), - [sym__cite_suppress_author] = ACTIONS(3131), - [sym__strikeout_open] = ACTIONS(3131), - [sym__subscript_open] = ACTIONS(3131), - [sym__superscript_open] = ACTIONS(3131), - [sym__inline_note_start_token] = ACTIONS(3131), - [sym__strong_emphasis_open_star] = ACTIONS(3131), - [sym__strong_emphasis_open_underscore] = ACTIONS(3131), - [sym__emphasis_open_star] = ACTIONS(3131), - [sym__emphasis_open_underscore] = ACTIONS(3131), - [sym_inline_note_reference] = ACTIONS(3131), - [sym_html_element] = ACTIONS(3131), - }, - [STATE(624)] = { - [ts_builtin_sym_end] = ACTIONS(3770), - [anon_sym_COLON] = ACTIONS(3770), - [sym_entity_reference] = ACTIONS(3770), - [sym_numeric_character_reference] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(3770), - [anon_sym_BANG_LBRACK] = ACTIONS(3770), - [anon_sym_DOLLAR] = ACTIONS(3772), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3770), - [anon_sym_LBRACE] = ACTIONS(3770), - [aux_sym_pandoc_str_token1] = ACTIONS(3772), - [anon_sym_PIPE] = ACTIONS(3770), - [aux_sym__prose_punctuation_token1] = ACTIONS(3772), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3772), - [sym__line_ending] = ACTIONS(3770), - [sym__soft_line_ending] = ACTIONS(3770), - [sym__block_quote_start] = ACTIONS(3770), - [sym_atx_h1_marker] = ACTIONS(3770), - [sym_atx_h2_marker] = ACTIONS(3770), - [sym_atx_h3_marker] = ACTIONS(3770), - [sym_atx_h4_marker] = ACTIONS(3770), - [sym_atx_h5_marker] = ACTIONS(3770), - [sym_atx_h6_marker] = ACTIONS(3770), - [sym__thematic_break] = ACTIONS(3770), - [sym__list_marker_minus] = ACTIONS(3770), - [sym__list_marker_plus] = ACTIONS(3770), - [sym__list_marker_star] = ACTIONS(3770), - [sym__list_marker_parenthesis] = ACTIONS(3770), - [sym__list_marker_dot] = ACTIONS(3770), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3770), - [sym__list_marker_example] = ACTIONS(3770), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3770), - [sym__fenced_code_block_start_backtick] = ACTIONS(3770), - [sym_minus_metadata] = ACTIONS(3770), - [sym__pipe_table_start] = ACTIONS(3770), - [sym__fenced_div_start] = ACTIONS(3770), - [sym_ref_id_specifier] = ACTIONS(3770), - [sym__code_span_start] = ACTIONS(3770), - [sym__html_comment] = ACTIONS(3770), - [sym__autolink] = ACTIONS(3770), - [sym__highlight_span_start] = ACTIONS(3770), - [sym__insert_span_start] = ACTIONS(3770), - [sym__delete_span_start] = ACTIONS(3770), - [sym__edit_comment_span_start] = ACTIONS(3770), - [sym__single_quote_span_open] = ACTIONS(3770), - [sym__double_quote_span_open] = ACTIONS(3770), - [sym__shortcode_open_escaped] = ACTIONS(3770), - [sym__shortcode_open] = ACTIONS(3770), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3770), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3770), - [sym__cite_author_in_text] = ACTIONS(3770), - [sym__cite_suppress_author] = ACTIONS(3770), - [sym__strikeout_open] = ACTIONS(3770), - [sym__subscript_open] = ACTIONS(3770), - [sym__superscript_open] = ACTIONS(3770), - [sym__inline_note_start_token] = ACTIONS(3770), - [sym__strong_emphasis_open_star] = ACTIONS(3770), - [sym__strong_emphasis_open_underscore] = ACTIONS(3770), - [sym__emphasis_open_star] = ACTIONS(3770), - [sym__emphasis_open_underscore] = ACTIONS(3770), - [sym_inline_note_reference] = ACTIONS(3770), - [sym_html_element] = ACTIONS(3770), - }, - [STATE(625)] = { - [ts_builtin_sym_end] = ACTIONS(3360), - [anon_sym_COLON] = ACTIONS(3360), - [sym_entity_reference] = ACTIONS(3360), - [sym_numeric_character_reference] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_BANG_LBRACK] = ACTIONS(3360), - [anon_sym_DOLLAR] = ACTIONS(3362), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3360), - [aux_sym_pandoc_str_token1] = ACTIONS(3362), - [anon_sym_PIPE] = ACTIONS(3360), - [aux_sym__prose_punctuation_token1] = ACTIONS(3362), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3362), - [sym__line_ending] = ACTIONS(3360), - [sym__soft_line_ending] = ACTIONS(3360), - [sym__block_quote_start] = ACTIONS(3360), - [sym_atx_h1_marker] = ACTIONS(3360), - [sym_atx_h2_marker] = ACTIONS(3360), - [sym_atx_h3_marker] = ACTIONS(3360), - [sym_atx_h4_marker] = ACTIONS(3360), - [sym_atx_h5_marker] = ACTIONS(3360), - [sym_atx_h6_marker] = ACTIONS(3360), - [sym__thematic_break] = ACTIONS(3360), - [sym__list_marker_minus] = ACTIONS(3360), - [sym__list_marker_plus] = ACTIONS(3360), - [sym__list_marker_star] = ACTIONS(3360), - [sym__list_marker_parenthesis] = ACTIONS(3360), - [sym__list_marker_dot] = ACTIONS(3360), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_example] = ACTIONS(3360), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3360), - [sym__fenced_code_block_start_backtick] = ACTIONS(3360), - [sym_minus_metadata] = ACTIONS(3360), - [sym__pipe_table_start] = ACTIONS(3360), - [sym__fenced_div_start] = ACTIONS(3360), - [sym_ref_id_specifier] = ACTIONS(3360), - [sym__code_span_start] = ACTIONS(3360), - [sym__html_comment] = ACTIONS(3360), - [sym__autolink] = ACTIONS(3360), - [sym__highlight_span_start] = ACTIONS(3360), - [sym__insert_span_start] = ACTIONS(3360), - [sym__delete_span_start] = ACTIONS(3360), - [sym__edit_comment_span_start] = ACTIONS(3360), - [sym__single_quote_span_open] = ACTIONS(3360), - [sym__double_quote_span_open] = ACTIONS(3360), - [sym__shortcode_open_escaped] = ACTIONS(3360), - [sym__shortcode_open] = ACTIONS(3360), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3360), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3360), - [sym__cite_author_in_text] = ACTIONS(3360), - [sym__cite_suppress_author] = ACTIONS(3360), - [sym__strikeout_open] = ACTIONS(3360), - [sym__subscript_open] = ACTIONS(3360), - [sym__superscript_open] = ACTIONS(3360), - [sym__inline_note_start_token] = ACTIONS(3360), - [sym__strong_emphasis_open_star] = ACTIONS(3360), - [sym__strong_emphasis_open_underscore] = ACTIONS(3360), - [sym__emphasis_open_star] = ACTIONS(3360), - [sym__emphasis_open_underscore] = ACTIONS(3360), - [sym_inline_note_reference] = ACTIONS(3360), - [sym_html_element] = ACTIONS(3360), - }, - [STATE(626)] = { - [anon_sym_COLON] = ACTIONS(3137), - [sym_entity_reference] = ACTIONS(3137), - [sym_numeric_character_reference] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_BANG_LBRACK] = ACTIONS(3137), - [anon_sym_DOLLAR] = ACTIONS(3139), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [aux_sym_pandoc_str_token1] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3137), - [aux_sym__prose_punctuation_token1] = ACTIONS(3139), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3139), - [sym__line_ending] = ACTIONS(3137), - [sym__soft_line_ending] = ACTIONS(3137), - [sym__block_close] = ACTIONS(3137), - [sym__block_quote_start] = ACTIONS(3137), - [sym_atx_h1_marker] = ACTIONS(3137), - [sym_atx_h2_marker] = ACTIONS(3137), - [sym_atx_h3_marker] = ACTIONS(3137), - [sym_atx_h4_marker] = ACTIONS(3137), - [sym_atx_h5_marker] = ACTIONS(3137), - [sym_atx_h6_marker] = ACTIONS(3137), - [sym__thematic_break] = ACTIONS(3137), - [sym__list_marker_minus] = ACTIONS(3137), - [sym__list_marker_plus] = ACTIONS(3137), - [sym__list_marker_star] = ACTIONS(3137), - [sym__list_marker_parenthesis] = ACTIONS(3137), - [sym__list_marker_dot] = ACTIONS(3137), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3137), - [sym__list_marker_example] = ACTIONS(3137), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3137), - [sym__fenced_code_block_start_backtick] = ACTIONS(3137), - [sym_minus_metadata] = ACTIONS(3137), - [sym__pipe_table_start] = ACTIONS(3137), - [sym__fenced_div_start] = ACTIONS(3137), - [sym_ref_id_specifier] = ACTIONS(3137), - [sym__code_span_start] = ACTIONS(3137), - [sym__html_comment] = ACTIONS(3137), - [sym__autolink] = ACTIONS(3137), - [sym__highlight_span_start] = ACTIONS(3137), - [sym__insert_span_start] = ACTIONS(3137), - [sym__delete_span_start] = ACTIONS(3137), - [sym__edit_comment_span_start] = ACTIONS(3137), - [sym__single_quote_span_open] = ACTIONS(3137), - [sym__double_quote_span_open] = ACTIONS(3137), - [sym__shortcode_open_escaped] = ACTIONS(3137), - [sym__shortcode_open] = ACTIONS(3137), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3137), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3137), - [sym__cite_author_in_text] = ACTIONS(3137), - [sym__cite_suppress_author] = ACTIONS(3137), - [sym__strikeout_open] = ACTIONS(3137), - [sym__subscript_open] = ACTIONS(3137), - [sym__superscript_open] = ACTIONS(3137), - [sym__inline_note_start_token] = ACTIONS(3137), - [sym__strong_emphasis_open_star] = ACTIONS(3137), - [sym__strong_emphasis_open_underscore] = ACTIONS(3137), - [sym__emphasis_open_star] = ACTIONS(3137), - [sym__emphasis_open_underscore] = ACTIONS(3137), - [sym_inline_note_reference] = ACTIONS(3137), - [sym_html_element] = ACTIONS(3137), - }, - [STATE(627)] = { - [anon_sym_COLON] = ACTIONS(3143), - [sym_entity_reference] = ACTIONS(3143), - [sym_numeric_character_reference] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_BANG_LBRACK] = ACTIONS(3143), - [anon_sym_DOLLAR] = ACTIONS(3145), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3143), - [aux_sym_pandoc_str_token1] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3143), - [aux_sym__prose_punctuation_token1] = ACTIONS(3145), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3145), - [sym__line_ending] = ACTIONS(3143), - [sym__soft_line_ending] = ACTIONS(3143), - [sym__block_close] = ACTIONS(3143), - [sym__block_quote_start] = ACTIONS(3143), - [sym_atx_h1_marker] = ACTIONS(3143), - [sym_atx_h2_marker] = ACTIONS(3143), - [sym_atx_h3_marker] = ACTIONS(3143), - [sym_atx_h4_marker] = ACTIONS(3143), - [sym_atx_h5_marker] = ACTIONS(3143), - [sym_atx_h6_marker] = ACTIONS(3143), - [sym__thematic_break] = ACTIONS(3143), - [sym__list_marker_minus] = ACTIONS(3143), - [sym__list_marker_plus] = ACTIONS(3143), - [sym__list_marker_star] = ACTIONS(3143), - [sym__list_marker_parenthesis] = ACTIONS(3143), - [sym__list_marker_dot] = ACTIONS(3143), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3143), - [sym__list_marker_example] = ACTIONS(3143), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3143), - [sym__fenced_code_block_start_backtick] = ACTIONS(3143), - [sym_minus_metadata] = ACTIONS(3143), - [sym__pipe_table_start] = ACTIONS(3143), - [sym__fenced_div_start] = ACTIONS(3143), - [sym_ref_id_specifier] = ACTIONS(3143), - [sym__code_span_start] = ACTIONS(3143), - [sym__html_comment] = ACTIONS(3143), - [sym__autolink] = ACTIONS(3143), - [sym__highlight_span_start] = ACTIONS(3143), - [sym__insert_span_start] = ACTIONS(3143), - [sym__delete_span_start] = ACTIONS(3143), - [sym__edit_comment_span_start] = ACTIONS(3143), - [sym__single_quote_span_open] = ACTIONS(3143), - [sym__double_quote_span_open] = ACTIONS(3143), - [sym__shortcode_open_escaped] = ACTIONS(3143), - [sym__shortcode_open] = ACTIONS(3143), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3143), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3143), - [sym__cite_author_in_text] = ACTIONS(3143), - [sym__cite_suppress_author] = ACTIONS(3143), - [sym__strikeout_open] = ACTIONS(3143), - [sym__subscript_open] = ACTIONS(3143), - [sym__superscript_open] = ACTIONS(3143), - [sym__inline_note_start_token] = ACTIONS(3143), - [sym__strong_emphasis_open_star] = ACTIONS(3143), - [sym__strong_emphasis_open_underscore] = ACTIONS(3143), - [sym__emphasis_open_star] = ACTIONS(3143), - [sym__emphasis_open_underscore] = ACTIONS(3143), - [sym_inline_note_reference] = ACTIONS(3143), - [sym_html_element] = ACTIONS(3143), - }, - [STATE(628)] = { - [anon_sym_COLON] = ACTIONS(3208), - [sym_entity_reference] = ACTIONS(3208), - [sym_numeric_character_reference] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_BANG_LBRACK] = ACTIONS(3208), - [anon_sym_DOLLAR] = ACTIONS(3210), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3208), - [aux_sym_pandoc_str_token1] = ACTIONS(3210), - [anon_sym_PIPE] = ACTIONS(3208), - [aux_sym__prose_punctuation_token1] = ACTIONS(3210), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3210), - [sym__line_ending] = ACTIONS(3208), - [sym__soft_line_ending] = ACTIONS(3208), - [sym__block_close] = ACTIONS(3208), - [sym__block_quote_start] = ACTIONS(3208), - [sym_atx_h1_marker] = ACTIONS(3208), - [sym_atx_h2_marker] = ACTIONS(3208), - [sym_atx_h3_marker] = ACTIONS(3208), - [sym_atx_h4_marker] = ACTIONS(3208), - [sym_atx_h5_marker] = ACTIONS(3208), - [sym_atx_h6_marker] = ACTIONS(3208), - [sym__thematic_break] = ACTIONS(3208), - [sym__list_marker_minus] = ACTIONS(3208), - [sym__list_marker_plus] = ACTIONS(3208), - [sym__list_marker_star] = ACTIONS(3208), - [sym__list_marker_parenthesis] = ACTIONS(3208), - [sym__list_marker_dot] = ACTIONS(3208), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3208), - [sym__list_marker_example] = ACTIONS(3208), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3208), - [sym__fenced_code_block_start_backtick] = ACTIONS(3208), - [sym_minus_metadata] = ACTIONS(3208), - [sym__pipe_table_start] = ACTIONS(3208), - [sym__fenced_div_start] = ACTIONS(3208), - [sym_ref_id_specifier] = ACTIONS(3208), - [sym__code_span_start] = ACTIONS(3208), - [sym__html_comment] = ACTIONS(3208), - [sym__autolink] = ACTIONS(3208), - [sym__highlight_span_start] = ACTIONS(3208), - [sym__insert_span_start] = ACTIONS(3208), - [sym__delete_span_start] = ACTIONS(3208), - [sym__edit_comment_span_start] = ACTIONS(3208), - [sym__single_quote_span_open] = ACTIONS(3208), - [sym__double_quote_span_open] = ACTIONS(3208), - [sym__shortcode_open_escaped] = ACTIONS(3208), - [sym__shortcode_open] = ACTIONS(3208), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3208), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3208), - [sym__cite_author_in_text] = ACTIONS(3208), - [sym__cite_suppress_author] = ACTIONS(3208), - [sym__strikeout_open] = ACTIONS(3208), - [sym__subscript_open] = ACTIONS(3208), - [sym__superscript_open] = ACTIONS(3208), - [sym__inline_note_start_token] = ACTIONS(3208), - [sym__strong_emphasis_open_star] = ACTIONS(3208), - [sym__strong_emphasis_open_underscore] = ACTIONS(3208), - [sym__emphasis_open_star] = ACTIONS(3208), - [sym__emphasis_open_underscore] = ACTIONS(3208), - [sym_inline_note_reference] = ACTIONS(3208), - [sym_html_element] = ACTIONS(3208), - }, - [STATE(629)] = { - [ts_builtin_sym_end] = ACTIONS(3364), - [anon_sym_COLON] = ACTIONS(3364), - [sym_entity_reference] = ACTIONS(3364), - [sym_numeric_character_reference] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_BANG_LBRACK] = ACTIONS(3364), - [anon_sym_DOLLAR] = ACTIONS(3366), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [aux_sym_pandoc_str_token1] = ACTIONS(3366), - [anon_sym_PIPE] = ACTIONS(3364), - [aux_sym__prose_punctuation_token1] = ACTIONS(3366), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3366), - [sym__line_ending] = ACTIONS(3364), - [sym__soft_line_ending] = ACTIONS(3364), - [sym__block_quote_start] = ACTIONS(3364), - [sym_atx_h1_marker] = ACTIONS(3364), - [sym_atx_h2_marker] = ACTIONS(3364), - [sym_atx_h3_marker] = ACTIONS(3364), - [sym_atx_h4_marker] = ACTIONS(3364), - [sym_atx_h5_marker] = ACTIONS(3364), - [sym_atx_h6_marker] = ACTIONS(3364), - [sym__thematic_break] = ACTIONS(3364), - [sym__list_marker_minus] = ACTIONS(3364), - [sym__list_marker_plus] = ACTIONS(3364), - [sym__list_marker_star] = ACTIONS(3364), - [sym__list_marker_parenthesis] = ACTIONS(3364), - [sym__list_marker_dot] = ACTIONS(3364), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3364), - [sym__list_marker_example] = ACTIONS(3364), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3364), - [sym__fenced_code_block_start_backtick] = ACTIONS(3364), - [sym_minus_metadata] = ACTIONS(3364), - [sym__pipe_table_start] = ACTIONS(3364), - [sym__fenced_div_start] = ACTIONS(3364), - [sym_ref_id_specifier] = ACTIONS(3364), - [sym__code_span_start] = ACTIONS(3364), - [sym__html_comment] = ACTIONS(3364), - [sym__autolink] = ACTIONS(3364), - [sym__highlight_span_start] = ACTIONS(3364), - [sym__insert_span_start] = ACTIONS(3364), - [sym__delete_span_start] = ACTIONS(3364), - [sym__edit_comment_span_start] = ACTIONS(3364), - [sym__single_quote_span_open] = ACTIONS(3364), - [sym__double_quote_span_open] = ACTIONS(3364), - [sym__shortcode_open_escaped] = ACTIONS(3364), - [sym__shortcode_open] = ACTIONS(3364), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3364), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3364), - [sym__cite_author_in_text] = ACTIONS(3364), - [sym__cite_suppress_author] = ACTIONS(3364), - [sym__strikeout_open] = ACTIONS(3364), - [sym__subscript_open] = ACTIONS(3364), - [sym__superscript_open] = ACTIONS(3364), - [sym__inline_note_start_token] = ACTIONS(3364), - [sym__strong_emphasis_open_star] = ACTIONS(3364), - [sym__strong_emphasis_open_underscore] = ACTIONS(3364), - [sym__emphasis_open_star] = ACTIONS(3364), - [sym__emphasis_open_underscore] = ACTIONS(3364), - [sym_inline_note_reference] = ACTIONS(3364), - [sym_html_element] = ACTIONS(3364), - }, - [STATE(630)] = { - [anon_sym_COLON] = ACTIONS(3151), - [sym_entity_reference] = ACTIONS(3151), - [sym_numeric_character_reference] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_BANG_LBRACK] = ACTIONS(3151), - [anon_sym_DOLLAR] = ACTIONS(3153), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3151), - [aux_sym_pandoc_str_token1] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3151), - [aux_sym__prose_punctuation_token1] = ACTIONS(3153), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3153), - [sym__line_ending] = ACTIONS(3151), - [sym__soft_line_ending] = ACTIONS(3151), - [sym__block_close] = ACTIONS(3151), - [sym__block_quote_start] = ACTIONS(3151), - [sym_atx_h1_marker] = ACTIONS(3151), - [sym_atx_h2_marker] = ACTIONS(3151), - [sym_atx_h3_marker] = ACTIONS(3151), - [sym_atx_h4_marker] = ACTIONS(3151), - [sym_atx_h5_marker] = ACTIONS(3151), - [sym_atx_h6_marker] = ACTIONS(3151), - [sym__thematic_break] = ACTIONS(3151), - [sym__list_marker_minus] = ACTIONS(3151), - [sym__list_marker_plus] = ACTIONS(3151), - [sym__list_marker_star] = ACTIONS(3151), - [sym__list_marker_parenthesis] = ACTIONS(3151), - [sym__list_marker_dot] = ACTIONS(3151), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3151), - [sym__list_marker_example] = ACTIONS(3151), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3151), - [sym__fenced_code_block_start_backtick] = ACTIONS(3151), - [sym_minus_metadata] = ACTIONS(3151), - [sym__pipe_table_start] = ACTIONS(3151), - [sym__fenced_div_start] = ACTIONS(3151), - [sym_ref_id_specifier] = ACTIONS(3151), - [sym__code_span_start] = ACTIONS(3151), - [sym__html_comment] = ACTIONS(3151), - [sym__autolink] = ACTIONS(3151), - [sym__highlight_span_start] = ACTIONS(3151), - [sym__insert_span_start] = ACTIONS(3151), - [sym__delete_span_start] = ACTIONS(3151), - [sym__edit_comment_span_start] = ACTIONS(3151), - [sym__single_quote_span_open] = ACTIONS(3151), - [sym__double_quote_span_open] = ACTIONS(3151), - [sym__shortcode_open_escaped] = ACTIONS(3151), - [sym__shortcode_open] = ACTIONS(3151), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3151), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3151), - [sym__cite_author_in_text] = ACTIONS(3151), - [sym__cite_suppress_author] = ACTIONS(3151), - [sym__strikeout_open] = ACTIONS(3151), - [sym__subscript_open] = ACTIONS(3151), - [sym__superscript_open] = ACTIONS(3151), - [sym__inline_note_start_token] = ACTIONS(3151), - [sym__strong_emphasis_open_star] = ACTIONS(3151), - [sym__strong_emphasis_open_underscore] = ACTIONS(3151), - [sym__emphasis_open_star] = ACTIONS(3151), - [sym__emphasis_open_underscore] = ACTIONS(3151), - [sym_inline_note_reference] = ACTIONS(3151), - [sym_html_element] = ACTIONS(3151), - }, - [STATE(631)] = { - [anon_sym_COLON] = ACTIONS(3340), - [sym_entity_reference] = ACTIONS(3340), - [sym_numeric_character_reference] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_BANG_LBRACK] = ACTIONS(3340), - [anon_sym_DOLLAR] = ACTIONS(3342), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [aux_sym_pandoc_str_token1] = ACTIONS(3342), - [anon_sym_PIPE] = ACTIONS(3340), - [aux_sym__prose_punctuation_token1] = ACTIONS(3342), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3342), - [sym__line_ending] = ACTIONS(3340), - [sym__soft_line_ending] = ACTIONS(3340), - [sym__block_close] = ACTIONS(3340), - [sym__block_quote_start] = ACTIONS(3340), - [sym_atx_h1_marker] = ACTIONS(3340), - [sym_atx_h2_marker] = ACTIONS(3340), - [sym_atx_h3_marker] = ACTIONS(3340), - [sym_atx_h4_marker] = ACTIONS(3340), - [sym_atx_h5_marker] = ACTIONS(3340), - [sym_atx_h6_marker] = ACTIONS(3340), - [sym__thematic_break] = ACTIONS(3340), - [sym__list_marker_minus] = ACTIONS(3340), - [sym__list_marker_plus] = ACTIONS(3340), - [sym__list_marker_star] = ACTIONS(3340), - [sym__list_marker_parenthesis] = ACTIONS(3340), - [sym__list_marker_dot] = ACTIONS(3340), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3340), - [sym__list_marker_example] = ACTIONS(3340), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3340), - [sym__fenced_code_block_start_backtick] = ACTIONS(3340), - [sym_minus_metadata] = ACTIONS(3340), - [sym__pipe_table_start] = ACTIONS(3340), - [sym__fenced_div_start] = ACTIONS(3340), - [sym_ref_id_specifier] = ACTIONS(3340), - [sym__code_span_start] = ACTIONS(3340), - [sym__html_comment] = ACTIONS(3340), - [sym__autolink] = ACTIONS(3340), - [sym__highlight_span_start] = ACTIONS(3340), - [sym__insert_span_start] = ACTIONS(3340), - [sym__delete_span_start] = ACTIONS(3340), - [sym__edit_comment_span_start] = ACTIONS(3340), - [sym__single_quote_span_open] = ACTIONS(3340), - [sym__double_quote_span_open] = ACTIONS(3340), - [sym__shortcode_open_escaped] = ACTIONS(3340), - [sym__shortcode_open] = ACTIONS(3340), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3340), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3340), - [sym__cite_author_in_text] = ACTIONS(3340), - [sym__cite_suppress_author] = ACTIONS(3340), - [sym__strikeout_open] = ACTIONS(3340), - [sym__subscript_open] = ACTIONS(3340), - [sym__superscript_open] = ACTIONS(3340), - [sym__inline_note_start_token] = ACTIONS(3340), - [sym__strong_emphasis_open_star] = ACTIONS(3340), - [sym__strong_emphasis_open_underscore] = ACTIONS(3340), - [sym__emphasis_open_star] = ACTIONS(3340), - [sym__emphasis_open_underscore] = ACTIONS(3340), - [sym_inline_note_reference] = ACTIONS(3340), - [sym_html_element] = ACTIONS(3340), - }, - [STATE(632)] = { - [anon_sym_COLON] = ACTIONS(3344), - [sym_entity_reference] = ACTIONS(3344), - [sym_numeric_character_reference] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_BANG_LBRACK] = ACTIONS(3344), - [anon_sym_DOLLAR] = ACTIONS(3346), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [aux_sym_pandoc_str_token1] = ACTIONS(3346), - [anon_sym_PIPE] = ACTIONS(3344), - [aux_sym__prose_punctuation_token1] = ACTIONS(3346), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3346), - [sym__line_ending] = ACTIONS(3344), - [sym__soft_line_ending] = ACTIONS(3344), - [sym__block_close] = ACTIONS(3344), - [sym__block_quote_start] = ACTIONS(3344), - [sym_atx_h1_marker] = ACTIONS(3344), - [sym_atx_h2_marker] = ACTIONS(3344), - [sym_atx_h3_marker] = ACTIONS(3344), - [sym_atx_h4_marker] = ACTIONS(3344), - [sym_atx_h5_marker] = ACTIONS(3344), - [sym_atx_h6_marker] = ACTIONS(3344), - [sym__thematic_break] = ACTIONS(3344), - [sym__list_marker_minus] = ACTIONS(3344), - [sym__list_marker_plus] = ACTIONS(3344), - [sym__list_marker_star] = ACTIONS(3344), - [sym__list_marker_parenthesis] = ACTIONS(3344), - [sym__list_marker_dot] = ACTIONS(3344), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3344), - [sym__list_marker_example] = ACTIONS(3344), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3344), - [sym__fenced_code_block_start_backtick] = ACTIONS(3344), - [sym_minus_metadata] = ACTIONS(3344), - [sym__pipe_table_start] = ACTIONS(3344), - [sym__fenced_div_start] = ACTIONS(3344), - [sym_ref_id_specifier] = ACTIONS(3344), - [sym__code_span_start] = ACTIONS(3344), - [sym__html_comment] = ACTIONS(3344), - [sym__autolink] = ACTIONS(3344), - [sym__highlight_span_start] = ACTIONS(3344), - [sym__insert_span_start] = ACTIONS(3344), - [sym__delete_span_start] = ACTIONS(3344), - [sym__edit_comment_span_start] = ACTIONS(3344), - [sym__single_quote_span_open] = ACTIONS(3344), - [sym__double_quote_span_open] = ACTIONS(3344), - [sym__shortcode_open_escaped] = ACTIONS(3344), - [sym__shortcode_open] = ACTIONS(3344), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3344), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3344), - [sym__cite_author_in_text] = ACTIONS(3344), - [sym__cite_suppress_author] = ACTIONS(3344), - [sym__strikeout_open] = ACTIONS(3344), - [sym__subscript_open] = ACTIONS(3344), - [sym__superscript_open] = ACTIONS(3344), - [sym__inline_note_start_token] = ACTIONS(3344), - [sym__strong_emphasis_open_star] = ACTIONS(3344), - [sym__strong_emphasis_open_underscore] = ACTIONS(3344), - [sym__emphasis_open_star] = ACTIONS(3344), - [sym__emphasis_open_underscore] = ACTIONS(3344), - [sym_inline_note_reference] = ACTIONS(3344), - [sym_html_element] = ACTIONS(3344), - }, - [STATE(633)] = { - [anon_sym_COLON] = ACTIONS(3348), - [sym_entity_reference] = ACTIONS(3348), - [sym_numeric_character_reference] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3348), - [anon_sym_BANG_LBRACK] = ACTIONS(3348), - [anon_sym_DOLLAR] = ACTIONS(3350), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3348), - [aux_sym_pandoc_str_token1] = ACTIONS(3350), - [anon_sym_PIPE] = ACTIONS(3348), - [aux_sym__prose_punctuation_token1] = ACTIONS(3350), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3350), - [sym__line_ending] = ACTIONS(3348), - [sym__soft_line_ending] = ACTIONS(3348), - [sym__block_close] = ACTIONS(3348), - [sym__block_quote_start] = ACTIONS(3348), - [sym_atx_h1_marker] = ACTIONS(3348), - [sym_atx_h2_marker] = ACTIONS(3348), - [sym_atx_h3_marker] = ACTIONS(3348), - [sym_atx_h4_marker] = ACTIONS(3348), - [sym_atx_h5_marker] = ACTIONS(3348), - [sym_atx_h6_marker] = ACTIONS(3348), - [sym__thematic_break] = ACTIONS(3348), - [sym__list_marker_minus] = ACTIONS(3348), - [sym__list_marker_plus] = ACTIONS(3348), - [sym__list_marker_star] = ACTIONS(3348), - [sym__list_marker_parenthesis] = ACTIONS(3348), - [sym__list_marker_dot] = ACTIONS(3348), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3348), - [sym__list_marker_example] = ACTIONS(3348), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3348), - [sym__fenced_code_block_start_backtick] = ACTIONS(3348), - [sym_minus_metadata] = ACTIONS(3348), - [sym__pipe_table_start] = ACTIONS(3348), - [sym__fenced_div_start] = ACTIONS(3348), - [sym_ref_id_specifier] = ACTIONS(3348), - [sym__code_span_start] = ACTIONS(3348), - [sym__html_comment] = ACTIONS(3348), - [sym__autolink] = ACTIONS(3348), - [sym__highlight_span_start] = ACTIONS(3348), - [sym__insert_span_start] = ACTIONS(3348), - [sym__delete_span_start] = ACTIONS(3348), - [sym__edit_comment_span_start] = ACTIONS(3348), - [sym__single_quote_span_open] = ACTIONS(3348), - [sym__double_quote_span_open] = ACTIONS(3348), - [sym__shortcode_open_escaped] = ACTIONS(3348), - [sym__shortcode_open] = ACTIONS(3348), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3348), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3348), - [sym__cite_author_in_text] = ACTIONS(3348), - [sym__cite_suppress_author] = ACTIONS(3348), - [sym__strikeout_open] = ACTIONS(3348), - [sym__subscript_open] = ACTIONS(3348), - [sym__superscript_open] = ACTIONS(3348), - [sym__inline_note_start_token] = ACTIONS(3348), - [sym__strong_emphasis_open_star] = ACTIONS(3348), - [sym__strong_emphasis_open_underscore] = ACTIONS(3348), - [sym__emphasis_open_star] = ACTIONS(3348), - [sym__emphasis_open_underscore] = ACTIONS(3348), - [sym_inline_note_reference] = ACTIONS(3348), - [sym_html_element] = ACTIONS(3348), - }, - [STATE(634)] = { - [anon_sym_COLON] = ACTIONS(3352), - [sym_entity_reference] = ACTIONS(3352), - [sym_numeric_character_reference] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3352), - [anon_sym_BANG_LBRACK] = ACTIONS(3352), - [anon_sym_DOLLAR] = ACTIONS(3354), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3352), - [aux_sym_pandoc_str_token1] = ACTIONS(3354), - [anon_sym_PIPE] = ACTIONS(3352), - [aux_sym__prose_punctuation_token1] = ACTIONS(3354), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3354), - [sym__line_ending] = ACTIONS(3352), - [sym__soft_line_ending] = ACTIONS(3352), - [sym__block_close] = ACTIONS(3352), - [sym__block_quote_start] = ACTIONS(3352), - [sym_atx_h1_marker] = ACTIONS(3352), - [sym_atx_h2_marker] = ACTIONS(3352), - [sym_atx_h3_marker] = ACTIONS(3352), - [sym_atx_h4_marker] = ACTIONS(3352), - [sym_atx_h5_marker] = ACTIONS(3352), - [sym_atx_h6_marker] = ACTIONS(3352), - [sym__thematic_break] = ACTIONS(3352), - [sym__list_marker_minus] = ACTIONS(3352), - [sym__list_marker_plus] = ACTIONS(3352), - [sym__list_marker_star] = ACTIONS(3352), - [sym__list_marker_parenthesis] = ACTIONS(3352), - [sym__list_marker_dot] = ACTIONS(3352), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3352), - [sym__list_marker_example] = ACTIONS(3352), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3352), - [sym__fenced_code_block_start_backtick] = ACTIONS(3352), - [sym_minus_metadata] = ACTIONS(3352), - [sym__pipe_table_start] = ACTIONS(3352), - [sym__fenced_div_start] = ACTIONS(3352), - [sym_ref_id_specifier] = ACTIONS(3352), - [sym__code_span_start] = ACTIONS(3352), - [sym__html_comment] = ACTIONS(3352), - [sym__autolink] = ACTIONS(3352), - [sym__highlight_span_start] = ACTIONS(3352), - [sym__insert_span_start] = ACTIONS(3352), - [sym__delete_span_start] = ACTIONS(3352), - [sym__edit_comment_span_start] = ACTIONS(3352), - [sym__single_quote_span_open] = ACTIONS(3352), - [sym__double_quote_span_open] = ACTIONS(3352), - [sym__shortcode_open_escaped] = ACTIONS(3352), - [sym__shortcode_open] = ACTIONS(3352), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3352), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3352), - [sym__cite_author_in_text] = ACTIONS(3352), - [sym__cite_suppress_author] = ACTIONS(3352), - [sym__strikeout_open] = ACTIONS(3352), - [sym__subscript_open] = ACTIONS(3352), - [sym__superscript_open] = ACTIONS(3352), - [sym__inline_note_start_token] = ACTIONS(3352), - [sym__strong_emphasis_open_star] = ACTIONS(3352), - [sym__strong_emphasis_open_underscore] = ACTIONS(3352), - [sym__emphasis_open_star] = ACTIONS(3352), - [sym__emphasis_open_underscore] = ACTIONS(3352), - [sym_inline_note_reference] = ACTIONS(3352), - [sym_html_element] = ACTIONS(3352), - }, - [STATE(635)] = { - [ts_builtin_sym_end] = ACTIONS(3368), - [anon_sym_COLON] = ACTIONS(3368), - [sym_entity_reference] = ACTIONS(3368), - [sym_numeric_character_reference] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3368), - [anon_sym_BANG_LBRACK] = ACTIONS(3368), - [anon_sym_DOLLAR] = ACTIONS(3370), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3368), - [aux_sym_pandoc_str_token1] = ACTIONS(3370), - [anon_sym_PIPE] = ACTIONS(3368), - [aux_sym__prose_punctuation_token1] = ACTIONS(3370), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3370), - [sym__line_ending] = ACTIONS(3368), - [sym__soft_line_ending] = ACTIONS(3368), - [sym__block_quote_start] = ACTIONS(3368), - [sym_atx_h1_marker] = ACTIONS(3368), - [sym_atx_h2_marker] = ACTIONS(3368), - [sym_atx_h3_marker] = ACTIONS(3368), - [sym_atx_h4_marker] = ACTIONS(3368), - [sym_atx_h5_marker] = ACTIONS(3368), - [sym_atx_h6_marker] = ACTIONS(3368), - [sym__thematic_break] = ACTIONS(3368), - [sym__list_marker_minus] = ACTIONS(3368), - [sym__list_marker_plus] = ACTIONS(3368), - [sym__list_marker_star] = ACTIONS(3368), - [sym__list_marker_parenthesis] = ACTIONS(3368), - [sym__list_marker_dot] = ACTIONS(3368), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3368), - [sym__list_marker_example] = ACTIONS(3368), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3368), - [sym__fenced_code_block_start_backtick] = ACTIONS(3368), - [sym_minus_metadata] = ACTIONS(3368), - [sym__pipe_table_start] = ACTIONS(3368), - [sym__fenced_div_start] = ACTIONS(3368), - [sym_ref_id_specifier] = ACTIONS(3368), - [sym__code_span_start] = ACTIONS(3368), - [sym__html_comment] = ACTIONS(3368), - [sym__autolink] = ACTIONS(3368), - [sym__highlight_span_start] = ACTIONS(3368), - [sym__insert_span_start] = ACTIONS(3368), - [sym__delete_span_start] = ACTIONS(3368), - [sym__edit_comment_span_start] = ACTIONS(3368), - [sym__single_quote_span_open] = ACTIONS(3368), - [sym__double_quote_span_open] = ACTIONS(3368), - [sym__shortcode_open_escaped] = ACTIONS(3368), - [sym__shortcode_open] = ACTIONS(3368), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3368), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3368), - [sym__cite_author_in_text] = ACTIONS(3368), - [sym__cite_suppress_author] = ACTIONS(3368), - [sym__strikeout_open] = ACTIONS(3368), - [sym__subscript_open] = ACTIONS(3368), - [sym__superscript_open] = ACTIONS(3368), - [sym__inline_note_start_token] = ACTIONS(3368), - [sym__strong_emphasis_open_star] = ACTIONS(3368), - [sym__strong_emphasis_open_underscore] = ACTIONS(3368), - [sym__emphasis_open_star] = ACTIONS(3368), - [sym__emphasis_open_underscore] = ACTIONS(3368), - [sym_inline_note_reference] = ACTIONS(3368), - [sym_html_element] = ACTIONS(3368), - }, - [STATE(636)] = { - [ts_builtin_sym_end] = ACTIONS(3372), - [anon_sym_COLON] = ACTIONS(3372), - [sym_entity_reference] = ACTIONS(3372), - [sym_numeric_character_reference] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_BANG_LBRACK] = ACTIONS(3372), - [anon_sym_DOLLAR] = ACTIONS(3374), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3372), - [aux_sym_pandoc_str_token1] = ACTIONS(3374), - [anon_sym_PIPE] = ACTIONS(3372), - [aux_sym__prose_punctuation_token1] = ACTIONS(3374), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3374), - [sym__line_ending] = ACTIONS(3372), - [sym__soft_line_ending] = ACTIONS(3372), - [sym__block_quote_start] = ACTIONS(3372), - [sym_atx_h1_marker] = ACTIONS(3372), - [sym_atx_h2_marker] = ACTIONS(3372), - [sym_atx_h3_marker] = ACTIONS(3372), - [sym_atx_h4_marker] = ACTIONS(3372), - [sym_atx_h5_marker] = ACTIONS(3372), - [sym_atx_h6_marker] = ACTIONS(3372), - [sym__thematic_break] = ACTIONS(3372), - [sym__list_marker_minus] = ACTIONS(3372), - [sym__list_marker_plus] = ACTIONS(3372), - [sym__list_marker_star] = ACTIONS(3372), - [sym__list_marker_parenthesis] = ACTIONS(3372), - [sym__list_marker_dot] = ACTIONS(3372), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3372), - [sym__list_marker_example] = ACTIONS(3372), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3372), - [sym__fenced_code_block_start_backtick] = ACTIONS(3372), - [sym_minus_metadata] = ACTIONS(3372), - [sym__pipe_table_start] = ACTIONS(3372), - [sym__fenced_div_start] = ACTIONS(3372), - [sym_ref_id_specifier] = ACTIONS(3372), - [sym__code_span_start] = ACTIONS(3372), - [sym__html_comment] = ACTIONS(3372), - [sym__autolink] = ACTIONS(3372), - [sym__highlight_span_start] = ACTIONS(3372), - [sym__insert_span_start] = ACTIONS(3372), - [sym__delete_span_start] = ACTIONS(3372), - [sym__edit_comment_span_start] = ACTIONS(3372), - [sym__single_quote_span_open] = ACTIONS(3372), - [sym__double_quote_span_open] = ACTIONS(3372), - [sym__shortcode_open_escaped] = ACTIONS(3372), - [sym__shortcode_open] = ACTIONS(3372), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3372), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3372), - [sym__cite_author_in_text] = ACTIONS(3372), - [sym__cite_suppress_author] = ACTIONS(3372), - [sym__strikeout_open] = ACTIONS(3372), - [sym__subscript_open] = ACTIONS(3372), - [sym__superscript_open] = ACTIONS(3372), - [sym__inline_note_start_token] = ACTIONS(3372), - [sym__strong_emphasis_open_star] = ACTIONS(3372), - [sym__strong_emphasis_open_underscore] = ACTIONS(3372), - [sym__emphasis_open_star] = ACTIONS(3372), - [sym__emphasis_open_underscore] = ACTIONS(3372), - [sym_inline_note_reference] = ACTIONS(3372), - [sym_html_element] = ACTIONS(3372), - }, - [STATE(637)] = { - [ts_builtin_sym_end] = ACTIONS(3376), - [anon_sym_COLON] = ACTIONS(3376), - [sym_entity_reference] = ACTIONS(3376), - [sym_numeric_character_reference] = ACTIONS(3376), - [anon_sym_LBRACK] = ACTIONS(3376), - [anon_sym_BANG_LBRACK] = ACTIONS(3376), - [anon_sym_DOLLAR] = ACTIONS(3378), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3376), - [anon_sym_LBRACE] = ACTIONS(3376), - [aux_sym_pandoc_str_token1] = ACTIONS(3378), - [anon_sym_PIPE] = ACTIONS(3376), - [aux_sym__prose_punctuation_token1] = ACTIONS(3378), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3378), - [sym__line_ending] = ACTIONS(3376), - [sym__soft_line_ending] = ACTIONS(3376), - [sym__block_quote_start] = ACTIONS(3376), - [sym_atx_h1_marker] = ACTIONS(3376), - [sym_atx_h2_marker] = ACTIONS(3376), - [sym_atx_h3_marker] = ACTIONS(3376), - [sym_atx_h4_marker] = ACTIONS(3376), - [sym_atx_h5_marker] = ACTIONS(3376), - [sym_atx_h6_marker] = ACTIONS(3376), - [sym__thematic_break] = ACTIONS(3376), - [sym__list_marker_minus] = ACTIONS(3376), - [sym__list_marker_plus] = ACTIONS(3376), - [sym__list_marker_star] = ACTIONS(3376), - [sym__list_marker_parenthesis] = ACTIONS(3376), - [sym__list_marker_dot] = ACTIONS(3376), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3376), - [sym__list_marker_example] = ACTIONS(3376), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3376), - [sym__fenced_code_block_start_backtick] = ACTIONS(3376), - [sym_minus_metadata] = ACTIONS(3376), - [sym__pipe_table_start] = ACTIONS(3376), - [sym__fenced_div_start] = ACTIONS(3376), - [sym_ref_id_specifier] = ACTIONS(3376), - [sym__code_span_start] = ACTIONS(3376), - [sym__html_comment] = ACTIONS(3376), - [sym__autolink] = ACTIONS(3376), - [sym__highlight_span_start] = ACTIONS(3376), - [sym__insert_span_start] = ACTIONS(3376), - [sym__delete_span_start] = ACTIONS(3376), - [sym__edit_comment_span_start] = ACTIONS(3376), - [sym__single_quote_span_open] = ACTIONS(3376), - [sym__double_quote_span_open] = ACTIONS(3376), - [sym__shortcode_open_escaped] = ACTIONS(3376), - [sym__shortcode_open] = ACTIONS(3376), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3376), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3376), - [sym__cite_author_in_text] = ACTIONS(3376), - [sym__cite_suppress_author] = ACTIONS(3376), - [sym__strikeout_open] = ACTIONS(3376), - [sym__subscript_open] = ACTIONS(3376), - [sym__superscript_open] = ACTIONS(3376), - [sym__inline_note_start_token] = ACTIONS(3376), - [sym__strong_emphasis_open_star] = ACTIONS(3376), - [sym__strong_emphasis_open_underscore] = ACTIONS(3376), - [sym__emphasis_open_star] = ACTIONS(3376), - [sym__emphasis_open_underscore] = ACTIONS(3376), - [sym_inline_note_reference] = ACTIONS(3376), - [sym_html_element] = ACTIONS(3376), - }, - [STATE(638)] = { - [anon_sym_COLON] = ACTIONS(3380), - [sym_entity_reference] = ACTIONS(3380), - [sym_numeric_character_reference] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_BANG_LBRACK] = ACTIONS(3380), - [anon_sym_DOLLAR] = ACTIONS(3382), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3380), - [aux_sym_pandoc_str_token1] = ACTIONS(3382), - [anon_sym_PIPE] = ACTIONS(3380), - [aux_sym__prose_punctuation_token1] = ACTIONS(3382), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3382), - [sym__line_ending] = ACTIONS(3380), - [sym__soft_line_ending] = ACTIONS(3380), - [sym__block_close] = ACTIONS(3380), - [sym__block_quote_start] = ACTIONS(3380), - [sym_atx_h1_marker] = ACTIONS(3380), - [sym_atx_h2_marker] = ACTIONS(3380), - [sym_atx_h3_marker] = ACTIONS(3380), - [sym_atx_h4_marker] = ACTIONS(3380), - [sym_atx_h5_marker] = ACTIONS(3380), - [sym_atx_h6_marker] = ACTIONS(3380), - [sym__thematic_break] = ACTIONS(3380), - [sym__list_marker_minus] = ACTIONS(3380), - [sym__list_marker_plus] = ACTIONS(3380), - [sym__list_marker_star] = ACTIONS(3380), - [sym__list_marker_parenthesis] = ACTIONS(3380), - [sym__list_marker_dot] = ACTIONS(3380), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_example] = ACTIONS(3380), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3380), - [sym__fenced_code_block_start_backtick] = ACTIONS(3380), - [sym_minus_metadata] = ACTIONS(3380), - [sym__pipe_table_start] = ACTIONS(3380), - [sym__fenced_div_start] = ACTIONS(3380), - [sym_ref_id_specifier] = ACTIONS(3380), - [sym__code_span_start] = ACTIONS(3380), - [sym__html_comment] = ACTIONS(3380), - [sym__autolink] = ACTIONS(3380), - [sym__highlight_span_start] = ACTIONS(3380), - [sym__insert_span_start] = ACTIONS(3380), - [sym__delete_span_start] = ACTIONS(3380), - [sym__edit_comment_span_start] = ACTIONS(3380), - [sym__single_quote_span_open] = ACTIONS(3380), - [sym__double_quote_span_open] = ACTIONS(3380), - [sym__shortcode_open_escaped] = ACTIONS(3380), - [sym__shortcode_open] = ACTIONS(3380), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3380), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3380), - [sym__cite_author_in_text] = ACTIONS(3380), - [sym__cite_suppress_author] = ACTIONS(3380), - [sym__strikeout_open] = ACTIONS(3380), - [sym__subscript_open] = ACTIONS(3380), - [sym__superscript_open] = ACTIONS(3380), - [sym__inline_note_start_token] = ACTIONS(3380), - [sym__strong_emphasis_open_star] = ACTIONS(3380), - [sym__strong_emphasis_open_underscore] = ACTIONS(3380), - [sym__emphasis_open_star] = ACTIONS(3380), - [sym__emphasis_open_underscore] = ACTIONS(3380), - [sym_inline_note_reference] = ACTIONS(3380), - [sym_html_element] = ACTIONS(3380), - }, - [STATE(639)] = { - [anon_sym_COLON] = ACTIONS(3384), - [sym_entity_reference] = ACTIONS(3384), - [sym_numeric_character_reference] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_BANG_LBRACK] = ACTIONS(3384), - [anon_sym_DOLLAR] = ACTIONS(3386), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3384), - [aux_sym_pandoc_str_token1] = ACTIONS(3386), - [anon_sym_PIPE] = ACTIONS(3384), - [aux_sym__prose_punctuation_token1] = ACTIONS(3386), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3386), - [sym__line_ending] = ACTIONS(3384), - [sym__soft_line_ending] = ACTIONS(3384), - [sym__block_close] = ACTIONS(3384), - [sym__block_quote_start] = ACTIONS(3384), - [sym_atx_h1_marker] = ACTIONS(3384), - [sym_atx_h2_marker] = ACTIONS(3384), - [sym_atx_h3_marker] = ACTIONS(3384), - [sym_atx_h4_marker] = ACTIONS(3384), - [sym_atx_h5_marker] = ACTIONS(3384), - [sym_atx_h6_marker] = ACTIONS(3384), - [sym__thematic_break] = ACTIONS(3384), - [sym__list_marker_minus] = ACTIONS(3384), - [sym__list_marker_plus] = ACTIONS(3384), - [sym__list_marker_star] = ACTIONS(3384), - [sym__list_marker_parenthesis] = ACTIONS(3384), - [sym__list_marker_dot] = ACTIONS(3384), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_example] = ACTIONS(3384), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3384), - [sym__fenced_code_block_start_backtick] = ACTIONS(3384), - [sym_minus_metadata] = ACTIONS(3384), - [sym__pipe_table_start] = ACTIONS(3384), - [sym__fenced_div_start] = ACTIONS(3384), - [sym_ref_id_specifier] = ACTIONS(3384), - [sym__code_span_start] = ACTIONS(3384), - [sym__html_comment] = ACTIONS(3384), - [sym__autolink] = ACTIONS(3384), - [sym__highlight_span_start] = ACTIONS(3384), - [sym__insert_span_start] = ACTIONS(3384), - [sym__delete_span_start] = ACTIONS(3384), - [sym__edit_comment_span_start] = ACTIONS(3384), - [sym__single_quote_span_open] = ACTIONS(3384), - [sym__double_quote_span_open] = ACTIONS(3384), - [sym__shortcode_open_escaped] = ACTIONS(3384), - [sym__shortcode_open] = ACTIONS(3384), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3384), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3384), - [sym__cite_author_in_text] = ACTIONS(3384), - [sym__cite_suppress_author] = ACTIONS(3384), - [sym__strikeout_open] = ACTIONS(3384), - [sym__subscript_open] = ACTIONS(3384), - [sym__superscript_open] = ACTIONS(3384), - [sym__inline_note_start_token] = ACTIONS(3384), - [sym__strong_emphasis_open_star] = ACTIONS(3384), - [sym__strong_emphasis_open_underscore] = ACTIONS(3384), - [sym__emphasis_open_star] = ACTIONS(3384), - [sym__emphasis_open_underscore] = ACTIONS(3384), - [sym_inline_note_reference] = ACTIONS(3384), - [sym_html_element] = ACTIONS(3384), - }, - [STATE(640)] = { - [anon_sym_COLON] = ACTIONS(3388), - [sym_entity_reference] = ACTIONS(3388), - [sym_numeric_character_reference] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_BANG_LBRACK] = ACTIONS(3388), - [anon_sym_DOLLAR] = ACTIONS(3390), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3388), - [aux_sym_pandoc_str_token1] = ACTIONS(3390), - [anon_sym_PIPE] = ACTIONS(3388), - [aux_sym__prose_punctuation_token1] = ACTIONS(3390), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3390), - [sym__line_ending] = ACTIONS(3388), - [sym__soft_line_ending] = ACTIONS(3388), - [sym__block_close] = ACTIONS(3388), - [sym__block_quote_start] = ACTIONS(3388), - [sym_atx_h1_marker] = ACTIONS(3388), - [sym_atx_h2_marker] = ACTIONS(3388), - [sym_atx_h3_marker] = ACTIONS(3388), - [sym_atx_h4_marker] = ACTIONS(3388), - [sym_atx_h5_marker] = ACTIONS(3388), - [sym_atx_h6_marker] = ACTIONS(3388), - [sym__thematic_break] = ACTIONS(3388), - [sym__list_marker_minus] = ACTIONS(3388), - [sym__list_marker_plus] = ACTIONS(3388), - [sym__list_marker_star] = ACTIONS(3388), - [sym__list_marker_parenthesis] = ACTIONS(3388), - [sym__list_marker_dot] = ACTIONS(3388), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_example] = ACTIONS(3388), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3388), - [sym__fenced_code_block_start_backtick] = ACTIONS(3388), - [sym_minus_metadata] = ACTIONS(3388), - [sym__pipe_table_start] = ACTIONS(3388), - [sym__fenced_div_start] = ACTIONS(3388), - [sym_ref_id_specifier] = ACTIONS(3388), - [sym__code_span_start] = ACTIONS(3388), - [sym__html_comment] = ACTIONS(3388), - [sym__autolink] = ACTIONS(3388), - [sym__highlight_span_start] = ACTIONS(3388), - [sym__insert_span_start] = ACTIONS(3388), - [sym__delete_span_start] = ACTIONS(3388), - [sym__edit_comment_span_start] = ACTIONS(3388), - [sym__single_quote_span_open] = ACTIONS(3388), - [sym__double_quote_span_open] = ACTIONS(3388), - [sym__shortcode_open_escaped] = ACTIONS(3388), - [sym__shortcode_open] = ACTIONS(3388), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3388), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3388), - [sym__cite_author_in_text] = ACTIONS(3388), - [sym__cite_suppress_author] = ACTIONS(3388), - [sym__strikeout_open] = ACTIONS(3388), - [sym__subscript_open] = ACTIONS(3388), - [sym__superscript_open] = ACTIONS(3388), - [sym__inline_note_start_token] = ACTIONS(3388), - [sym__strong_emphasis_open_star] = ACTIONS(3388), - [sym__strong_emphasis_open_underscore] = ACTIONS(3388), - [sym__emphasis_open_star] = ACTIONS(3388), - [sym__emphasis_open_underscore] = ACTIONS(3388), - [sym_inline_note_reference] = ACTIONS(3388), - [sym_html_element] = ACTIONS(3388), - }, - [STATE(641)] = { - [ts_builtin_sym_end] = ACTIONS(3380), - [anon_sym_COLON] = ACTIONS(3380), - [sym_entity_reference] = ACTIONS(3380), - [sym_numeric_character_reference] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3380), - [anon_sym_BANG_LBRACK] = ACTIONS(3380), - [anon_sym_DOLLAR] = ACTIONS(3382), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3380), - [aux_sym_pandoc_str_token1] = ACTIONS(3382), - [anon_sym_PIPE] = ACTIONS(3380), - [aux_sym__prose_punctuation_token1] = ACTIONS(3382), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3382), - [sym__line_ending] = ACTIONS(3380), - [sym__soft_line_ending] = ACTIONS(3380), - [sym__block_quote_start] = ACTIONS(3380), - [sym_atx_h1_marker] = ACTIONS(3380), - [sym_atx_h2_marker] = ACTIONS(3380), - [sym_atx_h3_marker] = ACTIONS(3380), - [sym_atx_h4_marker] = ACTIONS(3380), - [sym_atx_h5_marker] = ACTIONS(3380), - [sym_atx_h6_marker] = ACTIONS(3380), - [sym__thematic_break] = ACTIONS(3380), - [sym__list_marker_minus] = ACTIONS(3380), - [sym__list_marker_plus] = ACTIONS(3380), - [sym__list_marker_star] = ACTIONS(3380), - [sym__list_marker_parenthesis] = ACTIONS(3380), - [sym__list_marker_dot] = ACTIONS(3380), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3380), - [sym__list_marker_example] = ACTIONS(3380), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3380), - [sym__fenced_code_block_start_backtick] = ACTIONS(3380), - [sym_minus_metadata] = ACTIONS(3380), - [sym__pipe_table_start] = ACTIONS(3380), - [sym__fenced_div_start] = ACTIONS(3380), - [sym_ref_id_specifier] = ACTIONS(3380), - [sym__code_span_start] = ACTIONS(3380), - [sym__html_comment] = ACTIONS(3380), - [sym__autolink] = ACTIONS(3380), - [sym__highlight_span_start] = ACTIONS(3380), - [sym__insert_span_start] = ACTIONS(3380), - [sym__delete_span_start] = ACTIONS(3380), - [sym__edit_comment_span_start] = ACTIONS(3380), - [sym__single_quote_span_open] = ACTIONS(3380), - [sym__double_quote_span_open] = ACTIONS(3380), - [sym__shortcode_open_escaped] = ACTIONS(3380), - [sym__shortcode_open] = ACTIONS(3380), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3380), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3380), - [sym__cite_author_in_text] = ACTIONS(3380), - [sym__cite_suppress_author] = ACTIONS(3380), - [sym__strikeout_open] = ACTIONS(3380), - [sym__subscript_open] = ACTIONS(3380), - [sym__superscript_open] = ACTIONS(3380), - [sym__inline_note_start_token] = ACTIONS(3380), - [sym__strong_emphasis_open_star] = ACTIONS(3380), - [sym__strong_emphasis_open_underscore] = ACTIONS(3380), - [sym__emphasis_open_star] = ACTIONS(3380), - [sym__emphasis_open_underscore] = ACTIONS(3380), - [sym_inline_note_reference] = ACTIONS(3380), - [sym_html_element] = ACTIONS(3380), - }, - [STATE(642)] = { - [ts_builtin_sym_end] = ACTIONS(3384), - [anon_sym_COLON] = ACTIONS(3384), - [sym_entity_reference] = ACTIONS(3384), - [sym_numeric_character_reference] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3384), - [anon_sym_BANG_LBRACK] = ACTIONS(3384), - [anon_sym_DOLLAR] = ACTIONS(3386), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3384), - [aux_sym_pandoc_str_token1] = ACTIONS(3386), - [anon_sym_PIPE] = ACTIONS(3384), - [aux_sym__prose_punctuation_token1] = ACTIONS(3386), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3386), - [sym__line_ending] = ACTIONS(3384), - [sym__soft_line_ending] = ACTIONS(3384), - [sym__block_quote_start] = ACTIONS(3384), - [sym_atx_h1_marker] = ACTIONS(3384), - [sym_atx_h2_marker] = ACTIONS(3384), - [sym_atx_h3_marker] = ACTIONS(3384), - [sym_atx_h4_marker] = ACTIONS(3384), - [sym_atx_h5_marker] = ACTIONS(3384), - [sym_atx_h6_marker] = ACTIONS(3384), - [sym__thematic_break] = ACTIONS(3384), - [sym__list_marker_minus] = ACTIONS(3384), - [sym__list_marker_plus] = ACTIONS(3384), - [sym__list_marker_star] = ACTIONS(3384), - [sym__list_marker_parenthesis] = ACTIONS(3384), - [sym__list_marker_dot] = ACTIONS(3384), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3384), - [sym__list_marker_example] = ACTIONS(3384), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3384), - [sym__fenced_code_block_start_backtick] = ACTIONS(3384), - [sym_minus_metadata] = ACTIONS(3384), - [sym__pipe_table_start] = ACTIONS(3384), - [sym__fenced_div_start] = ACTIONS(3384), - [sym_ref_id_specifier] = ACTIONS(3384), - [sym__code_span_start] = ACTIONS(3384), - [sym__html_comment] = ACTIONS(3384), - [sym__autolink] = ACTIONS(3384), - [sym__highlight_span_start] = ACTIONS(3384), - [sym__insert_span_start] = ACTIONS(3384), - [sym__delete_span_start] = ACTIONS(3384), - [sym__edit_comment_span_start] = ACTIONS(3384), - [sym__single_quote_span_open] = ACTIONS(3384), - [sym__double_quote_span_open] = ACTIONS(3384), - [sym__shortcode_open_escaped] = ACTIONS(3384), - [sym__shortcode_open] = ACTIONS(3384), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3384), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3384), - [sym__cite_author_in_text] = ACTIONS(3384), - [sym__cite_suppress_author] = ACTIONS(3384), - [sym__strikeout_open] = ACTIONS(3384), - [sym__subscript_open] = ACTIONS(3384), - [sym__superscript_open] = ACTIONS(3384), - [sym__inline_note_start_token] = ACTIONS(3384), - [sym__strong_emphasis_open_star] = ACTIONS(3384), - [sym__strong_emphasis_open_underscore] = ACTIONS(3384), - [sym__emphasis_open_star] = ACTIONS(3384), - [sym__emphasis_open_underscore] = ACTIONS(3384), - [sym_inline_note_reference] = ACTIONS(3384), - [sym_html_element] = ACTIONS(3384), - }, - [STATE(643)] = { - [ts_builtin_sym_end] = ACTIONS(3388), - [anon_sym_COLON] = ACTIONS(3388), - [sym_entity_reference] = ACTIONS(3388), - [sym_numeric_character_reference] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3388), - [anon_sym_BANG_LBRACK] = ACTIONS(3388), - [anon_sym_DOLLAR] = ACTIONS(3390), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3388), - [aux_sym_pandoc_str_token1] = ACTIONS(3390), - [anon_sym_PIPE] = ACTIONS(3388), - [aux_sym__prose_punctuation_token1] = ACTIONS(3390), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3390), - [sym__line_ending] = ACTIONS(3388), - [sym__soft_line_ending] = ACTIONS(3388), - [sym__block_quote_start] = ACTIONS(3388), - [sym_atx_h1_marker] = ACTIONS(3388), - [sym_atx_h2_marker] = ACTIONS(3388), - [sym_atx_h3_marker] = ACTIONS(3388), - [sym_atx_h4_marker] = ACTIONS(3388), - [sym_atx_h5_marker] = ACTIONS(3388), - [sym_atx_h6_marker] = ACTIONS(3388), - [sym__thematic_break] = ACTIONS(3388), - [sym__list_marker_minus] = ACTIONS(3388), - [sym__list_marker_plus] = ACTIONS(3388), - [sym__list_marker_star] = ACTIONS(3388), - [sym__list_marker_parenthesis] = ACTIONS(3388), - [sym__list_marker_dot] = ACTIONS(3388), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3388), - [sym__list_marker_example] = ACTIONS(3388), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3388), - [sym__fenced_code_block_start_backtick] = ACTIONS(3388), - [sym_minus_metadata] = ACTIONS(3388), - [sym__pipe_table_start] = ACTIONS(3388), - [sym__fenced_div_start] = ACTIONS(3388), - [sym_ref_id_specifier] = ACTIONS(3388), - [sym__code_span_start] = ACTIONS(3388), - [sym__html_comment] = ACTIONS(3388), - [sym__autolink] = ACTIONS(3388), - [sym__highlight_span_start] = ACTIONS(3388), - [sym__insert_span_start] = ACTIONS(3388), - [sym__delete_span_start] = ACTIONS(3388), - [sym__edit_comment_span_start] = ACTIONS(3388), - [sym__single_quote_span_open] = ACTIONS(3388), - [sym__double_quote_span_open] = ACTIONS(3388), - [sym__shortcode_open_escaped] = ACTIONS(3388), - [sym__shortcode_open] = ACTIONS(3388), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3388), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3388), - [sym__cite_author_in_text] = ACTIONS(3388), - [sym__cite_suppress_author] = ACTIONS(3388), - [sym__strikeout_open] = ACTIONS(3388), - [sym__subscript_open] = ACTIONS(3388), - [sym__superscript_open] = ACTIONS(3388), - [sym__inline_note_start_token] = ACTIONS(3388), - [sym__strong_emphasis_open_star] = ACTIONS(3388), - [sym__strong_emphasis_open_underscore] = ACTIONS(3388), - [sym__emphasis_open_star] = ACTIONS(3388), - [sym__emphasis_open_underscore] = ACTIONS(3388), - [sym_inline_note_reference] = ACTIONS(3388), - [sym_html_element] = ACTIONS(3388), - }, - [STATE(644)] = { - [anon_sym_COLON] = ACTIONS(3356), - [sym_entity_reference] = ACTIONS(3356), - [sym_numeric_character_reference] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_BANG_LBRACK] = ACTIONS(3356), - [anon_sym_DOLLAR] = ACTIONS(3358), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [aux_sym_pandoc_str_token1] = ACTIONS(3358), - [anon_sym_PIPE] = ACTIONS(3356), - [aux_sym__prose_punctuation_token1] = ACTIONS(3358), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3358), - [sym__line_ending] = ACTIONS(3356), - [sym__soft_line_ending] = ACTIONS(3356), - [sym__block_close] = ACTIONS(3356), - [sym__block_quote_start] = ACTIONS(3356), - [sym_atx_h1_marker] = ACTIONS(3356), - [sym_atx_h2_marker] = ACTIONS(3356), - [sym_atx_h3_marker] = ACTIONS(3356), - [sym_atx_h4_marker] = ACTIONS(3356), - [sym_atx_h5_marker] = ACTIONS(3356), - [sym_atx_h6_marker] = ACTIONS(3356), - [sym__thematic_break] = ACTIONS(3356), - [sym__list_marker_minus] = ACTIONS(3356), - [sym__list_marker_plus] = ACTIONS(3356), - [sym__list_marker_star] = ACTIONS(3356), - [sym__list_marker_parenthesis] = ACTIONS(3356), - [sym__list_marker_dot] = ACTIONS(3356), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3356), - [sym__list_marker_example] = ACTIONS(3356), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3356), - [sym__fenced_code_block_start_backtick] = ACTIONS(3356), - [sym_minus_metadata] = ACTIONS(3356), - [sym__pipe_table_start] = ACTIONS(3356), - [sym__fenced_div_start] = ACTIONS(3356), - [sym_ref_id_specifier] = ACTIONS(3356), - [sym__code_span_start] = ACTIONS(3356), - [sym__html_comment] = ACTIONS(3356), - [sym__autolink] = ACTIONS(3356), - [sym__highlight_span_start] = ACTIONS(3356), - [sym__insert_span_start] = ACTIONS(3356), - [sym__delete_span_start] = ACTIONS(3356), - [sym__edit_comment_span_start] = ACTIONS(3356), - [sym__single_quote_span_open] = ACTIONS(3356), - [sym__double_quote_span_open] = ACTIONS(3356), - [sym__shortcode_open_escaped] = ACTIONS(3356), - [sym__shortcode_open] = ACTIONS(3356), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3356), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3356), - [sym__cite_author_in_text] = ACTIONS(3356), - [sym__cite_suppress_author] = ACTIONS(3356), - [sym__strikeout_open] = ACTIONS(3356), - [sym__subscript_open] = ACTIONS(3356), - [sym__superscript_open] = ACTIONS(3356), - [sym__inline_note_start_token] = ACTIONS(3356), - [sym__strong_emphasis_open_star] = ACTIONS(3356), - [sym__strong_emphasis_open_underscore] = ACTIONS(3356), - [sym__emphasis_open_star] = ACTIONS(3356), - [sym__emphasis_open_underscore] = ACTIONS(3356), - [sym_inline_note_reference] = ACTIONS(3356), - [sym_html_element] = ACTIONS(3356), - }, - [STATE(645)] = { - [anon_sym_COLON] = ACTIONS(3360), - [sym_entity_reference] = ACTIONS(3360), - [sym_numeric_character_reference] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3360), - [anon_sym_BANG_LBRACK] = ACTIONS(3360), - [anon_sym_DOLLAR] = ACTIONS(3362), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3360), - [aux_sym_pandoc_str_token1] = ACTIONS(3362), - [anon_sym_PIPE] = ACTIONS(3360), - [aux_sym__prose_punctuation_token1] = ACTIONS(3362), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3362), - [sym__line_ending] = ACTIONS(3360), - [sym__soft_line_ending] = ACTIONS(3360), - [sym__block_close] = ACTIONS(3360), - [sym__block_quote_start] = ACTIONS(3360), - [sym_atx_h1_marker] = ACTIONS(3360), - [sym_atx_h2_marker] = ACTIONS(3360), - [sym_atx_h3_marker] = ACTIONS(3360), - [sym_atx_h4_marker] = ACTIONS(3360), - [sym_atx_h5_marker] = ACTIONS(3360), - [sym_atx_h6_marker] = ACTIONS(3360), - [sym__thematic_break] = ACTIONS(3360), - [sym__list_marker_minus] = ACTIONS(3360), - [sym__list_marker_plus] = ACTIONS(3360), - [sym__list_marker_star] = ACTIONS(3360), - [sym__list_marker_parenthesis] = ACTIONS(3360), - [sym__list_marker_dot] = ACTIONS(3360), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3360), - [sym__list_marker_example] = ACTIONS(3360), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3360), - [sym__fenced_code_block_start_backtick] = ACTIONS(3360), - [sym_minus_metadata] = ACTIONS(3360), - [sym__pipe_table_start] = ACTIONS(3360), - [sym__fenced_div_start] = ACTIONS(3360), - [sym_ref_id_specifier] = ACTIONS(3360), - [sym__code_span_start] = ACTIONS(3360), - [sym__html_comment] = ACTIONS(3360), - [sym__autolink] = ACTIONS(3360), - [sym__highlight_span_start] = ACTIONS(3360), - [sym__insert_span_start] = ACTIONS(3360), - [sym__delete_span_start] = ACTIONS(3360), - [sym__edit_comment_span_start] = ACTIONS(3360), - [sym__single_quote_span_open] = ACTIONS(3360), - [sym__double_quote_span_open] = ACTIONS(3360), - [sym__shortcode_open_escaped] = ACTIONS(3360), - [sym__shortcode_open] = ACTIONS(3360), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3360), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3360), - [sym__cite_author_in_text] = ACTIONS(3360), - [sym__cite_suppress_author] = ACTIONS(3360), - [sym__strikeout_open] = ACTIONS(3360), - [sym__subscript_open] = ACTIONS(3360), - [sym__superscript_open] = ACTIONS(3360), - [sym__inline_note_start_token] = ACTIONS(3360), - [sym__strong_emphasis_open_star] = ACTIONS(3360), - [sym__strong_emphasis_open_underscore] = ACTIONS(3360), - [sym__emphasis_open_star] = ACTIONS(3360), - [sym__emphasis_open_underscore] = ACTIONS(3360), - [sym_inline_note_reference] = ACTIONS(3360), - [sym_html_element] = ACTIONS(3360), - }, - [STATE(646)] = { - [ts_builtin_sym_end] = ACTIONS(3436), - [anon_sym_COLON] = ACTIONS(3436), - [sym_entity_reference] = ACTIONS(3436), - [sym_numeric_character_reference] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3436), - [anon_sym_BANG_LBRACK] = ACTIONS(3436), - [anon_sym_DOLLAR] = ACTIONS(3438), - [anon_sym_DOLLAR_DOLLAR] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3436), - [aux_sym_pandoc_str_token1] = ACTIONS(3438), - [anon_sym_PIPE] = ACTIONS(3436), - [aux_sym__prose_punctuation_token1] = ACTIONS(3438), - [aux_sym_pandoc_line_break_token1] = ACTIONS(3438), - [sym__line_ending] = ACTIONS(3436), - [sym__soft_line_ending] = ACTIONS(3436), - [sym__block_quote_start] = ACTIONS(3436), - [sym_atx_h1_marker] = ACTIONS(3436), - [sym_atx_h2_marker] = ACTIONS(3436), - [sym_atx_h3_marker] = ACTIONS(3436), - [sym_atx_h4_marker] = ACTIONS(3436), - [sym_atx_h5_marker] = ACTIONS(3436), - [sym_atx_h6_marker] = ACTIONS(3436), - [sym__thematic_break] = ACTIONS(3436), - [sym__list_marker_minus] = ACTIONS(3436), - [sym__list_marker_plus] = ACTIONS(3436), - [sym__list_marker_star] = ACTIONS(3436), - [sym__list_marker_parenthesis] = ACTIONS(3436), - [sym__list_marker_dot] = ACTIONS(3436), - [sym__list_marker_minus_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_plus_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_star_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_parenthesis_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_dot_dont_interrupt] = ACTIONS(3436), - [sym__list_marker_example] = ACTIONS(3436), - [sym__list_marker_example_dont_interrupt] = ACTIONS(3436), - [sym__fenced_code_block_start_backtick] = ACTIONS(3436), - [sym_minus_metadata] = ACTIONS(3436), - [sym__pipe_table_start] = ACTIONS(3436), - [sym__fenced_div_start] = ACTIONS(3436), - [sym_ref_id_specifier] = ACTIONS(3436), - [sym__code_span_start] = ACTIONS(3436), - [sym__html_comment] = ACTIONS(3436), - [sym__autolink] = ACTIONS(3436), - [sym__highlight_span_start] = ACTIONS(3436), - [sym__insert_span_start] = ACTIONS(3436), - [sym__delete_span_start] = ACTIONS(3436), - [sym__edit_comment_span_start] = ACTIONS(3436), - [sym__single_quote_span_open] = ACTIONS(3436), - [sym__double_quote_span_open] = ACTIONS(3436), - [sym__shortcode_open_escaped] = ACTIONS(3436), - [sym__shortcode_open] = ACTIONS(3436), - [sym__cite_author_in_text_with_open_bracket] = ACTIONS(3436), - [sym__cite_suppress_author_with_open_bracket] = ACTIONS(3436), - [sym__cite_author_in_text] = ACTIONS(3436), - [sym__cite_suppress_author] = ACTIONS(3436), - [sym__strikeout_open] = ACTIONS(3436), - [sym__subscript_open] = ACTIONS(3436), - [sym__superscript_open] = ACTIONS(3436), - [sym__inline_note_start_token] = ACTIONS(3436), - [sym__strong_emphasis_open_star] = ACTIONS(3436), - [sym__strong_emphasis_open_underscore] = ACTIONS(3436), - [sym__emphasis_open_star] = ACTIONS(3436), - [sym__emphasis_open_underscore] = ACTIONS(3436), - [sym_inline_note_reference] = ACTIONS(3436), - [sym_html_element] = ACTIONS(3436), + [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), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 35, - ACTIONS(4050), 1, + [0] = 33, + ACTIONS(3834), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(3837), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(3840), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(3843), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(3846), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(3849), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(3852), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(3855), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3858), 1, + sym__whitespace, + ACTIONS(3861), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(3864), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(3867), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(3870), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(3873), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(3876), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(3879), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(3882), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(3885), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(3888), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(3891), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(3894), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(3897), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(3900), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(3903), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(3906), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(3909), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(3912), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(3915), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(3918), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(3921), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5670), 1, - sym__double_quote_span_close, - STATE(2692), 1, - sym__line, - STATE(3601), 1, - sym__inlines, - ACTIONS(5666), 6, + 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(557), 25, + STATE(612), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73849,82 +71033,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [135] = 35, - ACTIONS(4050), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [131] = 33, + ACTIONS(3927), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(3930), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(3933), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(3936), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(3939), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(3942), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(3945), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(3948), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3951), 1, + sym__whitespace, + ACTIONS(3954), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(3957), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(3960), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(3963), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(3966), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(3969), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(3972), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(3975), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(3978), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(3981), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(3984), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(3987), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(3990), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(3993), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(3996), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(3999), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(4002), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(4005), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(4008), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(4011), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(4014), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5672), 1, - sym__double_quote_span_close, - STATE(2692), 1, - sym__line, - STATE(3339), 1, - sym__inlines, - ACTIONS(5666), 6, + ACTIONS(3512), 2, + sym__soft_line_ending, + aux_sym_inline_note_token1, + ACTIONS(3924), 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(557), 25, + STATE(613), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -73949,82 +71131,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [270] = 35, - ACTIONS(4050), 1, + aux_sym__line_repeat1, + [262] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(4033), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(4035), 1, + sym__whitespace, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5674), 1, - sym__double_quote_span_close, - STATE(2692), 1, - sym__line, - STATE(3359), 1, - sym__inlines, - ACTIONS(5666), 6, + ACTIONS(3487), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_star, + ACTIONS(4017), 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(557), 25, + STATE(615), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74049,82 +71229,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [405] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [393] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4035), 1, + sym__whitespace, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5676), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3915), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(4081), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3497), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_star, + ACTIONS(4079), 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(522), 25, + STATE(616), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74149,82 +71327,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [540] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [524] = 33, + ACTIONS(4086), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4089), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4092), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4095), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4098), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4101), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4104), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(4107), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4110), 1, + sym__whitespace, + ACTIONS(4113), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4116), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4119), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4122), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4125), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4128), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4131), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4134), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4137), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4140), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4143), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4146), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4149), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4152), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4155), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4158), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4161), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4164), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4167), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4170), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4173), 1, sym__emphasis_open_underscore, - ACTIONS(5678), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3385), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(3512), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_star, + ACTIONS(4083), 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(522), 25, + STATE(616), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74249,82 +71425,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [675] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [655] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(4192), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4194), 1, + sym__whitespace, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5680), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3342), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(3487), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_underscore, + ACTIONS(4176), 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(522), 25, + STATE(618), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74349,82 +71523,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [810] = 35, - ACTIONS(3982), 1, + aux_sym__line_repeat1, + [786] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(4194), 1, + sym__whitespace, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, + ACTIONS(4240), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5686), 1, - sym__single_quote_span_close, - STATE(2676), 1, - sym__line, - STATE(3923), 1, - sym__inlines, - ACTIONS(5682), 6, + ACTIONS(3497), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_underscore, + ACTIONS(4238), 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(529), 25, + STATE(619), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74449,82 +71621,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [945] = 35, - ACTIONS(4050), 1, + aux_sym__line_repeat1, + [917] = 33, + ACTIONS(4245), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(4248), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(4251), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(4254), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(4257), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(4260), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(4263), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(4266), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(4269), 1, + sym__whitespace, + ACTIONS(4272), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(4275), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(4278), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(4281), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(4284), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(4287), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(4290), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(4293), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(4296), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(4299), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(4302), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(4305), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(4308), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(4311), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(4314), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(4317), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(4320), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(4323), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(4326), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(4329), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(4332), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5688), 1, - sym__double_quote_span_close, - STATE(2692), 1, - sym__line, - STATE(3924), 1, - sym__inlines, - ACTIONS(5666), 6, + ACTIONS(3512), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_underscore, + ACTIONS(4242), 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(557), 25, + STATE(619), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74549,82 +71719,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [1080] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [1048] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(4351), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4353), 1, + sym__whitespace, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5690), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3397), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(3487), 2, + sym__soft_line_ending, + sym__emphasis_close_star, + ACTIONS(4335), 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(522), 25, + STATE(621), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74649,82 +71817,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [1215] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [1179] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4353), 1, + sym__whitespace, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5692), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3398), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(4399), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3497), 2, + sym__soft_line_ending, + sym__emphasis_close_star, + ACTIONS(4397), 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(522), 25, + STATE(623), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74749,82 +71915,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [1350] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [1310] = 33, + ACTIONS(4404), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4407), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4410), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4413), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4416), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4419), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4422), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(4425), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4428), 1, + sym__whitespace, + ACTIONS(4431), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4434), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4437), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4440), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4443), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4446), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4449), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4452), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4455), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4458), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4461), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4464), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4467), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4470), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4473), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4476), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4479), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4482), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4485), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4488), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4491), 1, sym__emphasis_open_underscore, - ACTIONS(5694), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3955), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(3512), 2, + sym__soft_line_ending, + sym__single_quote_span_close, + ACTIONS(4401), 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(522), 25, + STATE(622), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74849,82 +72013,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [1485] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [1441] = 33, + ACTIONS(4497), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4500), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4503), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4506), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4509), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4512), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4515), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(4518), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4521), 1, + sym__whitespace, + ACTIONS(4524), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4527), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4530), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4533), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4536), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4539), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4542), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4545), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4548), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4551), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4554), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4557), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4560), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4563), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4566), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4569), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4572), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4575), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4578), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4581), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4584), 1, sym__emphasis_open_underscore, - ACTIONS(5696), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3956), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(3512), 2, + sym__soft_line_ending, + sym__emphasis_close_star, + ACTIONS(4494), 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(522), 25, + STATE(623), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -74949,82 +72111,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [1620] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [1572] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(5698), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3957), 1, - sym__inlines, - ACTIONS(2481), 6, + 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, sym__html_comment, sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(522), 25, + STATE(613), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75049,82 +72209,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [1755] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [1703] = 33, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(4609), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4611), 1, + sym__whitespace, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5700), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3958), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(3497), 2, + sym__soft_line_ending, + sym__single_quote_span_close, + ACTIONS(4593), 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(522), 25, + STATE(622), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75149,82 +72307,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [1890] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [1834] = 33, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4611), 1, + sym__whitespace, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5702), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3399), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(4657), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3487), 2, + sym__soft_line_ending, + sym__single_quote_span_close, + ACTIONS(4655), 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(522), 25, + STATE(625), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75249,82 +72405,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [2025] = 35, - ACTIONS(3982), 1, + aux_sym__line_repeat1, + [1965] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, + ACTIONS(4591), 1, + sym__whitespace, + ACTIONS(4661), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5704), 1, - sym__single_quote_span_close, - STATE(2676), 1, - sym__line, - STATE(3811), 1, - sym__inlines, - ACTIONS(5682), 6, + ACTIONS(3487), 2, + sym__soft_line_ending, + aux_sym_inline_note_token1, + ACTIONS(4659), 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(529), 25, + STATE(624), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75349,82 +72503,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [2160] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [2096] = 33, + ACTIONS(4666), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4669), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4672), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4675), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4678), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4681), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4684), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(4687), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4690), 1, + sym__whitespace, + ACTIONS(4693), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4696), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4699), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4702), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4705), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4708), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4711), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4714), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4717), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4720), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4723), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4726), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4729), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4732), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4735), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4738), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4741), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4744), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4747), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4750), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4753), 1, sym__emphasis_open_underscore, - ACTIONS(5706), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3559), 1, - sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(628), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75449,82 +72601,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [2295] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [2227] = 33, + ACTIONS(2511), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2513), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2515), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2517), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2519), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2521), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2523), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2529), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2531), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2533), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2535), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2537), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2539), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2541), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2543), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2545), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2547), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2549), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2551), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2553), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2555), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2557), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2559), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2561), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2563), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2565), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2567), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2569), 1, sym__emphasis_open_underscore, - ACTIONS(5708), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3561), 1, - sym__inlines, - ACTIONS(2481), 6, + 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, sym__html_comment, sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(522), 25, + STATE(612), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75549,80 +72699,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [2430] = 34, - ACTIONS(3018), 1, - sym__pipe_table_delimiter, - ACTIONS(5713), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [2358] = 33, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(5716), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(5719), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(5722), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5725), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(5728), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(5731), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(5734), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5737), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5740), 1, - sym__whitespace, - ACTIONS(5743), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(5746), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(5749), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(5752), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(5755), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(5758), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(5761), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(5764), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(5767), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(5770), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5773), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5776), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(5779), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(5782), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(5785), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(5788), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(5791), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(5794), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(5797), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5800), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(5803), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5710), 6, + 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, sym__html_comment, sym__autolink, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(665), 26, + STATE(633), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75647,83 +72797,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - aux_sym__line_with_maybe_spaces_repeat1, - [2563] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [2489] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(4782), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4784), 1, + sym__whitespace, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5806), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3576), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(3497), 2, + sym__soft_line_ending, + sym__emphasis_close_underscore, + ACTIONS(4766), 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(522), 25, + STATE(628), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75748,82 +72895,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [2698] = 35, - ACTIONS(3982), 1, + aux_sym__line_repeat1, + [2620] = 33, + ACTIONS(4831), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(4834), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(4837), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(4840), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(4843), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(4846), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(4849), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(4852), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(4855), 1, + sym__whitespace, + ACTIONS(4858), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(4861), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(4864), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(4867), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(4870), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(4873), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(4876), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(4879), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(4882), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(4885), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(4888), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(4891), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(4894), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(4897), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(4900), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(4903), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(4906), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(4909), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(4912), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(4915), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(4918), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5808), 1, - sym__single_quote_span_close, - STATE(2676), 1, - sym__line, - STATE(3305), 1, - sym__inlines, - ACTIONS(5682), 6, + ACTIONS(3512), 2, + sym__soft_line_ending, + aux_sym_insert_token1, + ACTIONS(4828), 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(529), 25, + STATE(632), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75848,82 +72993,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [2833] = 35, - ACTIONS(4050), 1, + aux_sym__line_repeat1, + [2751] = 33, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, + ACTIONS(4764), 1, + sym__whitespace, + ACTIONS(4923), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5810), 1, - sym__double_quote_span_close, - STATE(2692), 1, - sym__line, - STATE(3306), 1, - sym__inlines, - ACTIONS(5666), 6, + ACTIONS(3497), 2, + sym__soft_line_ending, + aux_sym_insert_token1, + ACTIONS(4921), 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(557), 25, + STATE(632), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -75948,82 +73091,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [2968] = 35, - ACTIONS(3982), 1, + aux_sym__line_repeat1, + [2882] = 33, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(4941), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(4943), 1, + sym__whitespace, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5812), 1, - sym__single_quote_span_close, - STATE(2676), 1, - sym__line, - STATE(3588), 1, - sym__inlines, - ACTIONS(5682), 6, + ACTIONS(3487), 2, + sym__soft_line_ending, + sym__double_quote_span_close, + ACTIONS(4925), 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(529), 25, + STATE(635), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76048,82 +73189,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [3103] = 35, - ACTIONS(4050), 1, + aux_sym__line_repeat1, + [3013] = 33, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(4943), 1, + sym__whitespace, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, + ACTIONS(4989), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5814), 1, + ACTIONS(3497), 2, + sym__soft_line_ending, sym__double_quote_span_close, - STATE(2692), 1, - sym__line, - STATE(3593), 1, - sym__inlines, - ACTIONS(5666), 6, + ACTIONS(4987), 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(557), 25, + STATE(636), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76148,82 +73287,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [3238] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [3144] = 33, + ACTIONS(4994), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4997), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(5000), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(5003), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(5006), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(5009), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(5012), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(5015), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(5018), 1, + sym__whitespace, + ACTIONS(5021), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(5024), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(5027), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(5030), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(5033), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(5036), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(5039), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(5042), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(5045), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(5048), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(5051), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(5054), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(5057), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(5060), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(5063), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(5066), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(5069), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(5072), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(5075), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(5078), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(5081), 1, sym__emphasis_open_underscore, - ACTIONS(5816), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3327), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(3512), 2, + sym__soft_line_ending, + sym__double_quote_span_close, + ACTIONS(4991), 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(522), 25, + STATE(636), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76248,82 +73385,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [3373] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [3275] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(5100), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(5102), 1, + sym__whitespace, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5818), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3328), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(3487), 2, + sym__soft_line_ending, + sym__strikeout_close, + ACTIONS(5084), 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(522), 25, + STATE(638), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76348,82 +73483,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [3508] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [3406] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(5102), 1, + sym__whitespace, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5820), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3329), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5148), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3497), 2, + sym__soft_line_ending, + sym__strikeout_close, + ACTIONS(5146), 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(522), 25, + STATE(639), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76448,82 +73581,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [3643] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [3537] = 33, + ACTIONS(5153), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(5156), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(5159), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(5162), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(5165), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(5168), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(5171), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(5174), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(5177), 1, + sym__whitespace, + ACTIONS(5180), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(5183), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(5186), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(5189), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(5192), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(5195), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(5198), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(5201), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(5204), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(5207), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(5210), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(5213), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(5216), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(5219), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(5222), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(5225), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(5228), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(5231), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(5234), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(5237), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(5240), 1, sym__emphasis_open_underscore, - ACTIONS(5822), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3330), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(3512), 2, + sym__soft_line_ending, + sym__strikeout_close, + ACTIONS(5150), 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(522), 25, + STATE(639), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76548,82 +73679,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [3778] = 35, - ACTIONS(3982), 1, + aux_sym__line_repeat1, + [3668] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(5259), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5261), 1, + sym__whitespace, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5824), 1, - sym__single_quote_span_close, - STATE(2676), 1, - sym__line, - STATE(3490), 1, - sym__inlines, - ACTIONS(5682), 6, + ACTIONS(3487), 2, + sym__soft_line_ending, + sym__subscript_close, + ACTIONS(5243), 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(529), 25, + STATE(641), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76648,82 +73777,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [3913] = 35, - ACTIONS(4050), 1, + aux_sym__line_repeat1, + [3799] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(5261), 1, + sym__whitespace, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, + ACTIONS(5307), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5826), 1, - sym__double_quote_span_close, - STATE(2692), 1, - sym__line, - STATE(3491), 1, - sym__inlines, - ACTIONS(5666), 6, + ACTIONS(3497), 2, + sym__soft_line_ending, + sym__subscript_close, + ACTIONS(5305), 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(557), 25, + STATE(642), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76748,82 +73875,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [4048] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [3930] = 33, + ACTIONS(5312), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(5315), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(5318), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(5321), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(5324), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(5327), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(5330), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(5333), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(5336), 1, + sym__whitespace, + ACTIONS(5339), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(5342), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(5345), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(5348), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(5351), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(5354), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(5357), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(5360), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(5363), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(5366), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(5369), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(5372), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(5375), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(5378), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(5381), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(5384), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(5387), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(5390), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(5393), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(5396), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(5399), 1, sym__emphasis_open_underscore, - ACTIONS(5828), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3585), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(3512), 2, + sym__soft_line_ending, + sym__subscript_close, + ACTIONS(5309), 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(522), 25, + STATE(642), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76848,82 +73973,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [4183] = 35, - ACTIONS(4050), 1, + aux_sym__line_repeat1, + [4061] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(5418), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5420), 1, + sym__whitespace, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5830), 1, - sym__double_quote_span_close, - STATE(2692), 1, - sym__line, - STATE(3770), 1, - sym__inlines, - ACTIONS(5666), 6, + ACTIONS(3487), 2, + sym__soft_line_ending, + sym__superscript_close, + ACTIONS(5402), 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(557), 25, + STATE(644), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -76948,82 +74071,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [4318] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [4192] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(5420), 1, + sym__whitespace, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5832), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3536), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5466), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3497), 2, + sym__soft_line_ending, + sym__superscript_close, + ACTIONS(5464), 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(522), 25, + STATE(645), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77048,82 +74169,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [4453] = 35, - ACTIONS(2483), 1, + aux_sym__line_repeat1, + [4323] = 33, + ACTIONS(5471), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(5474), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(5477), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(5480), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(5483), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(5486), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(5489), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(5492), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(5495), 1, + sym__whitespace, + ACTIONS(5498), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(5501), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(5504), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(5507), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(5510), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(5513), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(5516), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(5519), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(5522), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(5525), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(5528), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(5531), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(5534), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(5537), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(5540), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(5543), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(5546), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(5549), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(5552), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(5555), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(5558), 1, sym__emphasis_open_underscore, - ACTIONS(5834), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3537), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(3512), 2, + sym__soft_line_ending, + sym__superscript_close, + ACTIONS(5468), 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(522), 25, + STATE(645), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77148,82 +74267,179 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [4588] = 35, - ACTIONS(3982), 1, + aux_sym__line_repeat1, + [4454] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(4784), 1, + sym__whitespace, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, + ACTIONS(5563), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5836), 1, - sym__single_quote_span_close, - STATE(2676), 1, + ACTIONS(3487), 2, + sym__soft_line_ending, + sym__emphasis_close_underscore, + ACTIONS(5561), 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(631), 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, + [4585] = 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(5565), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3370), 1, + STATE(3332), 1, sym__inlines, - ACTIONS(5682), 6, + 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(529), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77248,82 +74464,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [4723] = 35, - ACTIONS(4050), 1, + [4717] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5838), 1, - sym__double_quote_span_close, - STATE(2692), 1, + ACTIONS(5567), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3371), 1, + STATE(3808), 1, sym__inlines, - ACTIONS(5666), 6, + 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(557), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77348,82 +74562,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [4858] = 35, - ACTIONS(2483), 1, + [4849] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5840), 1, + ACTIONS(5569), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3538), 1, + STATE(3809), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77448,82 +74660,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [4993] = 35, - ACTIONS(2483), 1, + [4981] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5842), 1, + ACTIONS(5571), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3539), 1, + STATE(3754), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77548,82 +74758,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [5128] = 35, - ACTIONS(2483), 1, + [5113] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5844), 1, + ACTIONS(5573), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3392), 1, + STATE(3773), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77648,82 +74856,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [5263] = 35, - ACTIONS(2483), 1, + [5245] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5846), 1, - aux_sym_insert_token1, - STATE(2681), 1, + ACTIONS(5577), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5579), 1, + sym__single_quote_span_close, + STATE(2672), 1, sym__line, - STATE(3393), 1, + STATE(3786), 1, sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5575), 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(522), 25, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77748,82 +74954,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [5398] = 35, - ACTIONS(2483), 1, + [5377] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5848), 1, - aux_sym_insert_token1, - STATE(2681), 1, + ACTIONS(5583), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5585), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3394), 1, + STATE(3787), 1, sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5581), 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(522), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77848,82 +75052,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [5533] = 35, - ACTIONS(2483), 1, + [5509] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5850), 1, - aux_sym_insert_token1, - STATE(2681), 1, + ACTIONS(5577), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5587), 1, + sym__single_quote_span_close, + STATE(2672), 1, sym__line, - STATE(3395), 1, + STATE(3278), 1, sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5575), 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(522), 25, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -77948,82 +75150,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [5668] = 35, - ACTIONS(2483), 1, + [5641] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5852), 1, - aux_sym_insert_token1, - STATE(2681), 1, + ACTIONS(5583), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5589), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3665), 1, + STATE(3279), 1, sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5581), 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(522), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78048,82 +75248,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [5803] = 35, - ACTIONS(2483), 1, + [5773] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5854), 1, + ACTIONS(5591), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3667), 1, + STATE(3865), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78148,82 +75346,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [5938] = 35, - ACTIONS(2483), 1, + [5905] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5856), 1, + ACTIONS(5593), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3668), 1, + STATE(3866), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78248,82 +75444,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [6073] = 35, - ACTIONS(2483), 1, + [6037] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5858), 1, + ACTIONS(5595), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3669), 1, + STATE(3867), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78348,82 +75542,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [6208] = 35, - ACTIONS(3982), 1, + [6169] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5860), 1, - sym__single_quote_span_close, - STATE(2676), 1, + ACTIONS(5597), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3816), 1, + STATE(3868), 1, sym__inlines, - ACTIONS(5682), 6, + 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(529), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78448,82 +75640,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [6343] = 35, - ACTIONS(4050), 1, + [6301] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5862), 1, - sym__double_quote_span_close, - STATE(2692), 1, + ACTIONS(5599), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3817), 1, + STATE(3423), 1, sym__inlines, - ACTIONS(5666), 6, + 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(557), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78548,82 +75738,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [6478] = 35, - ACTIONS(3982), 1, + [6433] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, + ACTIONS(5577), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5864), 1, + ACTIONS(5601), 1, sym__single_quote_span_close, - STATE(2676), 1, + STATE(2672), 1, sym__line, - STATE(3435), 1, + STATE(3516), 1, sym__inlines, - ACTIONS(5682), 6, + ACTIONS(5575), 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(529), 25, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78648,82 +75836,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [6613] = 35, - ACTIONS(4050), 1, + [6565] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5866), 1, - sym__double_quote_span_close, - STATE(2692), 1, + ACTIONS(5603), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3436), 1, + STATE(3343), 1, sym__inlines, - ACTIONS(5666), 6, + 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(557), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78748,82 +75934,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [6748] = 35, - ACTIONS(3982), 1, + [6697] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5868), 1, - sym__single_quote_span_close, - STATE(2676), 1, + ACTIONS(5605), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3600), 1, + STATE(3345), 1, sym__inlines, - ACTIONS(5682), 6, + 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(529), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78848,82 +76032,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [6883] = 35, - ACTIONS(2483), 1, + [6829] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5870), 1, + ACTIONS(5607), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3847), 1, + STATE(3347), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -78948,82 +76130,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [7018] = 35, - ACTIONS(3982), 1, + [6961] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5872), 1, - sym__single_quote_span_close, - STATE(2676), 1, + ACTIONS(5609), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3337), 1, + STATE(3348), 1, sym__inlines, - ACTIONS(5682), 6, + 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(529), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79048,82 +76228,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [7153] = 35, - ACTIONS(2483), 1, + [7093] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5874), 1, - aux_sym_insert_token1, - STATE(2681), 1, + ACTIONS(5577), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5611), 1, + sym__single_quote_span_close, + STATE(2672), 1, sym__line, - STATE(3458), 1, + STATE(3243), 1, sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5575), 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(522), 25, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79148,82 +76326,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [7288] = 35, - ACTIONS(2483), 1, + [7225] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5876), 1, - aux_sym_insert_token1, - STATE(2681), 1, + ACTIONS(5583), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5613), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3459), 1, + STATE(3244), 1, sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5581), 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(522), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79248,82 +76424,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [7423] = 35, - ACTIONS(2483), 1, + [7357] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5878), 1, - aux_sym_insert_token1, - STATE(2681), 1, + ACTIONS(5583), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5615), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3460), 1, + STATE(3517), 1, sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5581), 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(522), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79348,82 +76522,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [7558] = 35, - ACTIONS(9), 1, + [7489] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(23), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(25), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(69), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(71), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(73), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(75), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(77), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(79), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(81), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(83), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(85), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(87), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(91), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(93), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(95), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(97), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(99), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(101), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(103), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(107), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(109), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - STATE(348), 1, - sym_pandoc_paragraph, - STATE(2633), 1, + ACTIONS(5617), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(2810), 1, + STATE(3434), 1, sym__inlines, - ACTIONS(7), 6, + 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(417), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79448,82 +76620,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [7693] = 35, - ACTIONS(2483), 1, + [7621] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5880), 1, + ACTIONS(5619), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3912), 1, + STATE(3265), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79548,82 +76718,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [7828] = 35, - ACTIONS(2483), 1, + [7753] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5882), 1, + ACTIONS(5621), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3624), 1, + STATE(3266), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79648,82 +76816,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [7963] = 35, - ACTIONS(2483), 1, + [7885] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5884), 1, + ACTIONS(5623), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3631), 1, + STATE(3267), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79748,82 +76914,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [8098] = 35, - ACTIONS(9), 1, + [8017] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(23), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(25), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(69), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(71), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(73), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(75), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(77), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(79), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(81), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(83), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(85), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(87), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(91), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(93), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(95), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(97), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(99), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(101), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(103), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(107), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(109), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - STATE(596), 1, - sym_pandoc_paragraph, - STATE(2633), 1, + ACTIONS(5625), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(2817), 1, + STATE(3268), 1, sym__inlines, - ACTIONS(7), 6, + 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(417), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79848,82 +77012,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [8233] = 35, - ACTIONS(2483), 1, + [8149] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5886), 1, + ACTIONS(5627), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3910), 1, + STATE(3436), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -79948,82 +77110,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [8368] = 35, - ACTIONS(2483), 1, + [8281] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5888), 1, + ACTIONS(5629), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3989), 1, + STATE(3465), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80048,82 +77208,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [8503] = 35, - ACTIONS(2483), 1, + [8413] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5890), 1, - aux_sym_insert_token1, - STATE(2681), 1, + ACTIONS(5577), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5631), 1, + sym__single_quote_span_close, + STATE(2672), 1, sym__line, - STATE(3634), 1, + STATE(3710), 1, sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5575), 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(522), 25, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80148,82 +77306,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [8638] = 35, - ACTIONS(2483), 1, + [8545] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5892), 1, - aux_sym_insert_token1, - STATE(2681), 1, + ACTIONS(5583), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5633), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3635), 1, + STATE(3737), 1, sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5581), 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(522), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80248,82 +77404,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [8773] = 35, - ACTIONS(2483), 1, + [8677] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5894), 1, - aux_sym_insert_token1, - STATE(2681), 1, + ACTIONS(5577), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5635), 1, + sym__single_quote_span_close, + STATE(2672), 1, sym__line, - STATE(3913), 1, + STATE(3438), 1, sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5575), 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(522), 25, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80348,82 +77502,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [8908] = 35, - ACTIONS(3982), 1, + [8809] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, + ACTIONS(5583), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5896), 1, - sym__single_quote_span_close, - STATE(2676), 1, + ACTIONS(5637), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3968), 1, + STATE(3441), 1, sym__inlines, - ACTIONS(5682), 6, + ACTIONS(5581), 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(529), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80448,82 +77600,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [9043] = 35, - ACTIONS(3982), 1, + [8941] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, + ACTIONS(5577), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5898), 1, + ACTIONS(5639), 1, sym__single_quote_span_close, - STATE(2676), 1, + STATE(2672), 1, sym__line, - STATE(3807), 1, + STATE(3307), 1, sym__inlines, - ACTIONS(5682), 6, + ACTIONS(5575), 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(529), 25, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80548,82 +77698,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [9178] = 35, - ACTIONS(4050), 1, + [9073] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, + ACTIONS(5583), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5900), 1, + ACTIONS(5641), 1, sym__double_quote_span_close, - STATE(2692), 1, + STATE(2623), 1, sym__line, - STATE(3821), 1, + STATE(3308), 1, sym__inlines, - ACTIONS(5666), 6, + ACTIONS(5581), 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(557), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80648,82 +77796,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [9313] = 35, - ACTIONS(4050), 1, + [9205] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, + ACTIONS(5577), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5902), 1, - sym__double_quote_span_close, - STATE(2692), 1, + ACTIONS(5643), 1, + sym__single_quote_span_close, + STATE(2672), 1, sym__line, - STATE(3971), 1, + STATE(3664), 1, sym__inlines, - ACTIONS(5666), 6, + ACTIONS(5575), 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(557), 25, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80748,82 +77894,178 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [9448] = 35, - ACTIONS(2483), 1, + [9337] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(4613), 1, + sym__code_span_start, + ACTIONS(4615), 1, + 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, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(5645), 1, + sym__single_quote_span_close, + STATE(2672), 1, + sym__line, + STATE(3468), 1, + sym__inlines, + ACTIONS(5575), 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, + sym__prose_punctuation, + [9469] = 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(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5904), 1, + ACTIONS(5647), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3914), 1, + STATE(3329), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80848,82 +78090,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [9583] = 35, - ACTIONS(3982), 1, + [9601] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5906), 1, - sym__single_quote_span_close, - STATE(2676), 1, + ACTIONS(5649), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3692), 1, + STATE(3330), 1, sym__inlines, - ACTIONS(5682), 6, + 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(529), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -80948,82 +78188,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [9718] = 35, - ACTIONS(4050), 1, + [9733] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5908), 1, - sym__double_quote_span_close, - STATE(2692), 1, + ACTIONS(5651), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3693), 1, + STATE(3331), 1, sym__inlines, - ACTIONS(5666), 6, + 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(557), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81048,82 +78286,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [9853] = 35, - ACTIONS(3982), 1, + [9865] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, + ACTIONS(5583), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5910), 1, - sym__single_quote_span_close, - STATE(2676), 1, + ACTIONS(5653), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3506), 1, + STATE(3225), 1, sym__inlines, - ACTIONS(5682), 6, + ACTIONS(5581), 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(529), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81148,82 +78384,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [9988] = 35, - ACTIONS(2483), 1, + [9997] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5912), 1, + ACTIONS(5655), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3900), 1, + STATE(3617), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81248,82 +78482,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [10123] = 35, - ACTIONS(4050), 1, + [10129] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5914), 1, - sym__double_quote_span_close, - STATE(2692), 1, + ACTIONS(5657), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3507), 1, + STATE(3481), 1, sym__inlines, - ACTIONS(5666), 6, + 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(557), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81348,82 +78580,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [10258] = 35, - ACTIONS(2483), 1, + [10261] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5916), 1, + ACTIONS(5659), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3901), 1, + STATE(3618), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81448,82 +78678,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [10393] = 35, - ACTIONS(2483), 1, + [10393] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5918), 1, - aux_sym_insert_token1, - STATE(2681), 1, + ACTIONS(5583), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5661), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3723), 1, + STATE(3592), 1, sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5581), 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(522), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81548,82 +78776,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [10528] = 35, - ACTIONS(2483), 1, + [10525] = 33, + ACTIONS(3334), 1, + sym__pipe_table_delimiter, + ACTIONS(5666), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(5669), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(5672), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(5675), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(5678), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(5681), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(5684), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(5687), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(5690), 1, + sym__whitespace, + ACTIONS(5693), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(5696), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(5699), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(5702), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(5705), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(5708), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(5711), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(5714), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(5717), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(5720), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(5723), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(5726), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(5729), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(5732), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(5735), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(5738), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(5741), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(5744), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(5747), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(5750), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(5753), 1, sym__emphasis_open_underscore, - ACTIONS(5920), 1, - aux_sym_insert_token1, - STATE(2681), 1, - sym__line, - STATE(3724), 1, - sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5663), 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(522), 25, + STATE(692), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81648,82 +78872,81 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [10663] = 35, - ACTIONS(2483), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [10655] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5922), 1, + ACTIONS(5756), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3725), 1, + STATE(3483), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81748,82 +78971,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [10798] = 35, - ACTIONS(2483), 1, + [10787] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5924), 1, - aux_sym_insert_token1, - STATE(2681), 1, + ACTIONS(5577), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5758), 1, + sym__single_quote_span_close, + STATE(2672), 1, sym__line, - STATE(3729), 1, + STATE(3371), 1, sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5575), 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(522), 25, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81848,82 +79069,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [10933] = 35, - ACTIONS(2483), 1, + [10919] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(2499), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5926), 1, - aux_sym_insert_token1, - STATE(2681), 1, + ACTIONS(5583), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5760), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3300), 1, + STATE(3372), 1, sym__inlines, - ACTIONS(2481), 6, + ACTIONS(5581), 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(522), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -81948,82 +79167,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [11068] = 35, - ACTIONS(2483), 1, + [11051] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5928), 1, + ACTIONS(5762), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3902), 1, + STATE(3486), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82048,82 +79265,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [11203] = 35, - ACTIONS(2483), 1, + [11183] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5930), 1, + ACTIONS(5764), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3903), 1, + STATE(3277), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82148,82 +79363,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [11338] = 35, - ACTIONS(3982), 1, + [11315] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5932), 1, - sym__single_quote_span_close, - STATE(2676), 1, + ACTIONS(5766), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3351), 1, + STATE(3393), 1, sym__inlines, - ACTIONS(5682), 6, + 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(529), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82248,82 +79461,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [11473] = 35, - ACTIONS(2483), 1, + [11447] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5934), 1, + ACTIONS(5768), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3416), 1, + STATE(3730), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82348,82 +79559,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [11608] = 35, - ACTIONS(2483), 1, + [11579] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5936), 1, + ACTIONS(5770), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3417), 1, + STATE(3395), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82448,82 +79657,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [11743] = 35, - ACTIONS(2483), 1, + [11711] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5938), 1, + ACTIONS(5772), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3418), 1, + STATE(3396), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82548,82 +79755,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [11878] = 35, - ACTIONS(9), 1, + [11843] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(23), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(25), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(69), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(71), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(73), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(75), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(77), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(79), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(81), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(83), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(85), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(87), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(91), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(93), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(95), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(97), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(99), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(101), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(103), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(107), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(109), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - STATE(594), 1, - sym_pandoc_paragraph, - STATE(2633), 1, + ACTIONS(5774), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(2820), 1, + STATE(3487), 1, sym__inlines, - ACTIONS(7), 6, + 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(417), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82648,82 +79853,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [12013] = 35, - ACTIONS(2483), 1, + [11975] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5940), 1, + ACTIONS(5776), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3583), 1, + STATE(3321), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82748,82 +79951,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [12148] = 35, - ACTIONS(2483), 1, + [12107] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5942), 1, + ACTIONS(5778), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3584), 1, + STATE(3322), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82848,82 +80049,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [12283] = 35, - ACTIONS(2483), 1, + [12239] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5944), 1, + ACTIONS(5780), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3589), 1, + STATE(3351), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -82948,82 +80147,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [12418] = 35, - ACTIONS(2483), 1, + [12371] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5946), 1, + ACTIONS(5782), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3590), 1, + STATE(3353), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83048,82 +80245,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [12553] = 35, - ACTIONS(3982), 1, + [12503] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5948), 1, - sym__single_quote_span_close, - STATE(2676), 1, + ACTIONS(5784), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3797), 1, + STATE(3291), 1, sym__inlines, - ACTIONS(5682), 6, + 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(529), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83148,82 +80343,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [12688] = 35, - ACTIONS(4050), 1, + [12635] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, + ACTIONS(5577), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5950), 1, - sym__double_quote_span_close, - STATE(2692), 1, + ACTIONS(5786), 1, + sym__single_quote_span_close, + STATE(2672), 1, sym__line, - STATE(3798), 1, + STATE(3846), 1, sym__inlines, - ACTIONS(5666), 6, + ACTIONS(5575), 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(557), 25, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83248,80 +80441,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [12823] = 34, - ACTIONS(2977), 1, - sym__pipe_table_delimiter, - ACTIONS(3244), 1, + [12767] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(3246), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(3248), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(3250), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3252), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(3254), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(3256), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(3260), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3262), 1, - sym__whitespace, - ACTIONS(3264), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(3266), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(3268), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(3270), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(3272), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(3274), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(3276), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(3278), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(3280), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(3282), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(3284), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(3286), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(3288), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(3290), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(3292), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(3294), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(3296), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(3298), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(3300), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(3302), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(3304), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5954), 1, + ACTIONS(5577), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5952), 6, + ACTIONS(5788), 1, + sym__single_quote_span_close, + STATE(2672), 1, + sym__line, + STATE(3574), 1, + sym__inlines, + ACTIONS(5575), 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(665), 26, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83346,83 +80539,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - aux_sym__line_with_maybe_spaces_repeat1, - [12956] = 35, - ACTIONS(2483), 1, + [12899] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5956), 1, + ACTIONS(5790), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3424), 1, + STATE(3296), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83447,82 +80637,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [13091] = 35, - ACTIONS(2483), 1, + [13031] = 34, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(23), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(5958), 1, - aux_sym_insert_token1, - STATE(2681), 1, + STATE(592), 1, + sym_pandoc_paragraph, + STATE(2609), 1, sym__line, - STATE(3844), 1, + STATE(2769), 1, sym__inlines, - ACTIONS(2481), 6, + ACTIONS(7), 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(522), 25, + STATE(591), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83547,82 +80735,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [13226] = 35, - ACTIONS(2483), 1, + [13163] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5960), 1, + ACTIONS(5792), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3845), 1, + STATE(3540), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83647,82 +80833,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [13361] = 35, - ACTIONS(2483), 1, + [13295] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5962), 1, + ACTIONS(5794), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3846), 1, + STATE(3677), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83747,82 +80931,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [13496] = 35, - ACTIONS(2483), 1, + [13427] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5964), 1, + ACTIONS(5796), 1, aux_sym_insert_token1, - STATE(2681), 1, + STATE(2664), 1, sym__line, - STATE(3457), 1, + STATE(3703), 1, sym__inlines, - ACTIONS(2481), 6, + 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(522), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83847,80 +81029,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [13631] = 34, - ACTIONS(5176), 1, + [13559] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, - aux_sym__prose_punctuation_token1, - STATE(2759), 1, + ACTIONS(5798), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3379), 1, + STATE(3721), 1, sym__inlines, - ACTIONS(5966), 6, + 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(603), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -83945,80 +81127,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [13763] = 34, - ACTIONS(2899), 1, + [13691] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2913), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - STATE(2613), 1, + ACTIONS(5800), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(2651), 1, + STATE(3320), 1, sym__inlines, - ACTIONS(2897), 6, + 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(590), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84043,80 +81225,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [13895] = 34, - ACTIONS(4218), 1, + [13823] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, + ACTIONS(5583), 1, aux_sym__prose_punctuation_token1, - STATE(2776), 1, + ACTIONS(5802), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3756), 1, + STATE(3575), 1, sym__inlines, - ACTIONS(5970), 6, + ACTIONS(5581), 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(567), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84141,80 +81323,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [14027] = 34, - ACTIONS(4912), 1, + [13955] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, + ACTIONS(5583), 1, aux_sym__prose_punctuation_token1, - STATE(2691), 1, + ACTIONS(5804), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3691), 1, + STATE(3847), 1, sym__inlines, - ACTIONS(5974), 6, + ACTIONS(5581), 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(597), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84239,80 +81421,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [14159] = 34, - ACTIONS(5176), 1, + [14087] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, + ACTIONS(5577), 1, aux_sym__prose_punctuation_token1, - STATE(2759), 1, + ACTIONS(5806), 1, + sym__single_quote_span_close, + STATE(2672), 1, sym__line, - STATE(3742), 1, + STATE(3461), 1, sym__inlines, - ACTIONS(5966), 6, + ACTIONS(5575), 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(603), 25, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84337,80 +81519,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [14291] = 34, - ACTIONS(9), 1, + [14219] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(23), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(25), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(69), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(71), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(73), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(75), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(77), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(79), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(81), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(83), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(85), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(87), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(91), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(93), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(95), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(97), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(99), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(101), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(103), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(107), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(109), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - STATE(2633), 1, + ACTIONS(5808), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3078), 1, + STATE(3651), 1, sym__inlines, - ACTIONS(7), 6, + 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(417), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84435,80 +81617,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [14423] = 34, - ACTIONS(5340), 1, + [14351] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, - aux_sym__prose_punctuation_token1, - STATE(2718), 1, + ACTIONS(5810), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3748), 1, + STATE(3652), 1, sym__inlines, - ACTIONS(5978), 6, + 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(606), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84533,80 +81715,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [14555] = 34, - ACTIONS(5504), 1, + [14483] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, + ACTIONS(5583), 1, aux_sym__prose_punctuation_token1, - STATE(2755), 1, + ACTIONS(5812), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3750), 1, + STATE(3466), 1, sym__inlines, - ACTIONS(5982), 6, + ACTIONS(5581), 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(609), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84631,80 +81813,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [14687] = 34, - ACTIONS(4382), 1, + [14615] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, - aux_sym__prose_punctuation_token1, - STATE(2724), 1, + ACTIONS(5814), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3768), 1, + STATE(3653), 1, sym__inlines, - ACTIONS(5986), 6, + 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(576), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84729,80 +81911,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [14819] = 34, - ACTIONS(4546), 1, + [14747] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, - aux_sym__prose_punctuation_token1, - STATE(2702), 1, + ACTIONS(5816), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3776), 1, + STATE(3655), 1, sym__inlines, - ACTIONS(5990), 6, + 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(584), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84827,8 +82009,7 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [14951] = 34, + [14879] = 34, ACTIONS(9), 1, anon_sym_LBRACK, ACTIONS(11), 1, @@ -84845,62 +82026,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(23), 1, aux_sym__prose_punctuation_token1, - ACTIONS(25), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(69), 1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(71), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(73), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(75), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(77), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(79), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(81), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(83), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(85), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(87), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(91), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(93), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(95), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(97), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(99), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(101), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(103), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(107), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(109), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - STATE(2633), 1, + STATE(587), 1, + sym_pandoc_paragraph, + STATE(2609), 1, sym__line, - STATE(3196), 1, + STATE(2839), 1, sym__inlines, - ACTIONS(7), 6, + ACTIONS(7), 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(417), 25, + STATE(591), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -84925,80 +82107,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [15083] = 34, - ACTIONS(2899), 1, + [15011] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2913), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - STATE(2613), 1, + ACTIONS(5818), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(2647), 1, + STATE(3615), 1, sym__inlines, - ACTIONS(2897), 6, + 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(590), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85023,80 +82205,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [15215] = 34, - ACTIONS(9), 1, + [15143] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(23), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(25), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(69), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(71), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(73), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(75), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(77), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(79), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(81), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(83), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(85), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(87), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(91), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(93), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(95), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(97), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(99), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(101), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(103), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(107), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(109), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - STATE(2633), 1, + ACTIONS(5820), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(2949), 1, + STATE(3742), 1, sym__inlines, - ACTIONS(7), 6, + 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(417), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85121,80 +82303,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [15347] = 34, - ACTIONS(9), 1, + [15275] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(23), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(25), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(69), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(71), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(73), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(75), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(77), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(79), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(81), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(83), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(85), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(87), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(91), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(93), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(95), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(97), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(99), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(101), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(103), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(107), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(109), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - STATE(2633), 1, + ACTIONS(5577), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5822), 1, + sym__single_quote_span_close, + STATE(2672), 1, sym__line, - STATE(2972), 1, + STATE(3571), 1, sym__inlines, - ACTIONS(7), 6, + ACTIONS(5575), 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(417), 25, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85219,80 +82401,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [15479] = 34, - ACTIONS(9), 1, + [15407] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(23), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(25), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(69), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(71), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(73), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(75), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(77), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(79), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(81), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(83), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(85), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(87), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(91), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(93), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(95), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(97), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(99), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(101), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(103), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(107), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(109), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - STATE(2633), 1, + ACTIONS(5583), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5824), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3038), 1, + STATE(3573), 1, sym__inlines, - ACTIONS(7), 6, + ACTIONS(5581), 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(417), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85317,80 +82499,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [15611] = 34, - ACTIONS(4218), 1, + [15539] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, - aux_sym__prose_punctuation_token1, - STATE(2776), 1, + ACTIONS(5826), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3510), 1, + STATE(3616), 1, sym__inlines, - ACTIONS(5970), 6, + 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(567), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85415,80 +82597,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [15743] = 34, - ACTIONS(4382), 1, + [15671] = 34, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(23), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, - aux_sym__prose_punctuation_token1, - STATE(2724), 1, + STATE(402), 1, + sym_pandoc_paragraph, + STATE(2609), 1, sym__line, - STATE(3511), 1, + STATE(2732), 1, sym__inlines, - ACTIONS(5986), 6, + ACTIONS(7), 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(576), 25, + STATE(591), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85513,178 +82695,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [15875] = 34, - ACTIONS(4546), 1, + [15803] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, - sym__code_span_start, - ACTIONS(4568), 1, - sym__highlight_span_start, - ACTIONS(4570), 1, - sym__insert_span_start, - ACTIONS(4572), 1, - sym__delete_span_start, - ACTIONS(4574), 1, - sym__edit_comment_span_start, - ACTIONS(4576), 1, - sym__single_quote_span_open, - ACTIONS(4578), 1, - sym__double_quote_span_open, - ACTIONS(4580), 1, - sym__shortcode_open_escaped, - ACTIONS(4582), 1, - sym__shortcode_open, - ACTIONS(4584), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, - sym__cite_author_in_text, - ACTIONS(4590), 1, - sym__cite_suppress_author, - ACTIONS(4592), 1, - sym__strikeout_open, - ACTIONS(4594), 1, - sym__subscript_open, - ACTIONS(4596), 1, - sym__superscript_open, - ACTIONS(4598), 1, - sym__inline_note_start_token, - ACTIONS(4600), 1, - sym__strong_emphasis_open_star, - ACTIONS(4602), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, - sym__emphasis_open_star, - ACTIONS(4606), 1, - sym__emphasis_open_underscore, - ACTIONS(5992), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - STATE(2702), 1, - sym__line, - STATE(3512), 1, - sym__inlines, - ACTIONS(5990), 6, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym_entity_reference, - sym_numeric_character_reference, - STATE(584), 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, - sym_pandoc_line_break, - [16007] = 34, - ACTIONS(4912), 1, - anon_sym_LBRACK, - ACTIONS(4914), 1, - anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, - anon_sym_DOLLAR, - ACTIONS(4918), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, - anon_sym_LBRACE, - ACTIONS(4922), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, - anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, - aux_sym__prose_punctuation_token1, - STATE(2691), 1, + ACTIONS(5828), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3517), 1, + STATE(3806), 1, sym__inlines, - ACTIONS(5974), 6, + 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(597), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85709,178 +82793,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [16139] = 34, - ACTIONS(5176), 1, + [15935] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, - sym__code_span_start, - ACTIONS(5198), 1, - sym__highlight_span_start, - ACTIONS(5200), 1, - sym__insert_span_start, - ACTIONS(5202), 1, - sym__delete_span_start, - ACTIONS(5204), 1, - sym__edit_comment_span_start, - ACTIONS(5206), 1, - sym__single_quote_span_open, - ACTIONS(5208), 1, - sym__double_quote_span_open, - ACTIONS(5210), 1, - sym__shortcode_open_escaped, - ACTIONS(5212), 1, - sym__shortcode_open, - ACTIONS(5214), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, - sym__cite_author_in_text, - ACTIONS(5220), 1, - sym__cite_suppress_author, - ACTIONS(5222), 1, - sym__strikeout_open, - ACTIONS(5224), 1, - sym__subscript_open, - ACTIONS(5226), 1, - sym__superscript_open, - ACTIONS(5228), 1, - sym__inline_note_start_token, - ACTIONS(5230), 1, - sym__strong_emphasis_open_star, - ACTIONS(5232), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, - sym__emphasis_open_star, - ACTIONS(5236), 1, - sym__emphasis_open_underscore, - ACTIONS(5968), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - STATE(2759), 1, - sym__line, - STATE(3518), 1, - sym__inlines, - ACTIONS(5966), 6, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym_entity_reference, - sym_numeric_character_reference, - STATE(603), 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, - sym_pandoc_line_break, - [16271] = 34, - ACTIONS(5504), 1, - anon_sym_LBRACK, - ACTIONS(5506), 1, - anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, - anon_sym_DOLLAR, - ACTIONS(5510), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, - anon_sym_LBRACE, - ACTIONS(5514), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, - anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, - aux_sym__prose_punctuation_token1, - STATE(2755), 1, + ACTIONS(5830), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3520), 1, + STATE(3681), 1, sym__inlines, - ACTIONS(5982), 6, + 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(609), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -85905,80 +82891,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [16403] = 34, - ACTIONS(2899), 1, + [16067] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2913), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - STATE(2613), 1, + ACTIONS(5832), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(2657), 1, + STATE(3683), 1, sym__inlines, - ACTIONS(2897), 6, + 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(590), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86003,80 +82989,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [16535] = 34, - ACTIONS(4218), 1, + [16199] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, + ACTIONS(5577), 1, aux_sym__prose_punctuation_token1, - STATE(2776), 1, + ACTIONS(5834), 1, + sym__single_quote_span_close, + STATE(2672), 1, sym__line, - STATE(3834), 1, + STATE(3755), 1, sym__inlines, - ACTIONS(5970), 6, + ACTIONS(5575), 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(567), 25, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86101,80 +83087,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [16667] = 34, - ACTIONS(4382), 1, + [16331] = 34, + ACTIONS(4595), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4597), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(4599), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(4601), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(4607), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(4613), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(4615), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(4617), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(4619), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(4621), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(4623), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(4625), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(4627), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(4629), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(4631), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(4633), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(4635), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(4637), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(4639), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(4641), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(4643), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(4645), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(4647), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(4649), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(4651), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(4653), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, + ACTIONS(5577), 1, aux_sym__prose_punctuation_token1, - STATE(2724), 1, + ACTIONS(5836), 1, + sym__single_quote_span_close, + STATE(2672), 1, sym__line, - STATE(3835), 1, + STATE(3544), 1, sym__inlines, - ACTIONS(5986), 6, + ACTIONS(5575), 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(576), 25, + STATE(626), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86199,80 +83185,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [16799] = 34, - ACTIONS(4546), 1, + [16463] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, + ACTIONS(5583), 1, aux_sym__prose_punctuation_token1, - STATE(2702), 1, + ACTIONS(5838), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3836), 1, + STATE(3756), 1, sym__inlines, - ACTIONS(5990), 6, + ACTIONS(5581), 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), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86297,80 +83283,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [16931] = 34, - ACTIONS(4912), 1, + [16595] = 34, + ACTIONS(4927), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(4929), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(4931), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(4933), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(4939), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(4945), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4947), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4949), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4951), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4953), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4955), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4957), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4959), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4961), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4963), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4965), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4967), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4969), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4971), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4973), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4975), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4977), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4979), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4981), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4983), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4985), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, + ACTIONS(5583), 1, aux_sym__prose_punctuation_token1, - STATE(2691), 1, + ACTIONS(5840), 1, + sym__double_quote_span_close, + STATE(2623), 1, sym__line, - STATE(3838), 1, + STATE(3547), 1, sym__inlines, - ACTIONS(5974), 6, + ACTIONS(5581), 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(597), 25, + STATE(634), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86395,80 +83381,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [17063] = 34, - ACTIONS(5176), 1, + [16727] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, - aux_sym__prose_punctuation_token1, - STATE(2759), 1, + ACTIONS(5842), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3839), 1, + STATE(3685), 1, sym__inlines, - ACTIONS(5966), 6, + 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(603), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86493,178 +83479,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [17195] = 34, - ACTIONS(5340), 1, + [16859] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, - sym__code_span_start, - ACTIONS(5362), 1, - sym__highlight_span_start, - ACTIONS(5364), 1, - sym__insert_span_start, - ACTIONS(5366), 1, - sym__delete_span_start, - ACTIONS(5368), 1, - sym__edit_comment_span_start, - ACTIONS(5370), 1, - sym__single_quote_span_open, - ACTIONS(5372), 1, - sym__double_quote_span_open, - ACTIONS(5374), 1, - sym__shortcode_open_escaped, - ACTIONS(5376), 1, - sym__shortcode_open, - ACTIONS(5378), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, - sym__cite_author_in_text, - ACTIONS(5384), 1, - sym__cite_suppress_author, - ACTIONS(5386), 1, - sym__strikeout_open, - ACTIONS(5388), 1, - sym__subscript_open, - ACTIONS(5390), 1, - sym__superscript_open, - ACTIONS(5392), 1, - sym__inline_note_start_token, - ACTIONS(5394), 1, - sym__strong_emphasis_open_star, - ACTIONS(5396), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, - sym__emphasis_open_star, - ACTIONS(5400), 1, - sym__emphasis_open_underscore, - ACTIONS(5980), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - STATE(2718), 1, - sym__line, - STATE(3842), 1, - sym__inlines, - ACTIONS(5978), 6, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym_entity_reference, - sym_numeric_character_reference, - STATE(606), 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, - sym_pandoc_line_break, - [17327] = 34, - ACTIONS(5504), 1, - anon_sym_LBRACK, - ACTIONS(5506), 1, - anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, - anon_sym_DOLLAR, - ACTIONS(5510), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, - anon_sym_LBRACE, - ACTIONS(5514), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, - anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, - aux_sym__prose_punctuation_token1, - STATE(2755), 1, + ACTIONS(5844), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3843), 1, + STATE(3686), 1, sym__inlines, - ACTIONS(5982), 6, + 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(609), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86689,80 +83577,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [17459] = 34, - ACTIONS(2899), 1, + [16991] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(2913), 1, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - STATE(2613), 1, + ACTIONS(5846), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(2666), 1, + STATE(3631), 1, sym__inlines, - ACTIONS(2897), 6, + 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(590), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86787,80 +83675,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [17591] = 34, - ACTIONS(4218), 1, + [17123] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, - aux_sym__prose_punctuation_token1, - STATE(2776), 1, + ACTIONS(5848), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3430), 1, + STATE(3632), 1, sym__inlines, - ACTIONS(5970), 6, + 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(567), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86885,80 +83773,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [17723] = 34, - ACTIONS(4382), 1, + [17255] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, - aux_sym__prose_punctuation_token1, - STATE(2724), 1, + ACTIONS(5850), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3442), 1, + STATE(3633), 1, sym__inlines, - ACTIONS(5986), 6, + 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(576), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -86983,80 +83871,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [17855] = 34, - ACTIONS(4546), 1, + [17387] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, - aux_sym__prose_punctuation_token1, - STATE(2702), 1, + ACTIONS(5852), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3447), 1, + STATE(3634), 1, sym__inlines, - ACTIONS(5990), 6, + 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(584), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87081,80 +83969,80 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [17987] = 34, - ACTIONS(4912), 1, + [17519] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, - aux_sym__prose_punctuation_token1, - STATE(2691), 1, + ACTIONS(5854), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3450), 1, + STATE(3807), 1, sym__inlines, - ACTIONS(5974), 6, + 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(597), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87179,80 +84067,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [18119] = 34, - ACTIONS(5176), 1, + [17651] = 33, + ACTIONS(3230), 1, + sym__pipe_table_delimiter, + ACTIONS(3600), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(3602), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(3604), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(3606), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(3608), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(3610), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(3612), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(3616), 1, + sym__whitespace, + ACTIONS(3618), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(3620), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(3622), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(3624), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(3626), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(3628), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(3630), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(3632), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(3634), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(3636), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(3638), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(3640), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(3642), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(3644), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(3646), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(3648), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(3650), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(3652), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(3654), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(3656), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(3658), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, + ACTIONS(5858), 1, aux_sym__prose_punctuation_token1, - STATE(2759), 1, - sym__line, - STATE(3466), 1, - sym__inlines, - ACTIONS(5966), 6, + 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(603), 25, + STATE(692), 25, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87277,80 +84163,81 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [18251] = 34, - ACTIONS(5340), 1, + aux_sym__line_with_maybe_spaces_repeat1, + [17781] = 34, + ACTIONS(2445), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(2447), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(2449), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(2451), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(2459), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(2461), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(2467), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(2469), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(2471), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(2473), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(2475), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(2477), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(2479), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(2481), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(2483), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(2485), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(2487), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(2489), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(2491), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(2493), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(2495), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(2497), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(2499), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(2501), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(2503), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(2505), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(2507), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, - aux_sym__prose_punctuation_token1, - STATE(2718), 1, + ACTIONS(5860), 1, + aux_sym_insert_token1, + STATE(2664), 1, sym__line, - STATE(3467), 1, + STATE(3394), 1, sym__inlines, - ACTIONS(5978), 6, + 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(606), 25, + STATE(630), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87375,80 +84262,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [18383] = 34, - ACTIONS(5504), 1, + [17913] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, + ACTIONS(5864), 1, aux_sym__prose_punctuation_token1, - STATE(2755), 1, + STATE(2633), 1, sym__line, - STATE(3471), 1, + STATE(3873), 1, sym__inlines, - ACTIONS(5982), 6, + 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(609), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87473,80 +84358,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [18515] = 34, - ACTIONS(2899), 1, + [18042] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(2913), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - STATE(2591), 1, - sym__inlines, - STATE(2613), 1, + ACTIONS(5864), 1, + aux_sym__prose_punctuation_token1, + STATE(2633), 1, sym__line, - ACTIONS(2897), 6, + STATE(3382), 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(590), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87571,80 +84454,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [18647] = 34, - ACTIONS(4218), 1, + [18171] = 33, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(23), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, - aux_sym__prose_punctuation_token1, - STATE(2776), 1, + STATE(2609), 1, sym__line, - STATE(3291), 1, + STATE(3004), 1, sym__inlines, - ACTIONS(5970), 6, + ACTIONS(7), 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(567), 25, + STATE(591), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87669,80 +84550,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [18779] = 34, - ACTIONS(4382), 1, + [18300] = 33, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(23), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, - aux_sym__prose_punctuation_token1, - STATE(2724), 1, + STATE(2609), 1, sym__line, - STATE(3294), 1, + STATE(2780), 1, sym__inlines, - ACTIONS(5986), 6, + ACTIONS(7), 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(576), 25, + STATE(591), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87767,80 +84646,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [18911] = 34, - ACTIONS(4546), 1, + [18429] = 33, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(23), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, - aux_sym__prose_punctuation_token1, - STATE(2702), 1, + STATE(2609), 1, sym__line, - STATE(3296), 1, + STATE(2986), 1, sym__inlines, - ACTIONS(5990), 6, + ACTIONS(7), 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), 25, + STATE(591), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87865,80 +84742,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [19043] = 34, - ACTIONS(4912), 1, + [18558] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - STATE(2691), 1, + STATE(2708), 1, sym__line, - STATE(3304), 1, + STATE(3904), 1, sym__inlines, - ACTIONS(5974), 6, + ACTIONS(5866), 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(597), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -87963,80 +84838,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [19175] = 34, - ACTIONS(5176), 1, + [18687] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(3109), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, - aux_sym__prose_punctuation_token1, - STATE(2759), 1, - sym__line, - STATE(3312), 1, + STATE(2554), 1, sym__inlines, - ACTIONS(5966), 6, + STATE(2576), 1, + sym__line, + ACTIONS(3093), 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(603), 25, + STATE(627), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88061,80 +84934,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [19307] = 34, - ACTIONS(5340), 1, + [18816] = 33, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(23), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, - aux_sym__prose_punctuation_token1, - STATE(2718), 1, + STATE(2609), 1, sym__line, - STATE(3332), 1, + STATE(3028), 1, sym__inlines, - ACTIONS(5978), 6, + ACTIONS(7), 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(606), 25, + STATE(591), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88159,80 +85030,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [19439] = 34, - ACTIONS(5504), 1, + [18945] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, + ACTIONS(5872), 1, aux_sym__prose_punctuation_token1, - STATE(2755), 1, + STATE(2717), 1, sym__line, - STATE(3336), 1, + STATE(3783), 1, sym__inlines, - ACTIONS(5982), 6, + 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(609), 25, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88257,80 +85126,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [19571] = 34, - ACTIONS(2899), 1, + [19074] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(2913), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - STATE(2594), 1, - sym__inlines, - STATE(2613), 1, + ACTIONS(5876), 1, + aux_sym__prose_punctuation_token1, + STATE(2677), 1, sym__line, - ACTIONS(2897), 6, + STATE(3832), 1, + sym__inlines, + ACTIONS(5874), 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(590), 25, + STATE(617), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88355,80 +85222,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [19703] = 34, - ACTIONS(4218), 1, + [19203] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, + ACTIONS(5880), 1, aux_sym__prose_punctuation_token1, - STATE(2776), 1, + STATE(2642), 1, sym__line, - STATE(3599), 1, + STATE(3837), 1, sym__inlines, - ACTIONS(5970), 6, + ACTIONS(5878), 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(567), 25, + STATE(620), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88453,80 +85318,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [19835] = 34, - ACTIONS(4382), 1, + [19332] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, + ACTIONS(5864), 1, aux_sym__prose_punctuation_token1, - STATE(2724), 1, + STATE(2633), 1, sym__line, - STATE(3607), 1, + STATE(3838), 1, sym__inlines, - ACTIONS(5986), 6, + 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(576), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88551,80 +85414,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [19967] = 34, - ACTIONS(4546), 1, + [19461] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, + ACTIONS(5884), 1, aux_sym__prose_punctuation_token1, - STATE(2702), 1, + STATE(2692), 1, sym__line, - STATE(3612), 1, + STATE(3908), 1, sym__inlines, - ACTIONS(5990), 6, + 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(584), 25, + STATE(640), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88649,80 +85510,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [20099] = 34, - ACTIONS(4912), 1, + [19590] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - STATE(2691), 1, + STATE(2708), 1, sym__line, - STATE(3615), 1, + STATE(3520), 1, sym__inlines, - ACTIONS(5974), 6, + ACTIONS(5866), 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(597), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88747,80 +85606,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [20231] = 34, - ACTIONS(5176), 1, + [19719] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, + ACTIONS(5884), 1, aux_sym__prose_punctuation_token1, - STATE(2759), 1, + STATE(2692), 1, sym__line, - STATE(3637), 1, + STATE(3525), 1, sym__inlines, - ACTIONS(5966), 6, + 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(603), 25, + STATE(640), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88845,80 +85702,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [20363] = 34, - ACTIONS(5340), 1, + [19848] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, + ACTIONS(5888), 1, aux_sym__prose_punctuation_token1, - STATE(2718), 1, + STATE(2644), 1, sym__line, - STATE(3639), 1, + STATE(3526), 1, sym__inlines, - ACTIONS(5978), 6, + 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(606), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -88943,80 +85798,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [20495] = 34, - ACTIONS(5504), 1, + [19977] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, + ACTIONS(5872), 1, aux_sym__prose_punctuation_token1, - STATE(2755), 1, + STATE(2717), 1, sym__line, - STATE(3640), 1, + STATE(3528), 1, sym__inlines, - ACTIONS(5982), 6, + 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(609), 25, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89041,178 +85894,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [20627] = 34, - ACTIONS(2899), 1, + [20106] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(2913), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, - sym__cite_author_in_text, - ACTIONS(2943), 1, - sym__cite_suppress_author, - ACTIONS(2945), 1, - sym__strikeout_open, - ACTIONS(2947), 1, - sym__subscript_open, - ACTIONS(2949), 1, - sym__superscript_open, - ACTIONS(2951), 1, - sym__inline_note_start_token, - ACTIONS(2953), 1, - sym__strong_emphasis_open_star, - ACTIONS(2955), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, - sym__emphasis_open_star, - ACTIONS(2959), 1, - sym__emphasis_open_underscore, - STATE(2602), 1, - sym__inlines, - STATE(2613), 1, - sym__line, - ACTIONS(2897), 6, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym_entity_reference, - sym_numeric_character_reference, - STATE(590), 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, - sym_pandoc_line_break, - [20759] = 34, ACTIONS(4218), 1, - anon_sym_LBRACK, - ACTIONS(4220), 1, - anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, - anon_sym_DOLLAR, - ACTIONS(4224), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, - anon_sym_LBRACE, - ACTIONS(4228), 1, - aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, - anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, - sym__code_span_start, - ACTIONS(4240), 1, - sym__highlight_span_start, - ACTIONS(4242), 1, - sym__insert_span_start, - ACTIONS(4244), 1, - sym__delete_span_start, - ACTIONS(4246), 1, - sym__edit_comment_span_start, - ACTIONS(4248), 1, - sym__single_quote_span_open, - ACTIONS(4250), 1, - sym__double_quote_span_open, - ACTIONS(4252), 1, - sym__shortcode_open_escaped, - ACTIONS(4254), 1, - sym__shortcode_open, - ACTIONS(4256), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, + ACTIONS(5876), 1, aux_sym__prose_punctuation_token1, - STATE(2776), 1, + STATE(2677), 1, sym__line, - STATE(3849), 1, + STATE(3529), 1, sym__inlines, - ACTIONS(5970), 6, + ACTIONS(5874), 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(567), 25, + STATE(617), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89237,80 +85990,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [20891] = 34, - ACTIONS(4382), 1, + [20235] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, + ACTIONS(5880), 1, aux_sym__prose_punctuation_token1, - STATE(2724), 1, + STATE(2642), 1, sym__line, - STATE(3850), 1, + STATE(3530), 1, sym__inlines, - ACTIONS(5986), 6, + ACTIONS(5878), 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(576), 25, + STATE(620), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89335,80 +86086,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [21023] = 34, - ACTIONS(4546), 1, + [20364] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, + ACTIONS(5864), 1, aux_sym__prose_punctuation_token1, - STATE(2702), 1, + STATE(2633), 1, sym__line, - STATE(3851), 1, + STATE(3531), 1, sym__inlines, - ACTIONS(5990), 6, + 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(584), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89433,80 +86182,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [21155] = 34, - ACTIONS(4912), 1, + [20493] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(3109), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, - aux_sym__prose_punctuation_token1, - STATE(2691), 1, + STATE(2576), 1, sym__line, - STATE(3854), 1, + STATE(2603), 1, sym__inlines, - ACTIONS(5974), 6, + ACTIONS(3093), 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(597), 25, + STATE(627), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89531,80 +86278,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [21287] = 34, - ACTIONS(5176), 1, + [20622] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, + ACTIONS(5888), 1, aux_sym__prose_punctuation_token1, - STATE(2759), 1, + STATE(2644), 1, sym__line, - STATE(3859), 1, + STATE(3494), 1, sym__inlines, - ACTIONS(5966), 6, + 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(603), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89629,80 +86374,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [21419] = 34, - ACTIONS(5340), 1, + [20751] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - STATE(2718), 1, + STATE(2708), 1, sym__line, - STATE(3861), 1, + STATE(3850), 1, sym__inlines, - ACTIONS(5978), 6, + ACTIONS(5866), 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(606), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89727,80 +86470,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [21551] = 34, - ACTIONS(5504), 1, + [20880] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, + ACTIONS(5884), 1, aux_sym__prose_punctuation_token1, - STATE(2755), 1, + STATE(2692), 1, sym__line, - STATE(3870), 1, + STATE(3851), 1, sym__inlines, - ACTIONS(5982), 6, + 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(609), 25, + STATE(640), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89825,80 +86566,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [21683] = 34, - ACTIONS(2899), 1, + [21009] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(2913), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - STATE(2606), 1, - sym__inlines, - STATE(2613), 1, + ACTIONS(5888), 1, + aux_sym__prose_punctuation_token1, + STATE(2644), 1, sym__line, - ACTIONS(2897), 6, + STATE(3852), 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(590), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -89923,80 +86662,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [21815] = 34, - ACTIONS(4218), 1, + [21138] = 33, + ACTIONS(9), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(11), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(13), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(15), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(17), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(19), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(21), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(23), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(67), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(69), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(71), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(73), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(75), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(77), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(79), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(81), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(83), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(85), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(87), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(89), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(91), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(93), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(95), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(97), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(99), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(101), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(103), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(105), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(107), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, - aux_sym__prose_punctuation_token1, - STATE(2776), 1, + STATE(2609), 1, sym__line, - STATE(3343), 1, + STATE(3066), 1, sym__inlines, - ACTIONS(5970), 6, + ACTIONS(7), 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(567), 25, + STATE(591), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90021,80 +86758,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [21947] = 34, - ACTIONS(4382), 1, + [21267] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, + ACTIONS(5872), 1, aux_sym__prose_punctuation_token1, - STATE(2724), 1, + STATE(2717), 1, sym__line, - STATE(3345), 1, + STATE(3856), 1, sym__inlines, - ACTIONS(5986), 6, + 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(576), 25, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90119,80 +86854,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [22079] = 34, - ACTIONS(4546), 1, + [21396] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, + ACTIONS(5876), 1, aux_sym__prose_punctuation_token1, - STATE(2702), 1, + STATE(2677), 1, sym__line, - STATE(3346), 1, + STATE(3857), 1, sym__inlines, - ACTIONS(5990), 6, + ACTIONS(5874), 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), 25, + STATE(617), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90217,80 +86950,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [22211] = 34, - ACTIONS(4912), 1, + [21525] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, + ACTIONS(5880), 1, aux_sym__prose_punctuation_token1, - STATE(2691), 1, + STATE(2642), 1, sym__line, - STATE(3352), 1, + STATE(3872), 1, sym__inlines, - ACTIONS(5974), 6, + ACTIONS(5878), 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(597), 25, + STATE(620), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90315,80 +87046,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [22343] = 34, - ACTIONS(5176), 1, + [21654] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(3109), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, - aux_sym__prose_punctuation_token1, - STATE(2759), 1, - sym__line, - STATE(3353), 1, + STATE(2563), 1, sym__inlines, - ACTIONS(5966), 6, + STATE(2576), 1, + sym__line, + ACTIONS(3093), 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(603), 25, + STATE(627), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90413,80 +87142,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [22475] = 34, - ACTIONS(5340), 1, + [21783] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - STATE(2718), 1, + STATE(2708), 1, sym__line, - STATE(3356), 1, + STATE(3884), 1, sym__inlines, - ACTIONS(5978), 6, + ACTIONS(5866), 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(606), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90511,80 +87238,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [22607] = 34, - ACTIONS(5504), 1, + [21912] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, + ACTIONS(5884), 1, aux_sym__prose_punctuation_token1, - STATE(2755), 1, + STATE(2692), 1, sym__line, - STATE(3357), 1, + STATE(3885), 1, sym__inlines, - ACTIONS(5982), 6, + 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(609), 25, + STATE(640), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90609,80 +87334,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [22739] = 34, - ACTIONS(2899), 1, + [22041] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(2913), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - STATE(2611), 1, - sym__inlines, - STATE(2613), 1, + ACTIONS(5888), 1, + aux_sym__prose_punctuation_token1, + STATE(2644), 1, sym__line, - ACTIONS(2897), 6, + STATE(3888), 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(590), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90707,80 +87430,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [22871] = 34, - ACTIONS(4218), 1, + [22170] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, + ACTIONS(5872), 1, aux_sym__prose_punctuation_token1, - STATE(2776), 1, + STATE(2717), 1, sym__line, - STATE(3495), 1, + STATE(3894), 1, sym__inlines, - ACTIONS(5970), 6, + 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(567), 25, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90805,80 +87526,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [23003] = 34, - ACTIONS(4382), 1, + [22299] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, + ACTIONS(5876), 1, aux_sym__prose_punctuation_token1, - STATE(2724), 1, + STATE(2677), 1, sym__line, - STATE(3498), 1, + STATE(3898), 1, sym__inlines, - ACTIONS(5986), 6, + ACTIONS(5874), 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(576), 25, + STATE(617), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -90903,80 +87622,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [23135] = 34, - ACTIONS(4546), 1, + [22428] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, + ACTIONS(5880), 1, aux_sym__prose_punctuation_token1, - STATE(2702), 1, + STATE(2642), 1, sym__line, - STATE(3499), 1, + STATE(3901), 1, sym__inlines, - ACTIONS(5990), 6, + ACTIONS(5878), 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), 25, + STATE(620), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91001,80 +87718,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [23267] = 34, - ACTIONS(4912), 1, + [22557] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, + ACTIONS(5864), 1, aux_sym__prose_punctuation_token1, - STATE(2691), 1, + STATE(2633), 1, sym__line, - STATE(3505), 1, + STATE(3906), 1, sym__inlines, - ACTIONS(5974), 6, + 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(597), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91099,80 +87814,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [23399] = 34, - ACTIONS(5176), 1, + [22686] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(3109), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, - aux_sym__prose_punctuation_token1, - STATE(2759), 1, - sym__line, - STATE(3513), 1, + STATE(2573), 1, sym__inlines, - ACTIONS(5966), 6, + STATE(2576), 1, + sym__line, + ACTIONS(3093), 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(603), 25, + STATE(627), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91197,80 +87910,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [23531] = 34, - ACTIONS(5340), 1, + [22815] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - STATE(2718), 1, + STATE(2708), 1, sym__line, - STATE(3516), 1, + STATE(3625), 1, sym__inlines, - ACTIONS(5978), 6, + ACTIONS(5866), 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(606), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91295,80 +88006,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [23663] = 34, - ACTIONS(5504), 1, + [22944] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, + ACTIONS(5884), 1, aux_sym__prose_punctuation_token1, - STATE(2755), 1, + STATE(2692), 1, sym__line, - STATE(3521), 1, + STATE(3626), 1, sym__inlines, - ACTIONS(5982), 6, + 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(609), 25, + STATE(640), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91393,80 +88102,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [23795] = 34, - ACTIONS(2899), 1, + [23073] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(2913), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - STATE(2613), 1, + ACTIONS(5888), 1, + aux_sym__prose_punctuation_token1, + STATE(2644), 1, sym__line, - STATE(2616), 1, + STATE(3627), 1, sym__inlines, - ACTIONS(2897), 6, + 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(590), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91491,80 +88198,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [23927] = 34, - ACTIONS(4218), 1, + [23202] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, + ACTIONS(5872), 1, aux_sym__prose_punctuation_token1, - STATE(2776), 1, + STATE(2717), 1, sym__line, - STATE(3604), 1, + STATE(3669), 1, sym__inlines, - ACTIONS(5970), 6, + 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(567), 25, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91589,80 +88294,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [24059] = 34, - ACTIONS(4382), 1, + [23331] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, + ACTIONS(5876), 1, aux_sym__prose_punctuation_token1, - STATE(2724), 1, + STATE(2677), 1, sym__line, - STATE(3605), 1, + STATE(3670), 1, sym__inlines, - ACTIONS(5986), 6, + ACTIONS(5874), 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(576), 25, + STATE(617), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91687,80 +88390,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [24191] = 34, - ACTIONS(4546), 1, + [23460] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, + ACTIONS(5880), 1, aux_sym__prose_punctuation_token1, - STATE(2702), 1, + STATE(2642), 1, sym__line, - STATE(3606), 1, + STATE(3671), 1, sym__inlines, - ACTIONS(5990), 6, + ACTIONS(5878), 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), 25, + STATE(620), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91785,80 +88486,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [24323] = 34, - ACTIONS(4912), 1, + [23589] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, + ACTIONS(5864), 1, aux_sym__prose_punctuation_token1, - STATE(2691), 1, + STATE(2633), 1, sym__line, - STATE(3608), 1, + STATE(3679), 1, sym__inlines, - ACTIONS(5974), 6, + 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(597), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91883,80 +88582,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [24455] = 34, - ACTIONS(5176), 1, + [23718] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(3109), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, - aux_sym__prose_punctuation_token1, - STATE(2759), 1, - sym__line, - STATE(3609), 1, + STATE(2539), 1, sym__inlines, - ACTIONS(5966), 6, + STATE(2576), 1, + sym__line, + ACTIONS(3093), 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(603), 25, + STATE(627), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -91981,80 +88678,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [24587] = 34, - ACTIONS(5340), 1, + [23847] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - STATE(2718), 1, + STATE(2708), 1, sym__line, - STATE(3610), 1, + STATE(3482), 1, sym__inlines, - ACTIONS(5978), 6, + ACTIONS(5866), 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(606), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92079,80 +88774,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [24719] = 34, - ACTIONS(5504), 1, + [23976] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(3109), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, - aux_sym__prose_punctuation_token1, - STATE(2755), 1, + STATE(2576), 1, sym__line, - STATE(3611), 1, + STATE(2587), 1, sym__inlines, - ACTIONS(5982), 6, + ACTIONS(3093), 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(609), 25, + STATE(627), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92177,80 +88870,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [24851] = 34, - ACTIONS(2899), 1, + [24105] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(2913), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - STATE(2613), 1, + ACTIONS(5888), 1, + aux_sym__prose_punctuation_token1, + STATE(2644), 1, sym__line, - STATE(2622), 1, + STATE(3501), 1, sym__inlines, - ACTIONS(2897), 6, + 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(590), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92275,80 +88966,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [24983] = 34, - ACTIONS(4218), 1, + [24234] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, + ACTIONS(5872), 1, aux_sym__prose_punctuation_token1, - STATE(2776), 1, + STATE(2717), 1, sym__line, - STATE(3696), 1, + STATE(3534), 1, sym__inlines, - ACTIONS(5970), 6, + 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(567), 25, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92373,80 +89062,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [25115] = 34, - ACTIONS(4382), 1, + [24363] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, + ACTIONS(5876), 1, aux_sym__prose_punctuation_token1, - STATE(2724), 1, + STATE(2677), 1, sym__line, - STATE(3697), 1, + STATE(3536), 1, sym__inlines, - ACTIONS(5986), 6, + ACTIONS(5874), 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(576), 25, + STATE(617), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92471,80 +89158,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [25247] = 34, - ACTIONS(4546), 1, + [24492] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, + ACTIONS(5880), 1, aux_sym__prose_punctuation_token1, - STATE(2702), 1, + STATE(2642), 1, sym__line, - STATE(3698), 1, + STATE(3543), 1, sym__inlines, - ACTIONS(5990), 6, + ACTIONS(5878), 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), 25, + STATE(620), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92569,80 +89254,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [25379] = 34, - ACTIONS(4912), 1, + [24621] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, + ACTIONS(5864), 1, aux_sym__prose_punctuation_token1, - STATE(2691), 1, + STATE(2633), 1, sym__line, - STATE(3704), 1, + STATE(3578), 1, sym__inlines, - ACTIONS(5974), 6, + 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(597), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92667,178 +89350,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [25511] = 34, - ACTIONS(5176), 1, + [24750] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, - sym__code_span_start, - ACTIONS(5198), 1, - sym__highlight_span_start, - ACTIONS(5200), 1, - sym__insert_span_start, - ACTIONS(5202), 1, - sym__delete_span_start, - ACTIONS(5204), 1, - sym__edit_comment_span_start, - ACTIONS(5206), 1, - sym__single_quote_span_open, - ACTIONS(5208), 1, - sym__double_quote_span_open, - ACTIONS(5210), 1, - sym__shortcode_open_escaped, - ACTIONS(5212), 1, - sym__shortcode_open, - ACTIONS(5214), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, - sym__cite_author_in_text, - ACTIONS(5220), 1, - sym__cite_suppress_author, - ACTIONS(5222), 1, - sym__strikeout_open, - ACTIONS(5224), 1, - sym__subscript_open, - ACTIONS(5226), 1, - sym__superscript_open, - ACTIONS(5228), 1, - sym__inline_note_start_token, - ACTIONS(5230), 1, - sym__strong_emphasis_open_star, - ACTIONS(5232), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, - sym__emphasis_open_star, - ACTIONS(5236), 1, - sym__emphasis_open_underscore, - ACTIONS(5968), 1, + ACTIONS(3109), 1, aux_sym__prose_punctuation_token1, - STATE(2759), 1, - sym__line, - STATE(3705), 1, - sym__inlines, - ACTIONS(5966), 6, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym_entity_reference, - sym_numeric_character_reference, - STATE(603), 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, - sym_pandoc_line_break, - [25643] = 34, - 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(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, - aux_sym__prose_punctuation_token1, - STATE(2718), 1, - sym__line, - STATE(3707), 1, + STATE(2570), 1, sym__inlines, - ACTIONS(5978), 6, + STATE(2576), 1, + sym__line, + ACTIONS(3093), 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(606), 25, + STATE(627), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92863,80 +89446,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [25775] = 34, - ACTIONS(5504), 1, + [24879] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - STATE(2755), 1, + STATE(2708), 1, sym__line, - STATE(3709), 1, + STATE(3284), 1, sym__inlines, - ACTIONS(5982), 6, + ACTIONS(5866), 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(609), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -92961,80 +89542,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [25907] = 34, - ACTIONS(2899), 1, + [25008] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(2913), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - STATE(2613), 1, + ACTIONS(5884), 1, + aux_sym__prose_punctuation_token1, + STATE(2692), 1, sym__line, - STATE(2668), 1, + STATE(3287), 1, sym__inlines, - ACTIONS(2897), 6, + 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(590), 25, + STATE(640), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93059,80 +89638,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [26039] = 34, - ACTIONS(4218), 1, + [25137] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, + ACTIONS(5888), 1, aux_sym__prose_punctuation_token1, - STATE(2776), 1, + STATE(2644), 1, sym__line, - STATE(3801), 1, + STATE(3288), 1, sym__inlines, - ACTIONS(5970), 6, + 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(567), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93157,80 +89734,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [26171] = 34, - ACTIONS(4382), 1, + [25266] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, + ACTIONS(5872), 1, aux_sym__prose_punctuation_token1, - STATE(2724), 1, + STATE(2717), 1, sym__line, - STATE(3802), 1, + STATE(3297), 1, sym__inlines, - ACTIONS(5986), 6, + 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(576), 25, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93255,80 +89830,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [26303] = 34, - ACTIONS(4546), 1, + [25395] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, + ACTIONS(5876), 1, aux_sym__prose_punctuation_token1, - STATE(2702), 1, + STATE(2677), 1, sym__line, - STATE(3803), 1, + STATE(3298), 1, sym__inlines, - ACTIONS(5990), 6, + ACTIONS(5874), 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), 25, + STATE(617), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93353,80 +89926,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [26435] = 34, - ACTIONS(4912), 1, + [25524] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, + ACTIONS(5880), 1, aux_sym__prose_punctuation_token1, - STATE(2691), 1, + STATE(2642), 1, sym__line, - STATE(3809), 1, + STATE(3302), 1, sym__inlines, - ACTIONS(5974), 6, + ACTIONS(5878), 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(597), 25, + STATE(620), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93451,80 +90022,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [26567] = 34, - ACTIONS(5176), 1, + [25653] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, + ACTIONS(5864), 1, aux_sym__prose_punctuation_token1, - STATE(2759), 1, + STATE(2633), 1, sym__line, - STATE(3818), 1, + STATE(3304), 1, sym__inlines, - ACTIONS(5966), 6, + 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(603), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93549,80 +90118,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [26699] = 34, - ACTIONS(5340), 1, + [25782] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(3109), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, - aux_sym__prose_punctuation_token1, - STATE(2718), 1, + STATE(2576), 1, sym__line, - STATE(3819), 1, + STATE(2590), 1, sym__inlines, - ACTIONS(5978), 6, + ACTIONS(3093), 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(606), 25, + STATE(627), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93647,80 +90214,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [26831] = 34, - ACTIONS(5504), 1, + [25911] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - STATE(2755), 1, + STATE(2708), 1, sym__line, - STATE(3820), 1, + STATE(3444), 1, sym__inlines, - ACTIONS(5982), 6, + ACTIONS(5866), 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(609), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93745,80 +90310,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [26963] = 34, - ACTIONS(2899), 1, + [26040] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(2913), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - STATE(2613), 1, + ACTIONS(5884), 1, + aux_sym__prose_punctuation_token1, + STATE(2692), 1, sym__line, - STATE(2635), 1, + STATE(3445), 1, sym__inlines, - ACTIONS(2897), 6, + 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(590), 25, + STATE(640), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93843,80 +90406,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [27095] = 34, - ACTIONS(4218), 1, + [26169] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, + ACTIONS(5888), 1, aux_sym__prose_punctuation_token1, - STATE(2776), 1, + STATE(2644), 1, sym__line, - STATE(3927), 1, + STATE(3446), 1, sym__inlines, - ACTIONS(5970), 6, + 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(567), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -93941,80 +90502,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [27227] = 34, - ACTIONS(4382), 1, + [26298] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, + ACTIONS(5872), 1, aux_sym__prose_punctuation_token1, - STATE(2724), 1, + STATE(2717), 1, sym__line, - STATE(3928), 1, + STATE(3449), 1, sym__inlines, - ACTIONS(5986), 6, + 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(576), 25, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94039,80 +90598,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [27359] = 34, - ACTIONS(4546), 1, + [26427] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, + ACTIONS(5876), 1, aux_sym__prose_punctuation_token1, - STATE(2702), 1, + STATE(2677), 1, sym__line, - STATE(3929), 1, + STATE(3452), 1, sym__inlines, - ACTIONS(5990), 6, + ACTIONS(5874), 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), 25, + STATE(617), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94137,80 +90694,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [27491] = 34, - ACTIONS(4912), 1, + [26556] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, + ACTIONS(5880), 1, aux_sym__prose_punctuation_token1, - STATE(2691), 1, + STATE(2642), 1, sym__line, - STATE(3931), 1, + STATE(3453), 1, sym__inlines, - ACTIONS(5974), 6, + ACTIONS(5878), 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(597), 25, + STATE(620), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94235,80 +90790,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [27623] = 34, - ACTIONS(5176), 1, + [26685] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, + ACTIONS(5864), 1, aux_sym__prose_punctuation_token1, - STATE(2759), 1, + STATE(2633), 1, sym__line, - STATE(3932), 1, + STATE(3459), 1, sym__inlines, - ACTIONS(5966), 6, + 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(603), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94333,80 +90886,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [27755] = 34, - ACTIONS(5340), 1, + [26814] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(3109), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, - aux_sym__prose_punctuation_token1, - STATE(2718), 1, + STATE(2576), 1, sym__line, - STATE(3933), 1, + STATE(2607), 1, sym__inlines, - ACTIONS(5978), 6, + ACTIONS(3093), 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(606), 25, + STATE(627), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94431,80 +90982,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [27887] = 34, - ACTIONS(5504), 1, + [26943] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - STATE(2755), 1, + STATE(2708), 1, sym__line, - STATE(3936), 1, + STATE(3598), 1, sym__inlines, - ACTIONS(5982), 6, + ACTIONS(5866), 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(609), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94529,80 +91078,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [28019] = 34, - ACTIONS(2899), 1, + [27072] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(2913), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - STATE(2613), 1, + ACTIONS(5884), 1, + aux_sym__prose_punctuation_token1, + STATE(2692), 1, sym__line, - STATE(2638), 1, + STATE(3599), 1, sym__inlines, - ACTIONS(2897), 6, + 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(590), 25, + STATE(640), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94627,80 +91174,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [28151] = 34, - ACTIONS(4218), 1, + [27201] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, + ACTIONS(5888), 1, aux_sym__prose_punctuation_token1, - STATE(2776), 1, + STATE(2644), 1, sym__line, - STATE(3309), 1, + STATE(3600), 1, sym__inlines, - ACTIONS(5970), 6, + 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(567), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94725,80 +91270,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [28283] = 34, - ACTIONS(4382), 1, + [27330] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, + ACTIONS(5872), 1, aux_sym__prose_punctuation_token1, - STATE(2724), 1, + STATE(2717), 1, sym__line, - STATE(3310), 1, + STATE(3603), 1, sym__inlines, - ACTIONS(5986), 6, + 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(576), 25, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94823,80 +91366,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [28415] = 34, - ACTIONS(4546), 1, + [27459] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, + ACTIONS(5876), 1, aux_sym__prose_punctuation_token1, - STATE(2702), 1, + STATE(2677), 1, sym__line, - STATE(3311), 1, + STATE(3609), 1, sym__inlines, - ACTIONS(5990), 6, + ACTIONS(5874), 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), 25, + STATE(617), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -94921,80 +91462,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [28547] = 34, - ACTIONS(4912), 1, + [27588] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, + ACTIONS(5880), 1, aux_sym__prose_punctuation_token1, - STATE(2691), 1, + STATE(2642), 1, sym__line, - STATE(3313), 1, + STATE(3614), 1, sym__inlines, - ACTIONS(5974), 6, + ACTIONS(5878), 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(597), 25, + STATE(620), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95019,80 +91558,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [28679] = 34, - ACTIONS(5176), 1, + [27717] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, + ACTIONS(5864), 1, aux_sym__prose_punctuation_token1, - STATE(2759), 1, + STATE(2633), 1, sym__line, - STATE(3314), 1, + STATE(3622), 1, sym__inlines, - ACTIONS(5966), 6, + 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(603), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95117,80 +91654,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [28811] = 34, - ACTIONS(5340), 1, + [27846] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(3109), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, - aux_sym__prose_punctuation_token1, - STATE(2718), 1, + STATE(2576), 1, sym__line, - STATE(3315), 1, + STATE(2618), 1, sym__inlines, - ACTIONS(5978), 6, + ACTIONS(3093), 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(606), 25, + STATE(627), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95215,80 +91750,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [28943] = 34, - ACTIONS(5504), 1, + [27975] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - STATE(2755), 1, + STATE(2708), 1, sym__line, - STATE(3316), 1, + STATE(3765), 1, sym__inlines, - ACTIONS(5982), 6, + ACTIONS(5866), 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(609), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95313,80 +91846,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [29075] = 34, - ACTIONS(2899), 1, + [28104] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(2913), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - STATE(2613), 1, + ACTIONS(5884), 1, + aux_sym__prose_punctuation_token1, + STATE(2692), 1, sym__line, - STATE(2642), 1, + STATE(3769), 1, sym__inlines, - ACTIONS(2897), 6, + 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(590), 25, + STATE(640), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95411,80 +91942,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [29207] = 34, - ACTIONS(4218), 1, + [28233] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, + ACTIONS(5888), 1, aux_sym__prose_punctuation_token1, - STATE(2776), 1, + STATE(2644), 1, sym__line, - STATE(3374), 1, + STATE(3771), 1, sym__inlines, - ACTIONS(5970), 6, + 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(567), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95509,80 +92038,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [29339] = 34, - ACTIONS(4382), 1, + [28362] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, + ACTIONS(5872), 1, aux_sym__prose_punctuation_token1, - STATE(2724), 1, + STATE(2717), 1, sym__line, - STATE(3375), 1, + STATE(3774), 1, sym__inlines, - ACTIONS(5986), 6, + 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(576), 25, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95607,80 +92134,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [29471] = 34, - ACTIONS(4546), 1, + [28491] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, + ACTIONS(5876), 1, aux_sym__prose_punctuation_token1, - STATE(2702), 1, + STATE(2677), 1, sym__line, - STATE(3376), 1, + STATE(3775), 1, sym__inlines, - ACTIONS(5990), 6, + ACTIONS(5874), 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), 25, + STATE(617), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95705,80 +92230,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [29603] = 34, - ACTIONS(4912), 1, + [28620] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, + ACTIONS(5880), 1, aux_sym__prose_punctuation_token1, - STATE(2691), 1, + STATE(2642), 1, sym__line, - STATE(3378), 1, + STATE(3778), 1, sym__inlines, - ACTIONS(5974), 6, + ACTIONS(5878), 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(597), 25, + STATE(620), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95803,80 +92326,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [29735] = 34, - ACTIONS(5340), 1, + [28749] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, + ACTIONS(5864), 1, aux_sym__prose_punctuation_token1, - STATE(2718), 1, + STATE(2633), 1, sym__line, - STATE(3380), 1, + STATE(3780), 1, sym__inlines, - ACTIONS(5978), 6, + 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(606), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95901,80 +92422,174 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [29867] = 34, - ACTIONS(5504), 1, + [28878] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(3109), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + 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__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__code_span_start, + ACTIONS(5106), 1, + 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(5560), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - STATE(2755), 1, + STATE(2708), 1, sym__line, - STATE(3381), 1, + STATE(3473), 1, sym__inlines, - ACTIONS(5982), 6, + ACTIONS(5866), 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(609), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -95999,80 +92614,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [29999] = 34, - ACTIONS(2899), 1, + [29136] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(2913), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - STATE(2613), 1, + ACTIONS(5884), 1, + aux_sym__prose_punctuation_token1, + STATE(2692), 1, sym__line, - STATE(2645), 1, + STATE(3484), 1, sym__inlines, - ACTIONS(2897), 6, + 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(590), 25, + STATE(640), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96097,80 +92710,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [30131] = 34, - ACTIONS(4218), 1, + [29265] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, + ACTIONS(5888), 1, aux_sym__prose_punctuation_token1, - STATE(2776), 1, + STATE(2644), 1, sym__line, - STATE(3439), 1, + STATE(3665), 1, sym__inlines, - ACTIONS(5970), 6, + 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(567), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96195,80 +92806,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [30263] = 34, - ACTIONS(4382), 1, + [29394] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, + ACTIONS(5872), 1, aux_sym__prose_punctuation_token1, - STATE(2724), 1, + STATE(2717), 1, sym__line, - STATE(3440), 1, + STATE(3709), 1, sym__inlines, - ACTIONS(5986), 6, + 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(576), 25, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96293,80 +92902,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [30395] = 34, - ACTIONS(4546), 1, + [29523] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, + ACTIONS(5876), 1, aux_sym__prose_punctuation_token1, - STATE(2702), 1, + STATE(2677), 1, sym__line, - STATE(3441), 1, + STATE(3712), 1, sym__inlines, - ACTIONS(5990), 6, + ACTIONS(5874), 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), 25, + STATE(617), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96391,80 +92998,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [30527] = 34, - ACTIONS(4912), 1, + [29652] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, + ACTIONS(5880), 1, aux_sym__prose_punctuation_token1, - STATE(2691), 1, + STATE(2642), 1, sym__line, - STATE(3443), 1, + STATE(3736), 1, sym__inlines, - ACTIONS(5974), 6, + ACTIONS(5878), 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(597), 25, + STATE(620), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96489,80 +93094,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [30659] = 34, - ACTIONS(5176), 1, + [29781] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, + ACTIONS(5864), 1, aux_sym__prose_punctuation_token1, - STATE(2759), 1, + STATE(2633), 1, sym__line, - STATE(3444), 1, + STATE(3784), 1, sym__inlines, - ACTIONS(5966), 6, + 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(603), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96587,80 +93190,174 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [30791] = 34, - ACTIONS(5340), 1, + [29910] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(3109), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + 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__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__code_span_start, + ACTIONS(5106), 1, + 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(5398), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - STATE(2718), 1, + STATE(2708), 1, sym__line, - STATE(3445), 1, + STATE(3560), 1, sym__inlines, - ACTIONS(5978), 6, + ACTIONS(5866), 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(606), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96685,80 +93382,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [30923] = 34, - ACTIONS(5504), 1, + [30168] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, + ACTIONS(5884), 1, aux_sym__prose_punctuation_token1, - STATE(2755), 1, + STATE(2692), 1, sym__line, - STATE(3446), 1, + STATE(3567), 1, sym__inlines, - ACTIONS(5982), 6, + 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(609), 25, + STATE(640), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96783,80 +93478,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [31055] = 34, - ACTIONS(5340), 1, + [30297] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, + ACTIONS(5888), 1, aux_sym__prose_punctuation_token1, - STATE(2718), 1, + STATE(2644), 1, sym__line, - STATE(3519), 1, + STATE(3576), 1, sym__inlines, - ACTIONS(5978), 6, + 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(606), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96881,78 +93574,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [31187] = 33, - ACTIONS(4546), 1, + [30426] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(5992), 1, + ACTIONS(5872), 1, aux_sym__prose_punctuation_token1, - STATE(3131), 1, + STATE(2717), 1, sym__line, - ACTIONS(5990), 6, + STATE(3579), 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(584), 25, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -96977,78 +93670,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [31316] = 33, - ACTIONS(4218), 1, + [30555] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5972), 1, + ACTIONS(5876), 1, aux_sym__prose_punctuation_token1, - STATE(3110), 1, + STATE(2677), 1, sym__line, - ACTIONS(5970), 6, + STATE(3580), 1, + sym__inlines, + ACTIONS(5874), 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(567), 25, + STATE(617), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97073,78 +93766,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [31445] = 33, - ACTIONS(5340), 1, + [30684] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(5980), 1, + ACTIONS(5880), 1, aux_sym__prose_punctuation_token1, - STATE(3197), 1, + STATE(2642), 1, sym__line, - ACTIONS(5978), 6, + STATE(3581), 1, + sym__inlines, + ACTIONS(5878), 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(606), 25, + STATE(620), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97169,78 +93862,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [31574] = 33, - ACTIONS(4912), 1, + [30813] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5976), 1, + ACTIONS(5864), 1, aux_sym__prose_punctuation_token1, - STATE(3273), 1, + STATE(2633), 1, sym__line, - ACTIONS(5974), 6, + STATE(3582), 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(597), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97265,78 +93958,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [31703] = 33, - ACTIONS(9), 1, + [30942] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(23), 1, + ACTIONS(3109), 1, aux_sym__prose_punctuation_token1, - ACTIONS(25), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(69), 1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(71), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(73), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(75), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(77), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(79), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(81), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(83), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(85), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(87), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(91), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(93), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(95), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(97), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(99), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(101), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(103), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(107), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(109), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - STATE(2816), 1, + STATE(2561), 1, + sym__inlines, + STATE(2576), 1, sym__line, - ACTIONS(7), 6, + ACTIONS(3093), 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(417), 25, + STATE(627), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97361,78 +94054,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [31832] = 33, - ACTIONS(4382), 1, + [31071] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(4404), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(4406), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(4408), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(4410), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(4412), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(4414), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(4416), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(4418), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(4420), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(4426), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(4428), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(4430), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(4432), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(4434), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(4436), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(4438), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(4442), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(5988), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - STATE(3179), 1, + STATE(2708), 1, sym__line, - ACTIONS(5986), 6, + STATE(3790), 1, + sym__inlines, + ACTIONS(5866), 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(576), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97457,78 +94150,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [31961] = 33, - ACTIONS(5176), 1, + [31200] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5178), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(5182), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(5968), 1, + ACTIONS(5884), 1, aux_sym__prose_punctuation_token1, - STATE(3286), 1, + STATE(2692), 1, sym__line, - ACTIONS(5966), 6, + STATE(3804), 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(603), 25, + STATE(640), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97553,78 +94246,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [32090] = 33, - ACTIONS(5504), 1, + [31329] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(5984), 1, + ACTIONS(5888), 1, aux_sym__prose_punctuation_token1, - STATE(3220), 1, + STATE(2644), 1, sym__line, - ACTIONS(5982), 6, + STATE(3810), 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(609), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97649,78 +94342,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [32219] = 33, - ACTIONS(2061), 1, + [31458] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(2065), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(2069), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(2071), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2073), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(2075), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(2077), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(2079), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2081), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2087), 1, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(2089), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(2091), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(2093), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(2095), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(2097), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(2099), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(2101), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(2103), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(2105), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2107), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2109), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(2111), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(2113), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(2115), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(2117), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(2119), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(2121), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(2123), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2125), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(2127), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - STATE(3011), 1, + ACTIONS(5872), 1, + aux_sym__prose_punctuation_token1, + STATE(2717), 1, sym__line, - ACTIONS(2059), 6, + STATE(3814), 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(402), 25, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97745,78 +94438,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [32348] = 33, - ACTIONS(3982), 1, + [31587] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(5684), 1, + ACTIONS(5876), 1, aux_sym__prose_punctuation_token1, - STATE(3113), 1, + STATE(2677), 1, sym__line, - ACTIONS(5682), 6, + STATE(3815), 1, + sym__inlines, + ACTIONS(5874), 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(529), 25, + STATE(617), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -97841,174 +94534,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [32477] = 33, - ACTIONS(2899), 1, + [31716] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(2913), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - STATE(2803), 1, - sym__line, - ACTIONS(2897), 6, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym_entity_reference, - sym_numeric_character_reference, - STATE(590), 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, - sym_pandoc_line_break, - [32606] = 33, - ACTIONS(2483), 1, - anon_sym_LBRACK, - ACTIONS(2485), 1, - anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, - anon_sym_DOLLAR, - ACTIONS(2489), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, - anon_sym_LBRACE, - ACTIONS(2495), 1, - aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, - anon_sym_PIPE, - ACTIONS(2499), 1, + ACTIONS(5880), 1, aux_sym__prose_punctuation_token1, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, - sym__code_span_start, - ACTIONS(2509), 1, - sym__highlight_span_start, - ACTIONS(2511), 1, - sym__insert_span_start, - ACTIONS(2513), 1, - sym__delete_span_start, - ACTIONS(2515), 1, - sym__edit_comment_span_start, - ACTIONS(2517), 1, - sym__single_quote_span_open, - ACTIONS(2519), 1, - sym__double_quote_span_open, - ACTIONS(2521), 1, - sym__shortcode_open_escaped, - ACTIONS(2523), 1, - sym__shortcode_open, - ACTIONS(2525), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, - sym__cite_author_in_text, - ACTIONS(2531), 1, - sym__cite_suppress_author, - ACTIONS(2533), 1, - sym__strikeout_open, - ACTIONS(2535), 1, - sym__subscript_open, - ACTIONS(2537), 1, - sym__superscript_open, - ACTIONS(2539), 1, - sym__inline_note_start_token, - ACTIONS(2541), 1, - sym__strong_emphasis_open_star, - ACTIONS(2543), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, - sym__emphasis_open_star, - ACTIONS(2547), 1, - sym__emphasis_open_underscore, - STATE(3180), 1, + STATE(2642), 1, sym__line, - ACTIONS(2481), 6, + STATE(3816), 1, + sym__inlines, + ACTIONS(5878), 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(522), 25, + STATE(620), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98033,78 +94630,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [32735] = 33, - ACTIONS(4050), 1, + [31845] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(5668), 1, + ACTIONS(5864), 1, aux_sym__prose_punctuation_token1, - STATE(3160), 1, + STATE(2633), 1, sym__line, - ACTIONS(5666), 6, + STATE(3820), 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(557), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98129,170 +94726,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [32864] = 32, - ACTIONS(4382), 1, + [31974] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(4386), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(4388), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(4392), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(4394), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(4398), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4402), 1, - sym__code_span_start, - ACTIONS(4404), 1, - sym__highlight_span_start, - ACTIONS(4406), 1, - sym__insert_span_start, - ACTIONS(4408), 1, - sym__delete_span_start, - ACTIONS(4410), 1, - sym__edit_comment_span_start, - ACTIONS(4412), 1, - sym__single_quote_span_open, - ACTIONS(4414), 1, - sym__double_quote_span_open, - ACTIONS(4416), 1, - sym__shortcode_open_escaped, - ACTIONS(4418), 1, - sym__shortcode_open, - ACTIONS(4420), 1, - sym__cite_author_in_text_with_open_bracket, - ACTIONS(4422), 1, - sym__cite_suppress_author_with_open_bracket, - ACTIONS(4424), 1, - sym__cite_author_in_text, - ACTIONS(4426), 1, - sym__cite_suppress_author, - ACTIONS(4428), 1, - sym__strikeout_open, - ACTIONS(4430), 1, - sym__subscript_open, - ACTIONS(4432), 1, - sym__superscript_open, - ACTIONS(4434), 1, - sym__inline_note_start_token, - ACTIONS(4436), 1, - sym__strong_emphasis_open_star, - ACTIONS(4438), 1, - sym__strong_emphasis_open_underscore, - ACTIONS(4440), 1, - sym__emphasis_open_star, - ACTIONS(4442), 1, - sym__emphasis_open_underscore, - ACTIONS(5996), 1, + ACTIONS(3109), 1, aux_sym__prose_punctuation_token1, - ACTIONS(5994), 6, - sym__html_comment, - sym__autolink, - sym_inline_note_reference, - sym_html_element, - sym_entity_reference, - sym_numeric_character_reference, - STATE(2249), 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, - sym_pandoc_line_break, - [32990] = 32, - ACTIONS(5176), 1, - anon_sym_LBRACK, - ACTIONS(5178), 1, - anon_sym_BANG_LBRACK, - ACTIONS(5180), 1, - anon_sym_DOLLAR, - ACTIONS(5182), 1, - anon_sym_DOLLAR_DOLLAR, - ACTIONS(5184), 1, - anon_sym_LBRACE, - ACTIONS(5186), 1, - aux_sym_pandoc_str_token1, - ACTIONS(5188), 1, - anon_sym_PIPE, - ACTIONS(5192), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5196), 1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(5198), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(5200), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(5202), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(5204), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(5206), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(5208), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(5210), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(5212), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(5214), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5216), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5218), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(5220), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(5222), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(5224), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(5226), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(5228), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(5230), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(5232), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5234), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(5236), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(6000), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(5998), 6, + 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1952), 25, + STATE(627), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98317,76 +94822,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [33116] = 32, - ACTIONS(4218), 1, + [32103] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(4220), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(4222), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(4224), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4226), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(4228), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(4230), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(4234), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4238), 1, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(4240), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(4242), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(4244), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(4246), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(4248), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(4250), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(4252), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(4254), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(4256), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4258), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4260), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(4262), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(4264), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(4266), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(4268), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(4270), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(4272), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(4274), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4276), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(4278), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(6004), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - ACTIONS(6002), 6, + 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2162), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98411,76 +94918,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [33242] = 32, - ACTIONS(5340), 1, + [32232] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(5342), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(5344), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(5346), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5348), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(5350), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(5352), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(5356), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5360), 1, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(5362), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(5364), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(5366), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(5368), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(5370), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(5372), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(5374), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(5376), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(5378), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5380), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5382), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(5384), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(5386), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(5388), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(5390), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(5392), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(5394), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(5396), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5398), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(5400), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(6008), 1, + ACTIONS(5884), 1, aux_sym__prose_punctuation_token1, - ACTIONS(6006), 6, + 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2250), 25, + STATE(640), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98505,76 +95014,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [33368] = 32, - ACTIONS(4912), 1, + [32361] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(4914), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(4916), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(4918), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4920), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(4922), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(4924), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(4928), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4932), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(4934), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(4936), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(4938), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(4940), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(4942), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(4944), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(4946), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(4948), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(4950), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4952), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4954), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(4956), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(4958), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(4960), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(4962), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(4964), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(4966), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(4968), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4970), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(4972), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(6012), 1, + ACTIONS(5888), 1, aux_sym__prose_punctuation_token1, - ACTIONS(6010), 6, + 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1778), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98599,76 +95110,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [33494] = 32, - ACTIONS(4050), 1, + [32490] = 33, + ACTIONS(4019), 1, anon_sym_LBRACK, - ACTIONS(4052), 1, + ACTIONS(4021), 1, anon_sym_BANG_LBRACK, - ACTIONS(4054), 1, + ACTIONS(4023), 1, anon_sym_DOLLAR, - ACTIONS(4056), 1, + ACTIONS(4025), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4058), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - ACTIONS(4060), 1, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - ACTIONS(4062), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4066), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4070), 1, + ACTIONS(4037), 1, sym__code_span_start, - ACTIONS(4072), 1, + ACTIONS(4039), 1, sym__highlight_span_start, - ACTIONS(4074), 1, + ACTIONS(4041), 1, sym__insert_span_start, - ACTIONS(4076), 1, + ACTIONS(4043), 1, sym__delete_span_start, - ACTIONS(4078), 1, + ACTIONS(4045), 1, sym__edit_comment_span_start, - ACTIONS(4080), 1, + ACTIONS(4047), 1, sym__single_quote_span_open, - ACTIONS(4082), 1, + ACTIONS(4049), 1, sym__double_quote_span_open, - ACTIONS(4084), 1, + ACTIONS(4051), 1, sym__shortcode_open_escaped, - ACTIONS(4086), 1, + ACTIONS(4053), 1, sym__shortcode_open, - ACTIONS(4088), 1, + ACTIONS(4055), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4090), 1, + ACTIONS(4057), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4092), 1, + ACTIONS(4059), 1, sym__cite_author_in_text, - ACTIONS(4094), 1, + ACTIONS(4061), 1, sym__cite_suppress_author, - ACTIONS(4096), 1, + ACTIONS(4063), 1, sym__strikeout_open, - ACTIONS(4098), 1, + ACTIONS(4065), 1, sym__subscript_open, - ACTIONS(4100), 1, + ACTIONS(4067), 1, sym__superscript_open, - ACTIONS(4102), 1, + ACTIONS(4069), 1, sym__inline_note_start_token, - ACTIONS(4104), 1, + ACTIONS(4071), 1, sym__strong_emphasis_open_star, - ACTIONS(4106), 1, + ACTIONS(4073), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4108), 1, + ACTIONS(4075), 1, sym__emphasis_open_star, - ACTIONS(4110), 1, + ACTIONS(4077), 1, sym__emphasis_open_underscore, - ACTIONS(6016), 1, + ACTIONS(5872), 1, aux_sym__prose_punctuation_token1, - ACTIONS(6014), 6, + 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2074), 25, + STATE(614), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98693,76 +95206,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [33620] = 32, - ACTIONS(4546), 1, + [32619] = 33, + ACTIONS(4178), 1, anon_sym_LBRACK, - ACTIONS(4548), 1, + ACTIONS(4180), 1, anon_sym_BANG_LBRACK, - ACTIONS(4550), 1, + ACTIONS(4182), 1, anon_sym_DOLLAR, - ACTIONS(4552), 1, + ACTIONS(4184), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(4554), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - ACTIONS(4558), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4562), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4566), 1, + ACTIONS(4196), 1, sym__code_span_start, - ACTIONS(4568), 1, + ACTIONS(4198), 1, sym__highlight_span_start, - ACTIONS(4570), 1, + ACTIONS(4200), 1, sym__insert_span_start, - ACTIONS(4572), 1, + ACTIONS(4202), 1, sym__delete_span_start, - ACTIONS(4574), 1, + ACTIONS(4204), 1, sym__edit_comment_span_start, - ACTIONS(4576), 1, + ACTIONS(4206), 1, sym__single_quote_span_open, - ACTIONS(4578), 1, + ACTIONS(4208), 1, sym__double_quote_span_open, - ACTIONS(4580), 1, + ACTIONS(4210), 1, sym__shortcode_open_escaped, - ACTIONS(4582), 1, + ACTIONS(4212), 1, sym__shortcode_open, - ACTIONS(4584), 1, + ACTIONS(4214), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4586), 1, + ACTIONS(4216), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4588), 1, + ACTIONS(4218), 1, sym__cite_author_in_text, - ACTIONS(4590), 1, + ACTIONS(4220), 1, sym__cite_suppress_author, - ACTIONS(4592), 1, + ACTIONS(4222), 1, sym__strikeout_open, - ACTIONS(4594), 1, + ACTIONS(4224), 1, sym__subscript_open, - ACTIONS(4596), 1, + ACTIONS(4226), 1, sym__superscript_open, - ACTIONS(4598), 1, + ACTIONS(4228), 1, sym__inline_note_start_token, - ACTIONS(4600), 1, + ACTIONS(4230), 1, sym__strong_emphasis_open_star, - ACTIONS(4602), 1, + ACTIONS(4232), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4604), 1, + ACTIONS(4234), 1, sym__emphasis_open_star, - ACTIONS(4606), 1, + ACTIONS(4236), 1, sym__emphasis_open_underscore, - ACTIONS(6020), 1, + ACTIONS(5876), 1, aux_sym__prose_punctuation_token1, - ACTIONS(6018), 6, + 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1735), 25, + STATE(617), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98787,76 +95302,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [33746] = 32, - ACTIONS(5504), 1, + [32748] = 33, + ACTIONS(4337), 1, anon_sym_LBRACK, - ACTIONS(5506), 1, + ACTIONS(4339), 1, anon_sym_BANG_LBRACK, - ACTIONS(5508), 1, + ACTIONS(4341), 1, anon_sym_DOLLAR, - ACTIONS(5510), 1, + ACTIONS(4343), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(5512), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - ACTIONS(5514), 1, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - ACTIONS(5516), 1, + ACTIONS(4349), 1, anon_sym_PIPE, - ACTIONS(5520), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(5524), 1, + ACTIONS(4355), 1, sym__code_span_start, - ACTIONS(5526), 1, + ACTIONS(4357), 1, sym__highlight_span_start, - ACTIONS(5528), 1, + ACTIONS(4359), 1, sym__insert_span_start, - ACTIONS(5530), 1, + ACTIONS(4361), 1, sym__delete_span_start, - ACTIONS(5532), 1, + ACTIONS(4363), 1, sym__edit_comment_span_start, - ACTIONS(5534), 1, + ACTIONS(4365), 1, sym__single_quote_span_open, - ACTIONS(5536), 1, + ACTIONS(4367), 1, sym__double_quote_span_open, - ACTIONS(5538), 1, + ACTIONS(4369), 1, sym__shortcode_open_escaped, - ACTIONS(5540), 1, + ACTIONS(4371), 1, sym__shortcode_open, - ACTIONS(5542), 1, + ACTIONS(4373), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(5544), 1, + ACTIONS(4375), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(5546), 1, + ACTIONS(4377), 1, sym__cite_author_in_text, - ACTIONS(5548), 1, + ACTIONS(4379), 1, sym__cite_suppress_author, - ACTIONS(5550), 1, + ACTIONS(4381), 1, sym__strikeout_open, - ACTIONS(5552), 1, + ACTIONS(4383), 1, sym__subscript_open, - ACTIONS(5554), 1, + ACTIONS(4385), 1, sym__superscript_open, - ACTIONS(5556), 1, + ACTIONS(4387), 1, sym__inline_note_start_token, - ACTIONS(5558), 1, + ACTIONS(4389), 1, sym__strong_emphasis_open_star, - ACTIONS(5560), 1, + ACTIONS(4391), 1, sym__strong_emphasis_open_underscore, - ACTIONS(5562), 1, + ACTIONS(4393), 1, sym__emphasis_open_star, - ACTIONS(5564), 1, + ACTIONS(4395), 1, sym__emphasis_open_underscore, - ACTIONS(6024), 1, + ACTIONS(5880), 1, aux_sym__prose_punctuation_token1, - ACTIONS(6022), 6, + 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1579), 25, + STATE(620), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98881,76 +95398,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [33872] = 32, - ACTIONS(9), 1, + [32877] = 33, + ACTIONS(4768), 1, anon_sym_LBRACK, - ACTIONS(11), 1, + ACTIONS(4770), 1, anon_sym_BANG_LBRACK, - ACTIONS(13), 1, + ACTIONS(4772), 1, anon_sym_DOLLAR, - ACTIONS(15), 1, + ACTIONS(4774), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(17), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(19), 1, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - ACTIONS(21), 1, + ACTIONS(4780), 1, anon_sym_PIPE, - ACTIONS(25), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(69), 1, + ACTIONS(4786), 1, sym__code_span_start, - ACTIONS(71), 1, + ACTIONS(4788), 1, sym__highlight_span_start, - ACTIONS(73), 1, + ACTIONS(4790), 1, sym__insert_span_start, - ACTIONS(75), 1, + ACTIONS(4792), 1, sym__delete_span_start, - ACTIONS(77), 1, + ACTIONS(4794), 1, sym__edit_comment_span_start, - ACTIONS(79), 1, + ACTIONS(4796), 1, sym__single_quote_span_open, - ACTIONS(81), 1, + ACTIONS(4798), 1, sym__double_quote_span_open, - ACTIONS(83), 1, + ACTIONS(4800), 1, sym__shortcode_open_escaped, - ACTIONS(85), 1, + ACTIONS(4802), 1, sym__shortcode_open, - ACTIONS(87), 1, + ACTIONS(4804), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(89), 1, + ACTIONS(4806), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(91), 1, + ACTIONS(4808), 1, sym__cite_author_in_text, - ACTIONS(93), 1, + ACTIONS(4810), 1, sym__cite_suppress_author, - ACTIONS(95), 1, + ACTIONS(4812), 1, sym__strikeout_open, - ACTIONS(97), 1, + ACTIONS(4814), 1, sym__subscript_open, - ACTIONS(99), 1, + ACTIONS(4816), 1, sym__superscript_open, - ACTIONS(101), 1, + ACTIONS(4818), 1, sym__inline_note_start_token, - ACTIONS(103), 1, + ACTIONS(4820), 1, sym__strong_emphasis_open_star, - ACTIONS(105), 1, + ACTIONS(4822), 1, sym__strong_emphasis_open_underscore, - ACTIONS(107), 1, + ACTIONS(4824), 1, sym__emphasis_open_star, - ACTIONS(109), 1, + ACTIONS(4826), 1, sym__emphasis_open_underscore, - ACTIONS(6028), 1, + ACTIONS(5864), 1, aux_sym__prose_punctuation_token1, - ACTIONS(6026), 6, + 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1415), 25, + STATE(646), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -98975,76 +95494,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [33998] = 32, - ACTIONS(2061), 1, + [33006] = 33, + ACTIONS(3095), 1, anon_sym_LBRACK, - ACTIONS(2065), 1, + ACTIONS(3097), 1, anon_sym_BANG_LBRACK, - ACTIONS(2069), 1, + ACTIONS(3099), 1, anon_sym_DOLLAR, - ACTIONS(2071), 1, + ACTIONS(3101), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2073), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - ACTIONS(2075), 1, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - ACTIONS(2077), 1, + ACTIONS(3107), 1, anon_sym_PIPE, - ACTIONS(2081), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2087), 1, + ACTIONS(3109), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(3113), 1, sym__code_span_start, - ACTIONS(2089), 1, + ACTIONS(3115), 1, sym__highlight_span_start, - ACTIONS(2091), 1, + ACTIONS(3117), 1, sym__insert_span_start, - ACTIONS(2093), 1, + ACTIONS(3119), 1, sym__delete_span_start, - ACTIONS(2095), 1, + ACTIONS(3121), 1, sym__edit_comment_span_start, - ACTIONS(2097), 1, + ACTIONS(3123), 1, sym__single_quote_span_open, - ACTIONS(2099), 1, + ACTIONS(3125), 1, sym__double_quote_span_open, - ACTIONS(2101), 1, + ACTIONS(3127), 1, sym__shortcode_open_escaped, - ACTIONS(2103), 1, + ACTIONS(3129), 1, sym__shortcode_open, - ACTIONS(2105), 1, + ACTIONS(3131), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2107), 1, + ACTIONS(3133), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2109), 1, + ACTIONS(3135), 1, sym__cite_author_in_text, - ACTIONS(2111), 1, + ACTIONS(3137), 1, sym__cite_suppress_author, - ACTIONS(2113), 1, + ACTIONS(3139), 1, sym__strikeout_open, - ACTIONS(2115), 1, + ACTIONS(3141), 1, sym__subscript_open, - ACTIONS(2117), 1, + ACTIONS(3143), 1, sym__superscript_open, - ACTIONS(2119), 1, + ACTIONS(3145), 1, sym__inline_note_start_token, - ACTIONS(2121), 1, + ACTIONS(3147), 1, sym__strong_emphasis_open_star, - ACTIONS(2123), 1, + ACTIONS(3149), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2125), 1, + ACTIONS(3151), 1, sym__emphasis_open_star, - ACTIONS(2127), 1, + ACTIONS(3153), 1, sym__emphasis_open_underscore, - ACTIONS(6032), 1, - aux_sym__prose_punctuation_token1, - ACTIONS(6030), 6, + 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1239), 25, + STATE(627), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99069,76 +95590,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [34124] = 32, - ACTIONS(2483), 1, + [33135] = 33, + ACTIONS(5086), 1, anon_sym_LBRACK, - ACTIONS(2485), 1, + ACTIONS(5088), 1, anon_sym_BANG_LBRACK, - ACTIONS(2487), 1, + ACTIONS(5090), 1, anon_sym_DOLLAR, - ACTIONS(2489), 1, + ACTIONS(5092), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2493), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - ACTIONS(2495), 1, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - ACTIONS(2497), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - ACTIONS(2501), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2507), 1, + ACTIONS(5104), 1, sym__code_span_start, - ACTIONS(2509), 1, + ACTIONS(5106), 1, sym__highlight_span_start, - ACTIONS(2511), 1, + ACTIONS(5108), 1, sym__insert_span_start, - ACTIONS(2513), 1, + ACTIONS(5110), 1, sym__delete_span_start, - ACTIONS(2515), 1, + ACTIONS(5112), 1, sym__edit_comment_span_start, - ACTIONS(2517), 1, + ACTIONS(5114), 1, sym__single_quote_span_open, - ACTIONS(2519), 1, + ACTIONS(5116), 1, sym__double_quote_span_open, - ACTIONS(2521), 1, + ACTIONS(5118), 1, sym__shortcode_open_escaped, - ACTIONS(2523), 1, + ACTIONS(5120), 1, sym__shortcode_open, - ACTIONS(2525), 1, + ACTIONS(5122), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2527), 1, + ACTIONS(5124), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2529), 1, + ACTIONS(5126), 1, sym__cite_author_in_text, - ACTIONS(2531), 1, + ACTIONS(5128), 1, sym__cite_suppress_author, - ACTIONS(2533), 1, + ACTIONS(5130), 1, sym__strikeout_open, - ACTIONS(2535), 1, + ACTIONS(5132), 1, sym__subscript_open, - ACTIONS(2537), 1, + ACTIONS(5134), 1, sym__superscript_open, - ACTIONS(2539), 1, + ACTIONS(5136), 1, sym__inline_note_start_token, - ACTIONS(2541), 1, + ACTIONS(5138), 1, sym__strong_emphasis_open_star, - ACTIONS(2543), 1, + ACTIONS(5140), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2545), 1, + ACTIONS(5142), 1, sym__emphasis_open_star, - ACTIONS(2547), 1, + ACTIONS(5144), 1, sym__emphasis_open_underscore, - ACTIONS(6036), 1, + ACTIONS(5868), 1, aux_sym__prose_punctuation_token1, - ACTIONS(6034), 6, + 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(2023), 25, + STATE(637), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99163,76 +95686,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [34250] = 32, - ACTIONS(3982), 1, + [33264] = 33, + ACTIONS(5245), 1, anon_sym_LBRACK, - ACTIONS(3984), 1, + ACTIONS(5247), 1, anon_sym_BANG_LBRACK, - ACTIONS(3986), 1, + ACTIONS(5249), 1, anon_sym_DOLLAR, - ACTIONS(3988), 1, + ACTIONS(5251), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(3990), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - ACTIONS(3992), 1, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - ACTIONS(3994), 1, + ACTIONS(5257), 1, anon_sym_PIPE, - ACTIONS(3998), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(4002), 1, + ACTIONS(5263), 1, sym__code_span_start, - ACTIONS(4004), 1, + ACTIONS(5265), 1, sym__highlight_span_start, - ACTIONS(4006), 1, + ACTIONS(5267), 1, sym__insert_span_start, - ACTIONS(4008), 1, + ACTIONS(5269), 1, sym__delete_span_start, - ACTIONS(4010), 1, + ACTIONS(5271), 1, sym__edit_comment_span_start, - ACTIONS(4012), 1, + ACTIONS(5273), 1, sym__single_quote_span_open, - ACTIONS(4014), 1, + ACTIONS(5275), 1, sym__double_quote_span_open, - ACTIONS(4016), 1, + ACTIONS(5277), 1, sym__shortcode_open_escaped, - ACTIONS(4018), 1, + ACTIONS(5279), 1, sym__shortcode_open, - ACTIONS(4020), 1, + ACTIONS(5281), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(4022), 1, + ACTIONS(5283), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(4024), 1, + ACTIONS(5285), 1, sym__cite_author_in_text, - ACTIONS(4026), 1, + ACTIONS(5287), 1, sym__cite_suppress_author, - ACTIONS(4028), 1, + ACTIONS(5289), 1, sym__strikeout_open, - ACTIONS(4030), 1, + ACTIONS(5291), 1, sym__subscript_open, - ACTIONS(4032), 1, + ACTIONS(5293), 1, sym__superscript_open, - ACTIONS(4034), 1, + ACTIONS(5295), 1, sym__inline_note_start_token, - ACTIONS(4036), 1, + ACTIONS(5297), 1, sym__strong_emphasis_open_star, - ACTIONS(4038), 1, + ACTIONS(5299), 1, sym__strong_emphasis_open_underscore, - ACTIONS(4040), 1, + ACTIONS(5301), 1, sym__emphasis_open_star, - ACTIONS(4042), 1, + ACTIONS(5303), 1, sym__emphasis_open_underscore, - ACTIONS(6040), 1, + ACTIONS(5884), 1, aux_sym__prose_punctuation_token1, - ACTIONS(6038), 6, + 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1942), 25, + STATE(640), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99257,76 +95782,78 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [34376] = 32, - ACTIONS(2899), 1, + [33393] = 33, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(2901), 1, + ACTIONS(5406), 1, anon_sym_BANG_LBRACK, - ACTIONS(2903), 1, + ACTIONS(5408), 1, anon_sym_DOLLAR, - ACTIONS(2905), 1, + ACTIONS(5410), 1, anon_sym_DOLLAR_DOLLAR, - ACTIONS(2907), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - ACTIONS(2911), 1, + ACTIONS(5416), 1, anon_sym_PIPE, - ACTIONS(2915), 1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2919), 1, + ACTIONS(5422), 1, sym__code_span_start, - ACTIONS(2921), 1, + ACTIONS(5424), 1, sym__highlight_span_start, - ACTIONS(2923), 1, + ACTIONS(5426), 1, sym__insert_span_start, - ACTIONS(2925), 1, + ACTIONS(5428), 1, sym__delete_span_start, - ACTIONS(2927), 1, + ACTIONS(5430), 1, sym__edit_comment_span_start, - ACTIONS(2929), 1, + ACTIONS(5432), 1, sym__single_quote_span_open, - ACTIONS(2931), 1, + ACTIONS(5434), 1, sym__double_quote_span_open, - ACTIONS(2933), 1, + ACTIONS(5436), 1, sym__shortcode_open_escaped, - ACTIONS(2935), 1, + ACTIONS(5438), 1, sym__shortcode_open, - ACTIONS(2937), 1, + ACTIONS(5440), 1, sym__cite_author_in_text_with_open_bracket, - ACTIONS(2939), 1, + ACTIONS(5442), 1, sym__cite_suppress_author_with_open_bracket, - ACTIONS(2941), 1, + ACTIONS(5444), 1, sym__cite_author_in_text, - ACTIONS(2943), 1, + ACTIONS(5446), 1, sym__cite_suppress_author, - ACTIONS(2945), 1, + ACTIONS(5448), 1, sym__strikeout_open, - ACTIONS(2947), 1, + ACTIONS(5450), 1, sym__subscript_open, - ACTIONS(2949), 1, + ACTIONS(5452), 1, sym__superscript_open, - ACTIONS(2951), 1, + ACTIONS(5454), 1, sym__inline_note_start_token, - ACTIONS(2953), 1, + ACTIONS(5456), 1, sym__strong_emphasis_open_star, - ACTIONS(2955), 1, + ACTIONS(5458), 1, sym__strong_emphasis_open_underscore, - ACTIONS(2957), 1, + ACTIONS(5460), 1, sym__emphasis_open_star, - ACTIONS(2959), 1, + ACTIONS(5462), 1, sym__emphasis_open_underscore, - ACTIONS(6044), 1, + ACTIONS(5888), 1, aux_sym__prose_punctuation_token1, - ACTIONS(6042), 6, + 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, - STATE(1571), 25, + STATE(643), 24, sym_pandoc_span, sym_pandoc_image, sym_pandoc_math, @@ -99351,1773 +95878,3584 @@ static const uint16_t ts_small_parse_table[] = { sym_pandoc_strong, sym_pandoc_str, sym__prose_punctuation, - sym_pandoc_line_break, - [34502] = 3, - ACTIONS(6050), 1, - sym_block_continuation, - ACTIONS(6048), 4, + [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, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6046), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4031), 1, + anon_sym_PIPE, + ACTIONS(4037), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4039), 1, 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, - anon_sym_COLON, + 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, - anon_sym_PIPE, - sym__whitespace, - [34552] = 4, - ACTIONS(2001), 1, - anon_sym_LBRACE, - STATE(994), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 4, - anon_sym_DOLLAR, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6052), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4196), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4198), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [34603] = 4, - ACTIONS(2001), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1038), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 4, - anon_sym_DOLLAR, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6056), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4349), 1, + anon_sym_PIPE, + ACTIONS(4355), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4357), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [34654] = 4, - ACTIONS(2001), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(957), 1, - sym__pandoc_attr_specifier, - ACTIONS(6062), 4, - anon_sym_DOLLAR, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6060), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4780), 1, + anon_sym_PIPE, + ACTIONS(4786), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4788), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [34705] = 4, - ACTIONS(2001), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1004), 1, - sym__pandoc_attr_specifier, - ACTIONS(6066), 4, - anon_sym_DOLLAR, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, + ACTIONS(3107), 1, + anon_sym_PIPE, + ACTIONS(3109), 1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6064), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(3113), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(3115), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [34756] = 4, - ACTIONS(2001), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(971), 1, - sym__pandoc_attr_specifier, - ACTIONS(6070), 4, - anon_sym_DOLLAR, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5104), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(5106), 1, 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, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [34807] = 3, - ACTIONS(6072), 1, - sym_block_continuation, - ACTIONS(3159), 4, + 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, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3157), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5263), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(5265), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [34856] = 3, - ACTIONS(6074), 1, - sym_block_continuation, - ACTIONS(6048), 4, - anon_sym_DOLLAR, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6046), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5416), 1, + anon_sym_PIPE, + ACTIONS(5422), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(5424), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [34905] = 4, - ACTIONS(2001), 1, - anon_sym_LBRACE, - STATE(1049), 1, - sym__pandoc_attr_specifier, - ACTIONS(6078), 4, - anon_sym_DOLLAR, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6076), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4031), 1, + anon_sym_PIPE, + ACTIONS(4037), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4039), 1, 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, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [34956] = 4, - ACTIONS(2001), 1, - anon_sym_LBRACE, - STATE(1035), 1, - sym__pandoc_attr_specifier, - ACTIONS(6082), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6080), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + 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__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4198), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [35007] = 4, - ACTIONS(2001), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(937), 1, - sym__pandoc_attr_specifier, - ACTIONS(6086), 4, - anon_sym_DOLLAR, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6084), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4349), 1, + anon_sym_PIPE, + ACTIONS(4355), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4357), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [35058] = 4, - ACTIONS(6092), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(999), 1, - sym_attribute_specifier, - ACTIONS(6090), 4, - anon_sym_DOLLAR, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6088), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5263), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(5265), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [35109] = 4, - ACTIONS(2001), 1, + ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(943), 1, - sym__pandoc_attr_specifier, - ACTIONS(6096), 4, - anon_sym_DOLLAR, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2461), 1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6094), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(2467), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + 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, + 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, - anon_sym_PIPE, - sym__whitespace, - [35160] = 4, - ACTIONS(2001), 1, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(1050), 1, - sym__pandoc_attr_specifier, - ACTIONS(6100), 4, - anon_sym_DOLLAR, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6098), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4607), 1, + anon_sym_PIPE, + ACTIONS(4613), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4615), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [35211] = 4, - ACTIONS(2001), 1, + ACTIONS(4935), 1, anon_sym_LBRACE, - STATE(976), 1, - sym__pandoc_attr_specifier, - ACTIONS(6104), 4, - anon_sym_DOLLAR, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6102), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4939), 1, + anon_sym_PIPE, + ACTIONS(4945), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4947), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [35262] = 4, - ACTIONS(2001), 1, + ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(993), 1, - sym__pandoc_attr_specifier, - ACTIONS(6108), 4, - anon_sym_DOLLAR, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5104), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(5106), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [35313] = 4, - ACTIONS(2001), 1, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(983), 1, - sym__pandoc_attr_specifier, - ACTIONS(6112), 4, - anon_sym_DOLLAR, + ACTIONS(5255), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6110), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5263), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(5265), 1, 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__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, + [35700] = 32, + 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, - anon_sym_PIPE, - sym__whitespace, - [35364] = 4, - ACTIONS(2001), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(1001), 1, - sym__pandoc_attr_specifier, - ACTIONS(6116), 4, - anon_sym_DOLLAR, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6114), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5416), 1, + anon_sym_PIPE, + ACTIONS(5422), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(5424), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [35415] = 4, - ACTIONS(2001), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1005), 1, - sym__pandoc_attr_specifier, - ACTIONS(6120), 4, - anon_sym_DOLLAR, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, + ACTIONS(3107), 1, + anon_sym_PIPE, + ACTIONS(3109), 1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6118), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(3113), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(3115), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [35466] = 4, - ACTIONS(2001), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - STATE(1008), 1, - sym__pandoc_attr_specifier, - ACTIONS(6124), 4, - anon_sym_DOLLAR, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6122), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4031), 1, + anon_sym_PIPE, + ACTIONS(4037), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4039), 1, 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, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [35517] = 4, - ACTIONS(2001), 1, - anon_sym_LBRACE, - STATE(1023), 1, - sym__pandoc_attr_specifier, - ACTIONS(6128), 4, - anon_sym_DOLLAR, + 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, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(67), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + 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(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, - anon_sym_PIPE, - sym__whitespace, - [35568] = 4, - ACTIONS(2001), 1, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(986), 1, - sym__pandoc_attr_specifier, - ACTIONS(6132), 4, - anon_sym_DOLLAR, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6130), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4196), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4198), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [35619] = 4, - ACTIONS(2001), 1, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(970), 1, - sym__pandoc_attr_specifier, - ACTIONS(6136), 4, - anon_sym_DOLLAR, + ACTIONS(4347), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6134), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4349), 1, + anon_sym_PIPE, + ACTIONS(4355), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4357), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [35670] = 4, - ACTIONS(2001), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(945), 1, - sym__pandoc_attr_specifier, - ACTIONS(6140), 4, - anon_sym_DOLLAR, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6138), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4780), 1, + anon_sym_PIPE, + ACTIONS(4786), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4788), 1, 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, - anon_sym_PIPE, - sym__whitespace, - [35721] = 4, - ACTIONS(2001), 1, + ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(940), 1, - sym__pandoc_attr_specifier, - ACTIONS(6144), 4, - anon_sym_DOLLAR, + ACTIONS(2050), 1, aux_sym_pandoc_str_token1, + ACTIONS(2052), 1, + anon_sym_PIPE, + ACTIONS(2054), 1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6142), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(2060), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(2062), 1, 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__pipe_table_delimiter, + 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, - anon_sym_PIPE, - sym__whitespace, - [35772] = 4, - ACTIONS(2001), 1, + ACTIONS(4027), 1, anon_sym_LBRACE, - STATE(1014), 1, - sym__pandoc_attr_specifier, - ACTIONS(6148), 4, - anon_sym_DOLLAR, + ACTIONS(4029), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6146), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4031), 1, + anon_sym_PIPE, + ACTIONS(4037), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4039), 1, 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__pipe_table_delimiter, + 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, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [35823] = 2, - ACTIONS(6152), 4, + 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, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6150), 38, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5257), 1, + anon_sym_PIPE, + ACTIONS(5263), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(5265), 1, 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__pipe_table_delimiter, - anon_sym_COLON, + 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_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [35870] = 4, - ACTIONS(2001), 1, - anon_sym_LBRACE, - STATE(987), 1, - sym__pandoc_attr_specifier, - ACTIONS(6156), 4, - anon_sym_DOLLAR, + ACTIONS(2050), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6154), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(2052), 1, + anon_sym_PIPE, + ACTIONS(2060), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(2062), 1, 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__pipe_table_delimiter, + 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, - anon_sym_PIPE, - sym__whitespace, - [35921] = 4, - ACTIONS(2001), 1, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(1051), 1, - sym__pandoc_attr_specifier, - ACTIONS(6160), 4, - anon_sym_DOLLAR, + ACTIONS(5414), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6158), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5416), 1, + anon_sym_PIPE, + ACTIONS(5422), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(5424), 1, 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__pipe_table_delimiter, + 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, - anon_sym_PIPE, - sym__whitespace, - [35972] = 4, - ACTIONS(2073), 1, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1278), 1, - sym__pandoc_attr_specifier, - ACTIONS(6120), 6, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, + ACTIONS(3105), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6118), 33, - sym__soft_line_ending, + ACTIONS(3107), 1, + anon_sym_PIPE, + ACTIONS(3113), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(3115), 1, 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, - aux_sym_target_token1, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [36022] = 2, - ACTIONS(6164), 4, + 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, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6162), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(21), 1, + anon_sym_PIPE, + ACTIONS(67), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + 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(5912), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5910), 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(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_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [36068] = 2, - ACTIONS(6168), 4, - anon_sym_DOLLAR, + ACTIONS(4937), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6166), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4939), 1, + anon_sym_PIPE, + ACTIONS(4945), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4947), 1, 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__pipe_table_delimiter, + 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_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [36114] = 4, - ACTIONS(2073), 1, - anon_sym_LBRACE, - STATE(1303), 1, - sym__pandoc_attr_specifier, - ACTIONS(6140), 6, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, + ACTIONS(4188), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6138), 33, - sym__soft_line_ending, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4196), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4198), 1, 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, - aux_sym_target_token1, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - [36164] = 2, - ACTIONS(6172), 4, + 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, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6170), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4349), 1, + anon_sym_PIPE, + ACTIONS(4355), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4357), 1, 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__pipe_table_delimiter, + 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_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [36210] = 2, - ACTIONS(6176), 4, - anon_sym_DOLLAR, + ACTIONS(4778), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6174), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4780), 1, + anon_sym_PIPE, + ACTIONS(4786), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4788), 1, 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__pipe_table_delimiter, + 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_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [36256] = 2, - ACTIONS(6180), 4, - anon_sym_DOLLAR, + ACTIONS(5096), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6178), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(5098), 1, + anon_sym_PIPE, + ACTIONS(5104), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(5106), 1, 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__pipe_table_delimiter, + 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_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [36302] = 2, - ACTIONS(6184), 4, - anon_sym_DOLLAR, + ACTIONS(2457), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6182), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(2459), 1, + anon_sym_PIPE, + ACTIONS(2467), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + 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(5936), 1, + aux_sym__prose_punctuation_token1, + ACTIONS(5934), 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(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_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [36348] = 2, - ACTIONS(6188), 4, - anon_sym_DOLLAR, + ACTIONS(4605), 1, aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6186), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(4607), 1, + anon_sym_PIPE, + ACTIONS(4613), 1, sym__code_span_start, - sym__html_comment, - sym__autolink, + ACTIONS(4615), 1, 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__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, - [36394] = 2, - ACTIONS(6192), 4, + 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, + sym__pandoc_attr_specifier, + sym__inline_element, + sym_shortcode_escaped, + sym_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, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6190), 37, + ACTIONS(5942), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101147,6 +99485,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101155,13 +99495,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [36440] = 2, - ACTIONS(6196), 4, + [38357] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(999), 1, + sym__pandoc_attr_specifier, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6194), 37, + ACTIONS(5948), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101191,21 +99534,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [36486] = 2, - ACTIONS(6200), 4, + [38408] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(970), 1, + sym__pandoc_attr_specifier, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6198), 37, + ACTIONS(5952), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101235,21 +99581,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [36532] = 2, - ACTIONS(6204), 4, + [38459] = 4, + ACTIONS(5960), 1, + anon_sym_LBRACE, + STATE(986), 1, + sym_attribute_specifier, + ACTIONS(5958), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6202), 37, + ACTIONS(5956), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101279,21 +99628,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [36578] = 2, - ACTIONS(6208), 4, + [38510] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(987), 1, + sym__pandoc_attr_specifier, + ACTIONS(5964), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6206), 37, + ACTIONS(5962), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101323,21 +99675,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [36624] = 2, - ACTIONS(6212), 4, + [38561] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(968), 1, + sym__pandoc_attr_specifier, + ACTIONS(5968), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6210), 37, + ACTIONS(5966), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101367,21 +99722,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [36670] = 2, - ACTIONS(6216), 4, + [38612] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(971), 1, + sym__pandoc_attr_specifier, + ACTIONS(5972), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6214), 37, + ACTIONS(5970), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101411,21 +99769,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [36716] = 2, - ACTIONS(6220), 4, + [38663] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(1008), 1, + sym__pandoc_attr_specifier, + ACTIONS(5976), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6218), 37, + ACTIONS(5974), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101455,21 +99816,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [36762] = 2, - ACTIONS(6224), 4, + [38714] = 3, + ACTIONS(5978), 1, + sym_block_continuation, + ACTIONS(5944), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6222), 37, + ACTIONS(5942), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101499,6 +99861,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101507,13 +99870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [36808] = 2, - ACTIONS(6228), 4, + [38763] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(969), 1, + sym__pandoc_attr_specifier, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6226), 37, + ACTIONS(5980), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101543,21 +99909,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [36854] = 2, - ACTIONS(6232), 4, + [38814] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(982), 1, + sym__pandoc_attr_specifier, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6230), 37, + ACTIONS(5984), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101587,21 +99956,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [36900] = 2, - ACTIONS(6236), 4, + [38865] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(983), 1, + sym__pandoc_attr_specifier, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6234), 37, + ACTIONS(5988), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101631,21 +100003,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [36946] = 2, - ACTIONS(6240), 4, + [38916] = 2, + ACTIONS(5994), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6238), 37, + ACTIONS(5992), 39, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101675,6 +100046,8 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -101683,13 +100056,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [36992] = 2, - ACTIONS(6244), 4, + [38963] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(988), 1, + sym__pandoc_attr_specifier, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6242), 37, + ACTIONS(5996), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101719,26 +100095,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [37038] = 3, - ACTIONS(6246), 1, - sym_block_continuation, - ACTIONS(3159), 6, - aux_sym_pandoc_span_token1, + [39014] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(989), 1, + sym__pandoc_attr_specifier, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(3157), 34, - sym__soft_line_ending, + ACTIONS(6000), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -101764,21 +100141,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, - [37086] = 2, - ACTIONS(6250), 4, + sym__whitespace, + [39065] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(990), 1, + sym__pandoc_attr_specifier, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6248), 37, + ACTIONS(6004), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101808,21 +100189,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [37132] = 2, - ACTIONS(6254), 4, + [39116] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(1046), 1, + sym__pandoc_attr_specifier, + ACTIONS(6010), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6252), 37, + ACTIONS(6008), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101852,21 +100236,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [37178] = 2, - ACTIONS(6258), 4, + [39167] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(992), 1, + sym__pandoc_attr_specifier, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6256), 37, + ACTIONS(6012), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101896,21 +100283,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [37224] = 2, - ACTIONS(6262), 4, + [39218] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(993), 1, + sym__pandoc_attr_specifier, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6260), 37, + ACTIONS(6016), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101940,21 +100330,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [37270] = 2, - ACTIONS(6266), 4, + [39269] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(994), 1, + sym__pandoc_attr_specifier, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6264), 37, + ACTIONS(6020), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -101984,21 +100377,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [37316] = 2, - ACTIONS(3446), 4, + [39320] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(996), 1, + sym__pandoc_attr_specifier, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3444), 37, + ACTIONS(6024), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -102028,28 +100424,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [37362] = 4, - ACTIONS(2073), 1, + [39371] = 4, + ACTIONS(1978), 1, anon_sym_LBRACE, - STATE(1297), 1, + STATE(997), 1, sym__pandoc_attr_specifier, - ACTIONS(6086), 6, - aux_sym_pandoc_span_token1, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6084), 33, - sym__soft_line_ending, + ACTIONS(6028), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102075,27 +100470,28 @@ 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, - [37412] = 4, - ACTIONS(17), 1, + sym__whitespace, + [39422] = 4, + ACTIONS(1978), 1, anon_sym_LBRACE, - STATE(1394), 1, + STATE(998), 1, sym__pandoc_attr_specifier, - ACTIONS(6096), 4, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6094), 35, + ACTIONS(6032), 37, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102121,6 +100517,8 @@ 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, @@ -102128,20 +100526,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [37462] = 4, - ACTIONS(17), 1, + [39473] = 4, + ACTIONS(1978), 1, anon_sym_LBRACE, - STATE(1414), 1, + STATE(1007), 1, sym__pandoc_attr_specifier, - ACTIONS(6140), 4, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6138), 35, + ACTIONS(6036), 37, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102167,6 +100564,8 @@ 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, @@ -102174,20 +100573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [37512] = 4, - ACTIONS(17), 1, + [39524] = 4, + ACTIONS(1978), 1, anon_sym_LBRACE, - STATE(1335), 1, + STATE(1000), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 4, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6060), 35, + ACTIONS(6040), 37, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102213,6 +100611,8 @@ 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, @@ -102220,13 +100620,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [37562] = 2, - ACTIONS(6270), 4, + [39575] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(1001), 1, + sym__pandoc_attr_specifier, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6268), 37, + ACTIONS(6044), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -102256,21 +100659,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [37608] = 2, - ACTIONS(6274), 4, + [39626] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(1002), 1, + sym__pandoc_attr_specifier, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6272), 37, + ACTIONS(6048), 37, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -102300,28 +100706,70 @@ static const uint16_t ts_small_parse_table[] = { 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, - [37654] = 4, - ACTIONS(17), 1, + [39677] = 4, + ACTIONS(1978), 1, anon_sym_LBRACE, - STATE(1340), 1, + STATE(1003), 1, sym__pandoc_attr_specifier, - ACTIONS(6136), 4, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6134), 35, + ACTIONS(6052), 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, + anon_sym_BANG_LBRACK, + anon_sym_DOLLAR_DOLLAR, + anon_sym_PIPE, + sym__whitespace, + [39728] = 2, + ACTIONS(6058), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6056), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102347,24 +100795,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, - [37704] = 4, + [39774] = 4, ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1341), 1, + STATE(1296), 1, sym__pandoc_attr_specifier, - ACTIONS(6070), 4, + ACTIONS(5964), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 35, + ACTIONS(5962), 36, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -102393,6 +100843,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -102400,17 +100851,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [37754] = 4, + [39824] = 4, ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1343), 1, + STATE(1297), 1, sym__pandoc_attr_specifier, - ACTIONS(6104), 4, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6102), 35, + ACTIONS(5996), 36, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -102439,6 +100889,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -102446,19 +100897,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [37804] = 4, - ACTIONS(2073), 1, + [39874] = 4, + ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1302), 1, + STATE(1248), 1, sym__pandoc_attr_specifier, - ACTIONS(6096), 6, + ACTIONS(5968), 5, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6094), 33, + ACTIONS(5966), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -102485,6 +100935,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -102492,16 +100943,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [37854] = 2, - ACTIONS(6278), 4, + [39924] = 4, + ACTIONS(2048), 1, + anon_sym_LBRACE, + STATE(1254), 1, + sym__pandoc_attr_specifier, + ACTIONS(5982), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6276), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5980), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102527,29 +100981,27 @@ 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, - [37900] = 4, - ACTIONS(17), 1, + [39974] = 4, + ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1344), 1, + STATE(1280), 1, sym__pandoc_attr_specifier, - ACTIONS(6108), 4, + ACTIONS(5954), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(5952), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102575,23 +101027,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [37950] = 2, - ACTIONS(6282), 4, + [40024] = 4, + ACTIONS(2048), 1, + anon_sym_LBRACE, + STATE(1319), 1, + sym__pandoc_attr_specifier, + ACTIONS(5972), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6280), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5970), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102617,27 +101073,27 @@ 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, - [37996] = 3, - ACTIONS(6284), 1, - sym_block_continuation, - ACTIONS(3159), 4, + [40074] = 4, + ACTIONS(2048), 1, + anon_sym_LBRACE, + STATE(1052), 1, + sym__pandoc_attr_specifier, + ACTIONS(5986), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3157), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5984), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102663,27 +101119,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [38044] = 4, - ACTIONS(2073), 1, + [40124] = 4, + ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1295), 1, + STATE(1055), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 6, + ACTIONS(5990), 5, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6056), 33, + ACTIONS(5988), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -102710,6 +101165,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -102717,16 +101173,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [38094] = 2, - ACTIONS(6152), 4, + [40174] = 4, + ACTIONS(6060), 1, + anon_sym_LBRACE, + STATE(1060), 1, + sym_attribute_specifier, + ACTIONS(5958), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6150), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5956), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102752,29 +101211,27 @@ 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, - [38140] = 4, - ACTIONS(17), 1, + [40224] = 4, + ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1364), 1, + STATE(1061), 1, sym__pandoc_attr_specifier, - ACTIONS(6078), 4, + ACTIONS(5964), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6076), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(5962), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102800,23 +101257,73 @@ static const uint16_t ts_small_parse_table[] = { 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, + [40274] = 4, + ACTIONS(2048), 1, + anon_sym_LBRACE, + STATE(1062), 1, + sym__pandoc_attr_specifier, + ACTIONS(5998), 5, + aux_sym_pandoc_span_token1, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, sym__whitespace, - [38190] = 2, - ACTIONS(6288), 4, + ACTIONS(5996), 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, + [40324] = 4, + ACTIONS(2048), 1, + anon_sym_LBRACE, + STATE(1064), 1, + sym__pandoc_attr_specifier, + ACTIONS(6002), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6286), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(6000), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102842,29 +101349,27 @@ 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, - [38236] = 4, - ACTIONS(17), 1, + [40374] = 4, + ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1366), 1, + STATE(1065), 1, sym__pandoc_attr_specifier, - ACTIONS(6082), 4, + ACTIONS(6006), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6080), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6004), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -102890,26 +101395,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [38286] = 4, - ACTIONS(2073), 1, + [40424] = 4, + ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1493), 1, + STATE(1067), 1, sym__pandoc_attr_specifier, - ACTIONS(6100), 6, + ACTIONS(6010), 5, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6098), 33, + ACTIONS(6008), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -102936,6 +101441,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -102943,60 +101449,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [38336] = 2, - ACTIONS(6292), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6290), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, + [40474] = 4, + ACTIONS(2048), 1, anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [38382] = 2, - ACTIONS(6128), 4, + STATE(1068), 1, + sym__pandoc_attr_specifier, + ACTIONS(6014), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(6012), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103022,25 +101487,27 @@ 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, - [38428] = 2, - ACTIONS(6296), 4, + [40524] = 4, + ACTIONS(2048), 1, + anon_sym_LBRACE, + STATE(1070), 1, + sym__pandoc_attr_specifier, + ACTIONS(6018), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6294), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(6016), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103066,25 +101533,27 @@ 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, - [38474] = 2, - ACTIONS(6300), 4, + [40574] = 4, + ACTIONS(2048), 1, + anon_sym_LBRACE, + STATE(1071), 1, + sym__pandoc_attr_specifier, + ACTIONS(6022), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6298), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(6020), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103110,29 +101579,27 @@ 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, - [38520] = 4, - ACTIONS(17), 1, + [40624] = 4, + ACTIONS(2048), 1, anon_sym_LBRACE, STATE(1075), 1, sym__pandoc_attr_specifier, - ACTIONS(6112), 4, + ACTIONS(6026), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6110), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6024), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103158,23 +101625,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [38570] = 2, - ACTIONS(6304), 4, + [40674] = 4, + ACTIONS(2048), 1, + anon_sym_LBRACE, + STATE(1076), 1, + sym__pandoc_attr_specifier, + ACTIONS(6030), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6302), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(6028), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103200,29 +101671,27 @@ 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, - [38616] = 4, - ACTIONS(17), 1, + [40724] = 4, + ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1261), 1, + STATE(1078), 1, sym__pandoc_attr_specifier, - ACTIONS(6156), 4, + ACTIONS(6034), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6154), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6032), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103248,67 +101717,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [38666] = 2, - ACTIONS(6308), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6306), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, + [40774] = 4, + ACTIONS(2048), 1, anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [38712] = 2, - ACTIONS(6312), 4, + STATE(1079), 1, + sym__pandoc_attr_specifier, + ACTIONS(5950), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6310), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(5948), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103334,25 +101763,27 @@ 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, - [38758] = 2, - ACTIONS(6316), 4, + [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_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6314), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(6040), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103378,28 +101809,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, - [38804] = 4, - ACTIONS(2073), 1, + [40874] = 4, + ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1293), 1, + STATE(1082), 1, sym__pandoc_attr_specifier, - ACTIONS(6108), 6, + ACTIONS(6046), 5, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6106), 33, + ACTIONS(6044), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -103426,6 +101855,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -103433,19 +101863,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [38854] = 4, - ACTIONS(2073), 1, + [40924] = 4, + ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1294), 1, + STATE(1083), 1, sym__pandoc_attr_specifier, - ACTIONS(6148), 6, + ACTIONS(6050), 5, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6146), 33, + ACTIONS(6048), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -103472,6 +101901,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -103479,16 +101909,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - [38904] = 2, - ACTIONS(6320), 4, + [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_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6318), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(6052), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103514,25 +101947,27 @@ 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, - [38950] = 2, - ACTIONS(6324), 4, + [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_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6322), 37, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(6036), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103558,29 +101993,27 @@ 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, - [38996] = 4, - ACTIONS(17), 1, + [41074] = 4, + ACTIONS(2048), 1, anon_sym_LBRACE, - STATE(1320), 1, + STATE(1090), 1, sym__pandoc_attr_specifier, - ACTIONS(6160), 4, + ACTIONS(5976), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6158), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(5974), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103606,20 +102039,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [39046] = 2, - ACTIONS(6328), 4, + [41124] = 2, + ACTIONS(6064), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6326), 37, + ACTIONS(6062), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -103649,6 +102082,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -103657,20 +102091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [39092] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1321), 1, - sym__pandoc_attr_specifier, - ACTIONS(6066), 4, + [41170] = 2, + ACTIONS(6068), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6064), 35, + ACTIONS(6066), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -103696,20 +102125,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, anon_sym_PIPE, sym__whitespace, - [39142] = 2, - ACTIONS(6332), 4, + [41216] = 2, + ACTIONS(6072), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6330), 37, + ACTIONS(6070), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -103739,6 +102170,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -103747,13 +102179,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [39188] = 2, - ACTIONS(6336), 4, + [41262] = 2, + ACTIONS(6076), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6334), 37, + ACTIONS(6074), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -103783,6 +102214,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -103791,13 +102223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [39234] = 2, - ACTIONS(6340), 4, + [41308] = 2, + ACTIONS(6080), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6338), 37, + ACTIONS(6078), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -103827,6 +102258,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -103835,13 +102267,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [39280] = 2, - ACTIONS(6344), 4, + [41354] = 2, + ACTIONS(6084), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6342), 37, + ACTIONS(6082), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -103871,6 +102302,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -103879,13 +102311,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [39326] = 2, - ACTIONS(6348), 4, + [41400] = 2, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6346), 37, + ACTIONS(6004), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -103915,6 +102346,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -103923,13 +102355,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [39372] = 2, - ACTIONS(6352), 4, + [41446] = 2, + ACTIONS(6088), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6350), 37, + ACTIONS(6086), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -103959,6 +102390,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -103967,20 +102399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [39418] = 4, - ACTIONS(6354), 1, - anon_sym_LBRACE, - STATE(1324), 1, - sym_attribute_specifier, - ACTIONS(6090), 4, + [41492] = 2, + ACTIONS(6092), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6088), 35, + ACTIONS(6090), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104006,27 +102433,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, - [39468] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1325), 1, - sym__pandoc_attr_specifier, - ACTIONS(6116), 4, + [41538] = 2, + ACTIONS(6096), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6114), 35, + ACTIONS(6094), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104052,27 +102477,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, - [39518] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1326), 1, - sym__pandoc_attr_specifier, - ACTIONS(6120), 4, + [41584] = 2, + ACTIONS(6100), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6118), 35, + ACTIONS(6098), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104098,27 +102521,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, - [39568] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1328), 1, - sym__pandoc_attr_specifier, - ACTIONS(6124), 4, + [41630] = 2, + ACTIONS(6104), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6122), 35, + ACTIONS(6102), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104144,27 +102565,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, - [39618] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1329), 1, - sym__pandoc_attr_specifier, - ACTIONS(6128), 4, + [41676] = 2, + ACTIONS(6108), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 35, + ACTIONS(6106), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104190,20 +102609,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, anon_sym_PIPE, sym__whitespace, - [39668] = 2, - ACTIONS(6358), 4, + [41722] = 2, + ACTIONS(6112), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6356), 37, + ACTIONS(6110), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -104233,6 +102654,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -104241,20 +102663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [39714] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1331), 1, - sym__pandoc_attr_specifier, - ACTIONS(6132), 4, + [41768] = 2, + ACTIONS(6116), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6130), 35, + ACTIONS(6114), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104280,20 +102697,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, anon_sym_PIPE, sym__whitespace, - [39764] = 2, - ACTIONS(6362), 4, + [41814] = 2, + ACTIONS(6120), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6360), 37, + ACTIONS(6118), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -104323,6 +102742,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -104331,20 +102751,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [39810] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1332), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 4, + [41860] = 2, + ACTIONS(6124), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6052), 35, + ACTIONS(6122), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104370,27 +102785,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, - [39860] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1384), 1, - sym__pandoc_attr_specifier, - ACTIONS(6148), 4, + [41906] = 2, + ACTIONS(6128), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6146), 35, + ACTIONS(6126), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104416,27 +102829,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, - [39910] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1385), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 4, + [41952] = 2, + ACTIONS(6132), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6056), 35, + ACTIONS(6130), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104462,27 +102873,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, - [39960] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1386), 1, - sym__pandoc_attr_specifier, - ACTIONS(6100), 4, + [41998] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6098), 35, + ACTIONS(6028), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104508,20 +102917,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, anon_sym_PIPE, sym__whitespace, - [40010] = 2, - ACTIONS(6364), 4, + [42044] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2395), 37, + ACTIONS(5948), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -104551,6 +102962,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -104559,20 +102971,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [40056] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1388), 1, - sym__pandoc_attr_specifier, - ACTIONS(6086), 4, + [42090] = 2, + ACTIONS(6136), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6084), 35, + ACTIONS(6134), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104598,20 +103005,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, anon_sym_PIPE, sym__whitespace, - [40106] = 2, - ACTIONS(6368), 4, + [42136] = 2, + ACTIONS(6140), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6366), 37, + ACTIONS(6138), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -104641,6 +103050,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -104649,20 +103059,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [40152] = 4, - ACTIONS(17), 1, - anon_sym_LBRACE, - STATE(1334), 1, - sym__pandoc_attr_specifier, - ACTIONS(6144), 4, + [42182] = 2, + ACTIONS(6144), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6142), 35, + ACTIONS(6142), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104688,20 +103093,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, anon_sym_PIPE, sym__whitespace, - [40202] = 2, - ACTIONS(6372), 4, + [42228] = 2, + ACTIONS(6148), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6370), 37, + ACTIONS(6146), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -104731,6 +103138,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -104739,20 +103147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [40248] = 4, - ACTIONS(2073), 1, - anon_sym_LBRACE, - STATE(1254), 1, - sym__pandoc_attr_specifier, - ACTIONS(6112), 6, - aux_sym_pandoc_span_token1, + [42274] = 2, + ACTIONS(6152), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6110), 33, - sym__soft_line_ending, + ACTIONS(6150), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104778,27 +103181,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_PIPE, - [40298] = 4, - ACTIONS(2073), 1, anon_sym_LBRACE, - STATE(1256), 1, - sym__pandoc_attr_specifier, - ACTIONS(6156), 6, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [42320] = 2, + ACTIONS(6156), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6154), 33, - sym__soft_line_ending, + ACTIONS(6154), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104824,27 +103225,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_PIPE, - [40348] = 4, - ACTIONS(2073), 1, anon_sym_LBRACE, - STATE(1259), 1, - sym__pandoc_attr_specifier, - ACTIONS(6160), 6, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [42366] = 2, + ACTIONS(6160), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6158), 33, - sym__soft_line_ending, + ACTIONS(6158), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104870,27 +103269,29 @@ 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, - [40398] = 4, - ACTIONS(2073), 1, + sym__whitespace, + [42412] = 4, + ACTIONS(6162), 1, anon_sym_LBRACE, - STATE(1260), 1, - sym__pandoc_attr_specifier, - ACTIONS(6066), 6, - aux_sym_pandoc_span_token1, + STATE(1287), 1, + sym_attribute_specifier, + ACTIONS(5958), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6064), 33, + ACTIONS(5956), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104916,27 +103317,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [40448] = 4, - ACTIONS(2073), 1, - anon_sym_LBRACE, - STATE(1272), 1, - sym__pandoc_attr_specifier, - ACTIONS(6078), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [42462] = 2, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6076), 33, - sym__soft_line_ending, + ACTIONS(6164), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -104962,27 +103359,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_PIPE, - [40498] = 4, - ACTIONS(2073), 1, anon_sym_LBRACE, - STATE(1273), 1, - sym__pandoc_attr_specifier, - ACTIONS(6082), 6, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [42508] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6080), 33, - sym__soft_line_ending, + ACTIONS(6168), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105008,27 +103403,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_PIPE, - [40548] = 4, - ACTIONS(6374), 1, anon_sym_LBRACE, - STATE(1276), 1, - sym_attribute_specifier, - ACTIONS(6090), 6, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [42554] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6088), 33, - sym__soft_line_ending, + ACTIONS(6172), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105054,27 +103447,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_PIPE, - [40598] = 4, - ACTIONS(2073), 1, anon_sym_LBRACE, - STATE(1277), 1, - sym__pandoc_attr_specifier, - ACTIONS(6116), 6, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [42600] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6114), 33, - sym__soft_line_ending, + ACTIONS(6176), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105100,20 +103491,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, - [40648] = 2, - ACTIONS(6378), 4, + sym__whitespace, + [42646] = 2, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6376), 37, + ACTIONS(6180), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -105143,6 +103536,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -105151,13 +103545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [40694] = 2, - ACTIONS(6108), 4, + [42692] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 37, + ACTIONS(6184), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -105187,6 +103580,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -105195,13 +103589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [40740] = 2, - ACTIONS(6382), 4, + [42738] = 2, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6380), 37, + ACTIONS(6188), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -105231,6 +103624,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -105239,20 +103633,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [40786] = 4, - ACTIONS(2073), 1, + [42784] = 2, + ACTIONS(6194), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6192), 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(1280), 1, - sym__pandoc_attr_specifier, - ACTIONS(6124), 6, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [42830] = 2, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_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, + anon_sym_LBRACE, + anon_sym_PIPE, sym__whitespace, - ACTIONS(6122), 33, - sym__soft_line_ending, + [42876] = 2, + ACTIONS(6202), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6200), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105278,20 +103755,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, - [40836] = 2, - ACTIONS(6386), 4, + sym__whitespace, + [42922] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6384), 37, + ACTIONS(6204), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -105321,6 +103800,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -105329,13 +103809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [40882] = 2, - ACTIONS(6390), 4, + [42968] = 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6388), 37, + ACTIONS(6208), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -105365,6 +103844,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -105373,20 +103853,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [40928] = 4, - ACTIONS(2073), 1, - anon_sym_LBRACE, - STATE(1281), 1, - sym__pandoc_attr_specifier, - ACTIONS(6128), 6, - aux_sym_pandoc_span_token1, + [43014] = 2, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6126), 33, - sym__soft_line_ending, + ACTIONS(6212), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105412,27 +103887,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_PIPE, - [40978] = 4, - ACTIONS(2073), 1, anon_sym_LBRACE, - STATE(1282), 1, - sym__pandoc_attr_specifier, - ACTIONS(6132), 6, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [43060] = 2, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6130), 33, - sym__soft_line_ending, + ACTIONS(6216), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105458,27 +103931,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_PIPE, - [41028] = 4, - ACTIONS(2073), 1, anon_sym_LBRACE, - STATE(1283), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 6, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [43106] = 2, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6052), 33, - sym__soft_line_ending, + ACTIONS(6220), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105504,20 +103975,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, - [41078] = 2, - ACTIONS(6394), 4, + sym__whitespace, + [43152] = 2, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6392), 37, + ACTIONS(6224), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -105547,6 +104020,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -105555,20 +104029,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41124] = 4, - ACTIONS(2073), 1, - anon_sym_LBRACE, - STATE(1284), 1, - sym__pandoc_attr_specifier, - ACTIONS(6144), 6, - aux_sym_pandoc_span_token1, + [43198] = 2, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6142), 33, - sym__soft_line_ending, + ACTIONS(6228), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105594,27 +104063,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_PIPE, - [41174] = 4, - ACTIONS(2073), 1, anon_sym_LBRACE, - STATE(1285), 1, - sym__pandoc_attr_specifier, - ACTIONS(6062), 6, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [43244] = 2, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6060), 33, - sym__soft_line_ending, + ACTIONS(6232), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105640,27 +104107,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_PIPE, - [41224] = 4, - ACTIONS(2073), 1, anon_sym_LBRACE, - STATE(1289), 1, - sym__pandoc_attr_specifier, - ACTIONS(6136), 6, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [43290] = 2, + ACTIONS(6238), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6134), 33, - sym__soft_line_ending, + ACTIONS(6236), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105686,27 +104151,113 @@ 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, - [41274] = 4, - ACTIONS(2073), 1, + sym__whitespace, + [43336] = 2, + ACTIONS(6242), 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__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(1290), 1, - sym__pandoc_attr_specifier, - ACTIONS(6070), 6, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [43382] = 2, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, + ACTIONS(6244), 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, + anon_sym_PIPE, sym__whitespace, - ACTIONS(6068), 33, - sym__soft_line_ending, + [43428] = 2, + ACTIONS(6250), 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__code_span_start, sym__html_comment, sym__autolink, @@ -105732,27 +104283,113 @@ 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, - [41324] = 4, - ACTIONS(2073), 1, + sym__whitespace, + [43474] = 2, + ACTIONS(6254), 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__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(1292), 1, - sym__pandoc_attr_specifier, - ACTIONS(6104), 6, - aux_sym_pandoc_span_token1, + anon_sym_PIPE, + sym__whitespace, + [43520] = 2, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, + ACTIONS(6256), 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, + anon_sym_PIPE, sym__whitespace, - ACTIONS(6102), 33, - sym__soft_line_ending, + [43566] = 2, + ACTIONS(6262), 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__code_span_start, sym__html_comment, sym__autolink, @@ -105778,20 +104415,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, - [41374] = 2, - ACTIONS(6070), 4, + sym__whitespace, + [43612] = 2, + ACTIONS(6266), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 37, + ACTIONS(6264), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -105821,6 +104460,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -105829,13 +104469,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41420] = 2, - ACTIONS(6398), 4, + [43658] = 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6396), 37, + ACTIONS(6268), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -105865,6 +104504,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -105873,13 +104513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41466] = 2, - ACTIONS(6402), 4, + [43704] = 2, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6400), 37, + ACTIONS(6272), 38, sym__line_ending, sym__eof, sym__pipe_table_line_ending, @@ -105909,6 +104548,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -105917,16 +104557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41512] = 2, - ACTIONS(6362), 4, + [43750] = 2, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6360), 36, + ACTIONS(6276), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105952,6 +104591,8 @@ 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, @@ -105960,16 +104601,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41557] = 2, - ACTIONS(6236), 4, + [43796] = 2, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6234), 36, + ACTIONS(6280), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -105995,6 +104635,8 @@ 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, @@ -106003,61 +104645,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41602] = 2, - ACTIONS(6404), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2411), 36, - 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_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, - [41647] = 4, - ACTIONS(4390), 1, + [43842] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(2008), 1, + STATE(1300), 1, sym__pandoc_attr_specifier, - ACTIONS(6112), 4, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6110), 34, + ACTIONS(6000), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106075,7 +104675,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, @@ -106084,6 +104683,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106091,18 +104691,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [41696] = 4, - ACTIONS(4390), 1, + [43892] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(2080), 1, + STATE(1301), 1, sym__pandoc_attr_specifier, - ACTIONS(6156), 4, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6154), 34, + ACTIONS(6004), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106120,7 +104721,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, @@ -106129,6 +104729,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106136,18 +104737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [41745] = 4, - ACTIONS(4390), 1, + [43942] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(2141), 1, + STATE(1320), 1, sym__pandoc_attr_specifier, - ACTIONS(6160), 4, + ACTIONS(6010), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6158), 34, + ACTIONS(6008), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106165,7 +104767,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, @@ -106174,6 +104775,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106181,18 +104783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [41794] = 4, - ACTIONS(4390), 1, + [43992] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(2171), 1, + STATE(1321), 1, sym__pandoc_attr_specifier, - ACTIONS(6066), 4, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6064), 34, + ACTIONS(6012), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106210,7 +104813,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, @@ -106219,6 +104821,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106226,18 +104829,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [41843] = 4, - ACTIONS(4390), 1, + [44042] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1626), 1, + STATE(1323), 1, sym__pandoc_attr_specifier, - ACTIONS(6078), 4, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6076), 34, + ACTIONS(6016), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106255,7 +104859,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, @@ -106264,6 +104867,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106271,18 +104875,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [41892] = 4, - ACTIONS(4390), 1, + [44092] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1647), 1, + STATE(1324), 1, sym__pandoc_attr_specifier, - ACTIONS(6082), 4, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6080), 34, + ACTIONS(6020), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106300,7 +104905,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, @@ -106309,6 +104913,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106316,16 +104921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [41941] = 2, - ACTIONS(6282), 4, + [44142] = 2, + ACTIONS(5994), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6280), 36, + ACTIONS(5992), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106351,6 +104955,8 @@ 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, @@ -106359,63 +104965,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [41986] = 4, - ACTIONS(6406), 1, - anon_sym_LBRACE, - STATE(1744), 1, - sym_attribute_specifier, - ACTIONS(6090), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6088), 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__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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [42035] = 4, - ACTIONS(4390), 1, + [44188] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1746), 1, + STATE(1335), 1, sym__pandoc_attr_specifier, - ACTIONS(6116), 4, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6114), 34, + ACTIONS(6024), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106433,7 +104995,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, @@ -106442,6 +105003,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106449,18 +105011,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42084] = 4, - ACTIONS(4390), 1, + [44238] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1747), 1, + STATE(1345), 1, sym__pandoc_attr_specifier, - ACTIONS(6120), 4, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6118), 34, + ACTIONS(6028), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106478,7 +105041,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, @@ -106487,6 +105049,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106494,18 +105057,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42133] = 4, - ACTIONS(4390), 1, + [44288] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1754), 1, + STATE(1347), 1, sym__pandoc_attr_specifier, - ACTIONS(6124), 4, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6122), 34, + ACTIONS(6032), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106523,7 +105087,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, @@ -106532,6 +105095,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106539,18 +105103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42182] = 4, - ACTIONS(4390), 1, + [44338] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1756), 1, + STATE(1348), 1, sym__pandoc_attr_specifier, - ACTIONS(6128), 4, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 34, + ACTIONS(5948), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106568,7 +105133,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, @@ -106577,6 +105141,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106584,18 +105149,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42231] = 4, - ACTIONS(4390), 1, + [44388] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1769), 1, + STATE(1216), 1, sym__pandoc_attr_specifier, - ACTIONS(6132), 4, + ACTIONS(5972), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6130), 34, + ACTIONS(5970), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106613,7 +105179,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, @@ -106622,6 +105187,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106629,18 +105195,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42280] = 4, - ACTIONS(4390), 1, + [44438] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1770), 1, + STATE(1247), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 4, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6052), 34, + ACTIONS(5984), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106658,7 +105225,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, @@ -106667,6 +105233,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106674,18 +105241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42329] = 4, - ACTIONS(4390), 1, + [44488] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1773), 1, + STATE(1252), 1, sym__pandoc_attr_specifier, - ACTIONS(6144), 4, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6142), 34, + ACTIONS(5988), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106703,7 +105271,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, @@ -106712,6 +105279,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106719,18 +105287,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42378] = 4, - ACTIONS(4390), 1, + [44538] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1785), 1, + STATE(1192), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 4, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6060), 34, + ACTIONS(6040), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106748,7 +105317,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, @@ -106757,6 +105325,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106764,18 +105333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42427] = 4, - ACTIONS(4390), 1, - anon_sym_LBRACE, - STATE(1839), 1, - sym__pandoc_attr_specifier, - ACTIONS(6136), 4, + [44588] = 2, + ACTIONS(6284), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6134), 34, - sym__soft_line_ending, + ACTIONS(2324), 38, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106793,7 +105359,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, @@ -106802,70 +105367,29 @@ 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_PIPE, - sym__whitespace, - [42476] = 4, - ACTIONS(4390), 1, anon_sym_LBRACE, - STATE(1845), 1, - sym__pandoc_attr_specifier, - ACTIONS(6070), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 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__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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42525] = 4, - ACTIONS(4390), 1, + [44634] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1868), 1, + STATE(1194), 1, sym__pandoc_attr_specifier, - ACTIONS(6104), 4, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6102), 34, + ACTIONS(6044), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -106883,7 +105407,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, @@ -106892,6 +105415,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -106899,58 +105423,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42574] = 4, - ACTIONS(4390), 1, + [44684] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1869), 1, + STATE(1195), 1, sym__pandoc_attr_specifier, - ACTIONS(6108), 4, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 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__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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [42623] = 2, - ACTIONS(6288), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6286), 36, + ACTIONS(6048), 36, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -106979,26 +105461,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [42668] = 4, - ACTIONS(4390), 1, + [44734] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1874), 1, + STATE(1201), 1, sym__pandoc_attr_specifier, - ACTIONS(6148), 4, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6146), 34, + ACTIONS(6052), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107016,7 +105499,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, @@ -107025,6 +105507,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -107032,18 +105515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42717] = 4, - ACTIONS(4390), 1, + [44784] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1882), 1, + STATE(1210), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 4, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6056), 34, + ACTIONS(6036), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107061,7 +105545,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, @@ -107070,6 +105553,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -107077,18 +105561,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42766] = 4, - ACTIONS(4390), 1, + [44834] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1885), 1, + STATE(1211), 1, sym__pandoc_attr_specifier, - ACTIONS(6100), 4, + ACTIONS(5976), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6098), 34, + ACTIONS(5974), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107106,7 +105591,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, @@ -107115,6 +105599,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -107122,18 +105607,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42815] = 4, - ACTIONS(4390), 1, + [44884] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1892), 1, + STATE(1056), 1, sym__pandoc_attr_specifier, - ACTIONS(6086), 4, + ACTIONS(5968), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6084), 34, + ACTIONS(5966), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107151,7 +105637,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, @@ -107160,6 +105645,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -107167,18 +105653,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42864] = 4, - ACTIONS(4390), 1, + [44934] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1902), 1, + STATE(1190), 1, sym__pandoc_attr_specifier, - ACTIONS(6096), 4, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6094), 34, + ACTIONS(5980), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107196,7 +105683,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, @@ -107205,6 +105691,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -107212,18 +105699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42913] = 4, - ACTIONS(4390), 1, + [44984] = 4, + ACTIONS(17), 1, anon_sym_LBRACE, - STATE(1904), 1, + STATE(1213), 1, sym__pandoc_attr_specifier, - ACTIONS(6140), 4, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6138), 34, + ACTIONS(5952), 36, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107241,7 +105729,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, @@ -107250,6 +105737,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -107257,60 +105745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [42962] = 3, - ACTIONS(6408), 1, - sym_block_continuation, - ACTIONS(3159), 5, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(3157), 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_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, - [43009] = 2, - ACTIONS(6212), 4, + [45034] = 2, + ACTIONS(6288), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6210), 36, + ACTIONS(6286), 38, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107336,6 +105779,8 @@ 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, @@ -107344,17 +105789,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [43054] = 4, - ACTIONS(4554), 1, + [45080] = 4, + ACTIONS(4935), 1, anon_sym_LBRACE, - STATE(2156), 1, + STATE(2018), 1, sym__pandoc_attr_specifier, - ACTIONS(6112), 4, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6110), 34, + ACTIONS(6016), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107365,6 +105809,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, @@ -107374,7 +105819,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, @@ -107382,6 +105826,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -107389,62 +105834,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43103] = 4, - ACTIONS(4554), 1, - anon_sym_LBRACE, - STATE(2177), 1, - sym__pandoc_attr_specifier, - ACTIONS(6156), 4, + [45129] = 2, + ACTIONS(6120), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6154), 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__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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, sym__whitespace, - [43152] = 4, - ACTIONS(4554), 1, - anon_sym_LBRACE, - STATE(2224), 1, - sym__pandoc_attr_specifier, - ACTIONS(6160), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6158), 34, + ACTIONS(6118), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107464,7 +105861,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, @@ -107472,114 +105868,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [43201] = 4, - ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(1495), 1, - sym__pandoc_attr_specifier, - ACTIONS(6066), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6064), 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__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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [43250] = 4, - ACTIONS(4554), 1, - anon_sym_LBRACE, - STATE(1545), 1, - sym__pandoc_attr_specifier, - ACTIONS(6078), 4, + [45174] = 2, + ACTIONS(6124), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6076), 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__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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, sym__whitespace, - [43299] = 4, - ACTIONS(4554), 1, - anon_sym_LBRACE, - STATE(1550), 1, - sym__pandoc_attr_specifier, - ACTIONS(6082), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6080), 34, + ACTIONS(6122), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107599,7 +105904,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, @@ -107607,23 +105911,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [43348] = 2, - ACTIONS(6412), 4, + [45219] = 2, + ACTIONS(6128), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6410), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + sym__whitespace, + ACTIONS(6126), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -107649,25 +105954,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [43393] = 4, - ACTIONS(6414), 1, - anon_sym_LBRACE, - STATE(1586), 1, - sym_attribute_specifier, - ACTIONS(6090), 4, + [45264] = 2, + ACTIONS(6132), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6088), 34, + sym__whitespace, + ACTIONS(6130), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107687,7 +105990,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, @@ -107695,24 +105997,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [43442] = 4, - ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(1589), 1, - sym__pandoc_attr_specifier, - ACTIONS(6116), 4, + anon_sym_PIPE, + [45309] = 2, + ACTIONS(6030), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6114), 34, + sym__whitespace, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107732,7 +106033,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, @@ -107740,24 +106040,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [43491] = 4, - ACTIONS(4554), 1, + [45354] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1592), 1, + STATE(2212), 1, sym__pandoc_attr_specifier, - ACTIONS(6120), 4, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6118), 34, + ACTIONS(6032), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107777,14 +106078,15 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -107792,17 +106094,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43540] = 4, - ACTIONS(4554), 1, + [45403] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1600), 1, + STATE(2214), 1, sym__pandoc_attr_specifier, - ACTIONS(6124), 4, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6122), 34, + ACTIONS(5948), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107822,14 +106123,15 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -107837,62 +106139,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43589] = 4, - ACTIONS(4554), 1, - anon_sym_LBRACE, - STATE(1603), 1, - sym__pandoc_attr_specifier, - ACTIONS(6128), 4, + [45452] = 2, + ACTIONS(5950), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 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__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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, sym__whitespace, - [43638] = 4, - ACTIONS(4554), 1, - anon_sym_LBRACE, - STATE(1624), 1, - sym__pandoc_attr_specifier, - ACTIONS(6132), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6130), 34, + ACTIONS(5948), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -107912,7 +106166,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, @@ -107920,70 +106173,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [43687] = 4, - ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(1625), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6052), 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__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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, - sym__whitespace, - [43736] = 4, - ACTIONS(4554), 1, - anon_sym_LBRACE, - STATE(1627), 1, - sym__pandoc_attr_specifier, - ACTIONS(6144), 4, + [45497] = 2, + ACTIONS(6084), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6142), 34, + ACTIONS(6082), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -108002,7 +106209,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, @@ -108010,69 +106216,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [43785] = 4, - ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(1632), 1, - sym__pandoc_attr_specifier, - ACTIONS(6062), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6060), 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__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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43834] = 4, - ACTIONS(4554), 1, + [45542] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1640), 1, + STATE(2216), 1, sym__pandoc_attr_specifier, - ACTIONS(6136), 4, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6134), 34, + ACTIONS(6040), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108092,14 +106254,15 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -108107,17 +106270,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [43883] = 4, - ACTIONS(4554), 1, - anon_sym_LBRACE, - STATE(1641), 1, - sym__pandoc_attr_specifier, - ACTIONS(6070), 4, + [45591] = 2, + ACTIONS(6136), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 34, + sym__whitespace, + ACTIONS(6134), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108137,7 +106297,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, @@ -108145,24 +106304,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [43932] = 4, - ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(1644), 1, - sym__pandoc_attr_specifier, - ACTIONS(6104), 4, + anon_sym_PIPE, + [45636] = 2, + ACTIONS(6140), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6102), 34, + sym__whitespace, + ACTIONS(6138), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108182,7 +106340,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, @@ -108190,24 +106347,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [43981] = 4, - ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(1646), 1, - sym__pandoc_attr_specifier, - ACTIONS(6108), 4, + anon_sym_PIPE, + [45681] = 2, + ACTIONS(6144), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 34, + sym__whitespace, + ACTIONS(6142), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108227,7 +106383,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, @@ -108235,24 +106390,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [44030] = 4, - ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(1649), 1, - sym__pandoc_attr_specifier, - ACTIONS(6148), 4, + anon_sym_PIPE, + [45726] = 2, + ACTIONS(6148), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6146), 34, + sym__whitespace, + ACTIONS(6146), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108272,7 +106426,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, @@ -108280,24 +106433,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [44079] = 4, - ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(1650), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 4, + anon_sym_PIPE, + [45771] = 2, + ACTIONS(6152), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6056), 34, + sym__whitespace, + ACTIONS(6150), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108317,7 +106469,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, @@ -108325,24 +106476,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [44128] = 4, - ACTIONS(4554), 1, + [45816] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1662), 1, + STATE(2217), 1, sym__pandoc_attr_specifier, - ACTIONS(6100), 4, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6098), 34, + ACTIONS(6044), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108362,14 +106514,15 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -108377,17 +106530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [44177] = 4, - ACTIONS(4554), 1, - anon_sym_LBRACE, - STATE(1663), 1, - sym__pandoc_attr_specifier, - ACTIONS(6086), 4, + [45865] = 2, + ACTIONS(6156), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6084), 34, + sym__whitespace, + ACTIONS(6154), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108407,7 +106557,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, @@ -108415,24 +106564,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [44226] = 4, - ACTIONS(4554), 1, anon_sym_LBRACE, - STATE(1681), 1, - sym__pandoc_attr_specifier, - ACTIONS(6096), 4, + anon_sym_PIPE, + [45910] = 2, + ACTIONS(6160), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6094), 34, + sym__whitespace, + ACTIONS(6158), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108452,7 +106600,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, @@ -108460,24 +106607,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [44275] = 4, - ACTIONS(4554), 1, + [45955] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1684), 1, + STATE(2218), 1, sym__pandoc_attr_specifier, - ACTIONS(6140), 4, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6138), 34, + ACTIONS(6048), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108497,14 +106645,15 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -108512,15 +106661,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [44324] = 3, - ACTIONS(6416), 1, - sym_block_continuation, - ACTIONS(3159), 4, + [46004] = 2, + ACTIONS(6288), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3157), 35, + sym__whitespace, + ACTIONS(6286), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108530,7 +106678,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, @@ -108548,24 +106695,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [44371] = 2, - ACTIONS(6196), 4, + [46049] = 2, + ACTIONS(6166), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6194), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6164), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -108591,26 +106738,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [44416] = 4, - ACTIONS(2907), 1, + [46094] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1742), 1, + STATE(2219), 1, sym__pandoc_attr_specifier, - ACTIONS(6112), 5, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6110), 33, + ACTIONS(6052), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108633,74 +106779,27 @@ 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__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, - [44465] = 4, - ACTIONS(2907), 1, - anon_sym_LBRACE, - STATE(1745), 1, - sym__pandoc_attr_specifier, - ACTIONS(6156), 5, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6154), 33, - 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_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, - [44514] = 4, - ACTIONS(2907), 1, - anon_sym_LBRACE, - STATE(1752), 1, - sym__pandoc_attr_specifier, - ACTIONS(6160), 5, + [46143] = 2, + ACTIONS(6170), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6158), 33, + ACTIONS(6168), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108727,70 +106826,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [44563] = 4, - ACTIONS(2907), 1, anon_sym_LBRACE, - STATE(1755), 1, - sym__pandoc_attr_specifier, - ACTIONS(6066), 5, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6064), 33, - 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_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, - [44612] = 4, - ACTIONS(2907), 1, - anon_sym_LBRACE, - STATE(1768), 1, - sym__pandoc_attr_specifier, - ACTIONS(6078), 5, + [46188] = 2, + ACTIONS(6174), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6076), 33, + ACTIONS(6172), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108817,25 +106869,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [44661] = 4, - ACTIONS(2907), 1, + [46233] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1771), 1, + STATE(2225), 1, sym__pandoc_attr_specifier, - ACTIONS(6082), 5, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6080), 33, + ACTIONS(6036), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108858,74 +106910,27 @@ 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__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, - [44710] = 4, - ACTIONS(6418), 1, - anon_sym_LBRACE, - STATE(1782), 1, - sym_attribute_specifier, - ACTIONS(6090), 5, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6088), 33, - 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_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, - [44759] = 4, - ACTIONS(2907), 1, - anon_sym_LBRACE, - STATE(1783), 1, - sym__pandoc_attr_specifier, - ACTIONS(6116), 5, + [46282] = 2, + ACTIONS(6058), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6114), 33, + ACTIONS(6056), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108952,25 +106957,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [44808] = 4, - ACTIONS(2907), 1, anon_sym_LBRACE, - STATE(1784), 1, - sym__pandoc_attr_specifier, - ACTIONS(6120), 5, + anon_sym_PIPE, + [46327] = 2, + ACTIONS(6178), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6118), 33, + ACTIONS(6176), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -108997,25 +107000,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [44857] = 4, - ACTIONS(2907), 1, anon_sym_LBRACE, - STATE(1786), 1, - sym__pandoc_attr_specifier, - ACTIONS(6124), 5, + anon_sym_PIPE, + [46372] = 2, + ACTIONS(6182), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6122), 33, + ACTIONS(6180), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109042,25 +107043,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [44906] = 4, - ACTIONS(2907), 1, anon_sym_LBRACE, - STATE(1794), 1, - sym__pandoc_attr_specifier, - ACTIONS(6128), 5, + anon_sym_PIPE, + [46417] = 2, + ACTIONS(6186), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6126), 33, + ACTIONS(6184), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109087,25 +107086,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [44955] = 4, - ACTIONS(2907), 1, + [46462] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1809), 1, + STATE(2226), 1, sym__pandoc_attr_specifier, - ACTIONS(6132), 5, + ACTIONS(5976), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6130), 33, + ACTIONS(5974), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109128,29 +107127,27 @@ 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__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, - [45004] = 4, - ACTIONS(2907), 1, - anon_sym_LBRACE, - STATE(1810), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 5, + sym__whitespace, + [46511] = 2, + ACTIONS(6190), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6052), 33, + ACTIONS(6188), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109177,25 +107174,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [45053] = 4, - ACTIONS(2907), 1, anon_sym_LBRACE, - STATE(1812), 1, - sym__pandoc_attr_specifier, - ACTIONS(6144), 5, + anon_sym_PIPE, + [46556] = 2, + ACTIONS(6194), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6142), 33, + ACTIONS(6192), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109222,25 +107217,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [45102] = 4, - ACTIONS(2907), 1, + [46601] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1819), 1, + STATE(1492), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 5, + ACTIONS(5968), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6060), 33, + ACTIONS(5966), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109264,28 +107259,26 @@ 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__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, - [45151] = 4, - ACTIONS(2907), 1, - anon_sym_LBRACE, - STATE(1834), 1, - sym__pandoc_attr_specifier, - ACTIONS(6136), 5, + sym__whitespace, + [46650] = 2, + ACTIONS(6198), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6134), 33, + ACTIONS(6196), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109312,25 +107305,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [45200] = 4, - ACTIONS(2907), 1, anon_sym_LBRACE, - STATE(1835), 1, - sym__pandoc_attr_specifier, - ACTIONS(6070), 5, + anon_sym_PIPE, + [46695] = 2, + ACTIONS(6202), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6068), 33, + ACTIONS(6200), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109357,25 +107348,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [45249] = 4, - ACTIONS(2907), 1, anon_sym_LBRACE, - STATE(1840), 1, - sym__pandoc_attr_specifier, - ACTIONS(6104), 5, + anon_sym_PIPE, + [46740] = 2, + ACTIONS(6206), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6102), 33, + ACTIONS(6204), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109402,25 +107391,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [45298] = 4, - ACTIONS(2907), 1, anon_sym_LBRACE, - STATE(1841), 1, - sym__pandoc_attr_specifier, - ACTIONS(6108), 5, + anon_sym_PIPE, + [46785] = 2, + ACTIONS(6210), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6106), 33, + ACTIONS(6208), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109447,25 +107434,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [45347] = 4, - ACTIONS(2907), 1, anon_sym_LBRACE, - STATE(1847), 1, - sym__pandoc_attr_specifier, - ACTIONS(6148), 5, + anon_sym_PIPE, + [46830] = 2, + ACTIONS(6214), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6146), 33, + ACTIONS(6212), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109492,25 +107477,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [45396] = 4, - ACTIONS(2907), 1, anon_sym_LBRACE, - STATE(1848), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 5, + anon_sym_PIPE, + [46875] = 2, + ACTIONS(6274), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6056), 33, + ACTIONS(6272), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109537,25 +107520,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [45445] = 4, - ACTIONS(2907), 1, anon_sym_LBRACE, - STATE(1849), 1, - sym__pandoc_attr_specifier, - ACTIONS(6100), 5, + anon_sym_PIPE, + [46920] = 2, + ACTIONS(6218), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6098), 33, + ACTIONS(6216), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109582,25 +107563,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [45494] = 4, - ACTIONS(2907), 1, anon_sym_LBRACE, - STATE(1850), 1, - sym__pandoc_attr_specifier, - ACTIONS(6086), 5, + anon_sym_PIPE, + [46965] = 2, + ACTIONS(6222), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6084), 33, + ACTIONS(6220), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109627,25 +107606,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [45543] = 4, - ACTIONS(2907), 1, anon_sym_LBRACE, - STATE(1855), 1, - sym__pandoc_attr_specifier, - ACTIONS(6096), 5, + anon_sym_PIPE, + [47010] = 2, + ACTIONS(6226), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6094), 33, + ACTIONS(6224), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109672,25 +107649,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [45592] = 4, - ACTIONS(2907), 1, anon_sym_LBRACE, - STATE(1856), 1, - sym__pandoc_attr_specifier, - ACTIONS(6140), 5, + anon_sym_PIPE, + [47055] = 2, + ACTIONS(6230), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6138), 33, + ACTIONS(6228), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109717,22 +107692,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_inline_note_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [45641] = 3, - ACTIONS(6420), 1, - sym_block_continuation, - ACTIONS(3159), 4, + [47100] = 2, + ACTIONS(6234), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3157), 35, + sym__whitespace, + ACTIONS(6232), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109743,7 +107719,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, @@ -109760,25 +107735,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [45688] = 4, - ACTIONS(4920), 1, - anon_sym_LBRACE, - STATE(1897), 1, - sym__pandoc_attr_specifier, - ACTIONS(6112), 4, + [47145] = 2, + ACTIONS(6278), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6110), 34, + sym__whitespace, + ACTIONS(6276), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109800,30 +107773,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__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, - [45737] = 4, - ACTIONS(4920), 1, anon_sym_LBRACE, - STATE(1900), 1, - sym__pandoc_attr_specifier, - ACTIONS(6156), 4, + anon_sym_PIPE, + [47190] = 2, + ACTIONS(6238), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6154), 34, + sym__whitespace, + ACTIONS(6236), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109845,30 +107816,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__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, - [45786] = 4, - ACTIONS(4920), 1, anon_sym_LBRACE, - STATE(1903), 1, - sym__pandoc_attr_specifier, - ACTIONS(6160), 4, + anon_sym_PIPE, + [47235] = 2, + ACTIONS(6242), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6158), 34, + sym__whitespace, + ACTIONS(6240), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109890,30 +107859,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__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, - [45835] = 4, - ACTIONS(4920), 1, anon_sym_LBRACE, - STATE(1908), 1, - sym__pandoc_attr_specifier, - ACTIONS(6066), 4, + anon_sym_PIPE, + [47280] = 2, + ACTIONS(6282), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6064), 34, + sym__whitespace, + ACTIONS(6280), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109935,30 +107902,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__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, - [45884] = 4, - ACTIONS(4920), 1, anon_sym_LBRACE, - STATE(1939), 1, - sym__pandoc_attr_specifier, - ACTIONS(6078), 4, + anon_sym_PIPE, + [47325] = 2, + ACTIONS(6246), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6076), 34, + sym__whitespace, + ACTIONS(6244), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -109980,31 +107945,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__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, - [45933] = 4, - ACTIONS(4920), 1, + [47370] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(1943), 1, + STATE(1867), 1, sym__pandoc_attr_specifier, - ACTIONS(6082), 4, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6080), 34, - sym__soft_line_ending, + ACTIONS(6012), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -110025,12 +107990,13 @@ 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, @@ -110038,18 +108004,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [45982] = 4, - ACTIONS(2815), 1, - anon_sym_LBRACE, - STATE(1822), 1, - sym__pandoc_attr_specifier, - ACTIONS(6148), 4, + [47419] = 2, + ACTIONS(6250), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6146), 34, - sym__line_ending, + sym__whitespace, + ACTIONS(6248), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -110075,25 +108038,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_PIPE, - sym__whitespace, - [46031] = 4, - ACTIONS(6422), 1, anon_sym_LBRACE, - STATE(1965), 1, - sym_attribute_specifier, - ACTIONS(6090), 4, + anon_sym_PIPE, + [47464] = 2, + ACTIONS(6254), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6088), 34, + sym__whitespace, + ACTIONS(6252), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110115,30 +108076,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__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, - [46080] = 4, - ACTIONS(4920), 1, anon_sym_LBRACE, - STATE(1971), 1, - sym__pandoc_attr_specifier, - ACTIONS(6116), 4, + anon_sym_PIPE, + [47509] = 2, + ACTIONS(6258), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6114), 34, + sym__whitespace, + ACTIONS(6256), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110160,30 +108119,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__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, - [46129] = 4, - ACTIONS(4920), 1, anon_sym_LBRACE, - STATE(1974), 1, - sym__pandoc_attr_specifier, - ACTIONS(6120), 4, + anon_sym_PIPE, + [47554] = 2, + ACTIONS(6262), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6118), 34, + sym__whitespace, + ACTIONS(6260), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110205,30 +108162,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__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, - [46178] = 4, - ACTIONS(4920), 1, anon_sym_LBRACE, - STATE(1976), 1, - sym__pandoc_attr_specifier, - ACTIONS(6124), 4, + anon_sym_PIPE, + [47599] = 2, + ACTIONS(6266), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6122), 34, + sym__whitespace, + ACTIONS(6264), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110250,30 +108205,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__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, - [46227] = 4, - ACTIONS(4920), 1, anon_sym_LBRACE, - STATE(1978), 1, - sym__pandoc_attr_specifier, - ACTIONS(6128), 4, + 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, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 34, + sym__whitespace, + ACTIONS(6268), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110295,30 +108248,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__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, - [46276] = 4, - ACTIONS(4920), 1, + [47689] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1981), 1, + STATE(1495), 1, sym__pandoc_attr_specifier, - ACTIONS(6132), 4, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6130), 34, + ACTIONS(5980), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110340,12 +108293,13 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -110353,17 +108307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46325] = 4, - ACTIONS(4920), 1, + [47738] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(1982), 1, + STATE(1807), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 4, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6052), 34, + ACTIONS(5952), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110373,6 +108326,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, @@ -110385,12 +108339,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -110398,17 +108352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46374] = 4, - ACTIONS(4920), 1, + [47787] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(1985), 1, + STATE(1825), 1, sym__pandoc_attr_specifier, - ACTIONS(6144), 4, + ACTIONS(5972), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6142), 34, + ACTIONS(5970), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110418,6 +108371,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, @@ -110430,12 +108384,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -110443,17 +108397,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46423] = 4, - ACTIONS(4920), 1, + [47836] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(2007), 1, + STATE(2010), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 4, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6060), 34, + ACTIONS(5984), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110463,6 +108416,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, @@ -110475,12 +108429,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -110488,17 +108442,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46472] = 4, - ACTIONS(4920), 1, + [47885] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(2022), 1, + STATE(2050), 1, sym__pandoc_attr_specifier, - ACTIONS(6136), 4, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6134), 34, + ACTIONS(5988), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110508,6 +108461,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, @@ -110520,12 +108474,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -110533,17 +108487,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46521] = 4, - ACTIONS(4920), 1, + [47934] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(2026), 1, + STATE(1498), 1, sym__pandoc_attr_specifier, - ACTIONS(6070), 4, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 34, + ACTIONS(5952), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110565,12 +108518,13 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -110578,17 +108532,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46570] = 4, - ACTIONS(4920), 1, + [47983] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(2028), 1, + STATE(1501), 1, sym__pandoc_attr_specifier, - ACTIONS(6104), 4, + ACTIONS(5972), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6102), 34, + ACTIONS(5970), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110610,12 +108563,13 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -110623,17 +108577,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46619] = 4, - ACTIONS(4920), 1, + [48032] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(2029), 1, + STATE(1514), 1, sym__pandoc_attr_specifier, - ACTIONS(6108), 4, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 34, + ACTIONS(5984), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110655,12 +108608,13 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -110668,17 +108622,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46668] = 4, - ACTIONS(4920), 1, + [48081] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(2031), 1, + STATE(1517), 1, sym__pandoc_attr_specifier, - ACTIONS(6148), 4, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6146), 34, + ACTIONS(5988), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110700,12 +108653,13 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -110713,17 +108667,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46717] = 4, - ACTIONS(4920), 1, + [48130] = 4, + ACTIONS(6290), 1, anon_sym_LBRACE, - STATE(2036), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 4, + STATE(2211), 1, + sym_attribute_specifier, + ACTIONS(5958), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6056), 34, + ACTIONS(5956), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110733,6 +108686,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, @@ -110745,12 +108699,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -110758,17 +108712,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46766] = 4, - ACTIONS(4920), 1, + [48179] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(2037), 1, + STATE(2215), 1, sym__pandoc_attr_specifier, - ACTIONS(6100), 4, + ACTIONS(5964), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6098), 34, + ACTIONS(5962), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110778,6 +108731,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, @@ -110790,12 +108744,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -110803,17 +108757,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46815] = 4, - ACTIONS(4920), 1, + [48228] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(2041), 1, + STATE(1480), 1, sym__pandoc_attr_specifier, - ACTIONS(6086), 4, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6084), 34, + ACTIONS(5996), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110823,6 +108776,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, @@ -110835,12 +108789,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -110848,17 +108802,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46864] = 4, - ACTIONS(4920), 1, + [48277] = 4, + ACTIONS(6292), 1, anon_sym_LBRACE, - STATE(2049), 1, - sym__pandoc_attr_specifier, - ACTIONS(6096), 4, + STATE(1528), 1, + sym_attribute_specifier, + ACTIONS(5958), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6094), 34, + ACTIONS(5956), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110880,12 +108833,13 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -110893,17 +108847,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46913] = 4, - ACTIONS(4920), 1, + [48326] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(2050), 1, + STATE(1487), 1, sym__pandoc_attr_specifier, - ACTIONS(6140), 4, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6138), 34, + ACTIONS(6000), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110913,6 +108866,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, @@ -110925,12 +108879,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -110938,15 +108892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [46962] = 3, - ACTIONS(6424), 1, - sym_block_continuation, - ACTIONS(3159), 4, + [48375] = 4, + ACTIONS(4603), 1, + anon_sym_LBRACE, + STATE(1488), 1, + sym__pandoc_attr_specifier, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3157), 35, + ACTIONS(6004), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -110956,6 +108911,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, @@ -110964,7 +108920,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, @@ -110974,25 +108929,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [47009] = 4, - ACTIONS(5184), 1, + [48424] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(2139), 1, + STATE(1529), 1, sym__pandoc_attr_specifier, - ACTIONS(6112), 4, + ACTIONS(5964), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6110), 34, + ACTIONS(5962), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111015,11 +108969,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111027,17 +108982,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47058] = 4, - ACTIONS(5184), 1, + [48473] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(2154), 1, + STATE(1519), 1, sym__pandoc_attr_specifier, - ACTIONS(6156), 4, + ACTIONS(6010), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6154), 34, + ACTIONS(6008), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111047,6 +109001,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, @@ -111060,11 +109015,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111072,17 +109027,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47107] = 4, - ACTIONS(5184), 1, + [48522] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(2157), 1, + STATE(1531), 1, sym__pandoc_attr_specifier, - ACTIONS(6160), 4, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6158), 34, + ACTIONS(6012), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111092,6 +109046,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, @@ -111105,11 +109060,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111117,17 +109072,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47156] = 4, - ACTIONS(5184), 1, + [48571] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(2174), 1, + STATE(1530), 1, sym__pandoc_attr_specifier, - ACTIONS(6066), 4, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6064), 34, + ACTIONS(5996), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111150,11 +109104,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111162,17 +109117,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47205] = 4, - ACTIONS(5184), 1, + [48620] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(2221), 1, + STATE(1567), 1, sym__pandoc_attr_specifier, - ACTIONS(6078), 4, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6076), 34, + ACTIONS(6016), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111182,6 +109136,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, @@ -111195,11 +109150,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111207,17 +109162,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47254] = 4, - ACTIONS(5184), 1, + [48669] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(2225), 1, + STATE(1578), 1, sym__pandoc_attr_specifier, - ACTIONS(6082), 4, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6080), 34, + ACTIONS(6020), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111227,6 +109181,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, @@ -111240,11 +109195,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111252,18 +109207,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47303] = 4, - ACTIONS(2815), 1, + [48718] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1823), 1, + STATE(1532), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 4, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6056), 34, - sym__line_ending, + ACTIONS(6000), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -111286,10 +109240,11 @@ 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, @@ -111297,17 +109252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47352] = 4, - ACTIONS(6426), 1, + [48767] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(2265), 1, - sym_attribute_specifier, - ACTIONS(6090), 4, + STATE(1613), 1, + sym__pandoc_attr_specifier, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6088), 34, + ACTIONS(6024), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111317,6 +109271,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, @@ -111330,11 +109285,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111342,17 +109297,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47401] = 4, - ACTIONS(5184), 1, + [48816] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(2270), 1, + STATE(1623), 1, sym__pandoc_attr_specifier, - ACTIONS(6116), 4, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6114), 34, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111362,6 +109316,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, @@ -111375,11 +109330,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111387,17 +109342,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47450] = 4, - ACTIONS(5184), 1, + [48865] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(2273), 1, + STATE(1533), 1, sym__pandoc_attr_specifier, - ACTIONS(6120), 4, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6118), 34, + ACTIONS(6004), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111420,11 +109374,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111432,17 +109387,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47499] = 4, - ACTIONS(5184), 1, + [48914] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1496), 1, + STATE(1535), 1, sym__pandoc_attr_specifier, - ACTIONS(6124), 4, + ACTIONS(6010), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6122), 34, + ACTIONS(6008), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111465,11 +109419,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111477,17 +109432,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47548] = 4, - ACTIONS(5184), 1, + [48963] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1497), 1, + STATE(1536), 1, sym__pandoc_attr_specifier, - ACTIONS(6128), 4, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 34, + ACTIONS(6012), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111510,11 +109464,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111522,17 +109477,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47597] = 4, - ACTIONS(5184), 1, + [49012] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1499), 1, + STATE(1538), 1, sym__pandoc_attr_specifier, - ACTIONS(6132), 4, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6130), 34, + ACTIONS(6016), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111555,11 +109509,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111567,17 +109522,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47646] = 4, - ACTIONS(5184), 1, + [49061] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1500), 1, + STATE(1539), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 4, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6052), 34, + ACTIONS(6020), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111600,11 +109554,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111612,17 +109567,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47695] = 4, - ACTIONS(5184), 1, + [49110] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1502), 1, + STATE(1543), 1, sym__pandoc_attr_specifier, - ACTIONS(6144), 4, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6142), 34, + ACTIONS(6024), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111645,11 +109599,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111657,17 +109612,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47744] = 4, - ACTIONS(5184), 1, + [49159] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1503), 1, + STATE(1544), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 4, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6060), 34, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111690,11 +109644,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111702,17 +109657,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47793] = 4, - ACTIONS(5184), 1, + [49208] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1507), 1, + STATE(1546), 1, sym__pandoc_attr_specifier, - ACTIONS(6136), 4, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6134), 34, + ACTIONS(6032), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111735,11 +109689,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111747,17 +109702,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47842] = 4, - ACTIONS(5184), 1, + [49257] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1508), 1, + STATE(1547), 1, sym__pandoc_attr_specifier, - ACTIONS(6070), 4, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 34, + ACTIONS(5948), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111780,11 +109734,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111792,17 +109747,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47891] = 4, - ACTIONS(5184), 1, + [49306] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1510), 1, + STATE(2159), 1, sym__pandoc_attr_specifier, - ACTIONS(6104), 4, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6102), 34, + ACTIONS(5980), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111830,6 +109784,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -111837,17 +109792,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47940] = 4, - ACTIONS(5184), 1, + [49355] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1511), 1, + STATE(1549), 1, sym__pandoc_attr_specifier, - ACTIONS(6108), 4, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 34, + ACTIONS(6040), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111870,11 +109824,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111882,17 +109837,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [47989] = 4, - ACTIONS(5184), 1, + [49404] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(1513), 1, + STATE(1670), 1, sym__pandoc_attr_specifier, - ACTIONS(6148), 4, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6146), 34, + ACTIONS(6032), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111902,6 +109856,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, @@ -111915,11 +109870,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111927,17 +109882,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48038] = 4, - ACTIONS(5184), 1, + [49453] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(1514), 1, + STATE(1671), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 4, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6056), 34, + ACTIONS(5948), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -111947,6 +109901,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, @@ -111960,11 +109915,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -111972,17 +109927,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48087] = 4, - ACTIONS(5184), 1, + [49502] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1515), 1, + STATE(1550), 1, sym__pandoc_attr_specifier, - ACTIONS(6100), 4, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6098), 34, + ACTIONS(6044), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112005,11 +109959,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112017,17 +109972,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48136] = 4, - ACTIONS(5184), 1, + [49551] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(1516), 1, + STATE(1673), 1, sym__pandoc_attr_specifier, - ACTIONS(6086), 4, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6084), 34, + ACTIONS(6040), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112037,6 +109991,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, @@ -112050,11 +110005,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112062,17 +110017,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48185] = 4, - ACTIONS(5184), 1, + [49600] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(1521), 1, + STATE(1678), 1, sym__pandoc_attr_specifier, - ACTIONS(6096), 4, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6094), 34, + ACTIONS(6044), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112082,6 +110036,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, @@ -112095,11 +110050,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112107,17 +110062,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48234] = 4, - ACTIONS(5184), 1, + [49649] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1522), 1, + STATE(1551), 1, sym__pandoc_attr_specifier, - ACTIONS(6140), 4, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6138), 34, + ACTIONS(6048), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112140,11 +110094,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112152,15 +110107,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48283] = 3, - ACTIONS(6428), 1, - sym_block_continuation, - ACTIONS(3159), 4, + [49698] = 4, + ACTIONS(4345), 1, + anon_sym_LBRACE, + STATE(1552), 1, + sym__pandoc_attr_specifier, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3157), 35, + ACTIONS(6052), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112179,34 +110135,33 @@ 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, + 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, - [48330] = 4, - ACTIONS(5348), 1, + [49747] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1548), 1, + STATE(1557), 1, sym__pandoc_attr_specifier, - ACTIONS(6112), 4, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6110), 34, + ACTIONS(6036), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112234,6 +110189,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -112241,17 +110197,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48379] = 4, - ACTIONS(5348), 1, + [49796] = 4, + ACTIONS(4345), 1, anon_sym_LBRACE, - STATE(1551), 1, + STATE(1558), 1, sym__pandoc_attr_specifier, - ACTIONS(6156), 4, + ACTIONS(5976), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6154), 34, + ACTIONS(5974), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112279,6 +110234,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -112286,17 +110242,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48428] = 4, - ACTIONS(5348), 1, + [49845] = 2, + ACTIONS(6266), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6264), 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, + [49890] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(1554), 1, + STATE(1679), 1, sym__pandoc_attr_specifier, - ACTIONS(6160), 4, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6158), 34, + ACTIONS(6048), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112306,6 +110304,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, @@ -112320,10 +110319,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112331,17 +110330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48477] = 4, - ACTIONS(5348), 1, + [49939] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1557), 1, + STATE(1581), 1, sym__pandoc_attr_specifier, - ACTIONS(6066), 4, + ACTIONS(5968), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6064), 34, + ACTIONS(5966), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112365,10 +110363,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112376,17 +110375,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48526] = 4, - ACTIONS(5348), 1, + [49988] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1570), 1, + STATE(1584), 1, sym__pandoc_attr_specifier, - ACTIONS(6078), 4, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6076), 34, + ACTIONS(5980), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112410,10 +110408,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112421,17 +110420,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48575] = 4, - ACTIONS(5348), 1, + [50037] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(1572), 1, + STATE(1683), 1, sym__pandoc_attr_specifier, - ACTIONS(6082), 4, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6080), 34, + ACTIONS(6052), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112441,6 +110439,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, @@ -112455,10 +110454,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112466,18 +110465,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48624] = 4, - ACTIONS(2815), 1, + [50086] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1824), 1, + STATE(1587), 1, sym__pandoc_attr_specifier, - ACTIONS(6100), 4, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6098), 34, - sym__line_ending, + ACTIONS(5952), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -112501,9 +110499,10 @@ 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, @@ -112511,17 +110510,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48673] = 4, - ACTIONS(6430), 1, + [50135] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1583), 1, - sym_attribute_specifier, - ACTIONS(6090), 4, + STATE(1590), 1, + sym__pandoc_attr_specifier, + ACTIONS(5972), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6088), 34, + ACTIONS(5970), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112545,10 +110543,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112556,17 +110555,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48722] = 4, - ACTIONS(5348), 1, + [50184] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(1584), 1, + STATE(1691), 1, sym__pandoc_attr_specifier, - ACTIONS(6116), 4, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6114), 34, + ACTIONS(6036), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112576,6 +110574,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, @@ -112590,10 +110589,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112601,17 +110600,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48771] = 4, - ACTIONS(5348), 1, + [50233] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1585), 1, + STATE(1603), 1, sym__pandoc_attr_specifier, - ACTIONS(6120), 4, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6118), 34, + ACTIONS(5984), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112635,10 +110633,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112646,17 +110645,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48820] = 4, - ACTIONS(5348), 1, + [50282] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1587), 1, + STATE(1606), 1, sym__pandoc_attr_specifier, - ACTIONS(6124), 4, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6122), 34, + ACTIONS(5988), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112680,10 +110678,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112691,17 +110690,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48869] = 4, - ACTIONS(5348), 1, + [50331] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(1588), 1, + STATE(1692), 1, sym__pandoc_attr_specifier, - ACTIONS(6128), 4, + ACTIONS(5976), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 34, + ACTIONS(5974), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112711,6 +110709,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, @@ -112725,10 +110724,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112736,17 +110735,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48918] = 4, - ACTIONS(5348), 1, + [50380] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(1590), 1, + STATE(1866), 1, sym__pandoc_attr_specifier, - ACTIONS(6132), 4, + ACTIONS(6010), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6008), 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, + [50429] = 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6130), 34, + ACTIONS(6268), 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, + [50474] = 4, + ACTIONS(6294), 1, + anon_sym_LBRACE, + STATE(1617), 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, @@ -112770,10 +110856,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112781,17 +110868,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [48967] = 4, - ACTIONS(5348), 1, + [50523] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1591), 1, + STATE(1618), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 4, + ACTIONS(5964), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6052), 34, + ACTIONS(5962), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112815,10 +110901,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112826,17 +110913,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49016] = 4, - ACTIONS(5348), 1, + [50572] = 4, + ACTIONS(4935), 1, anon_sym_LBRACE, - STATE(1593), 1, + STATE(1809), 1, sym__pandoc_attr_specifier, - ACTIONS(6144), 4, + ACTIONS(5968), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6142), 34, + ACTIONS(5966), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112847,6 +110933,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, @@ -112860,10 +110947,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112871,17 +110958,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49065] = 4, - ACTIONS(5348), 1, + [50621] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1594), 1, + STATE(1619), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 4, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6060), 34, + ACTIONS(5996), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112905,10 +110991,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112916,17 +111003,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49114] = 4, - ACTIONS(5348), 1, + [50670] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1598), 1, + STATE(1621), 1, sym__pandoc_attr_specifier, - ACTIONS(6136), 4, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6134), 34, + ACTIONS(6000), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112950,10 +111036,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -112961,17 +111048,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49163] = 4, - ACTIONS(5348), 1, + [50719] = 4, + ACTIONS(4935), 1, anon_sym_LBRACE, - STATE(1599), 1, + STATE(1823), 1, sym__pandoc_attr_specifier, - ACTIONS(6070), 4, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 34, + ACTIONS(5980), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -112982,6 +111068,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, @@ -112995,10 +111082,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -113006,17 +111093,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49212] = 4, - ACTIONS(5348), 1, + [50768] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1601), 1, + STATE(1622), 1, sym__pandoc_attr_specifier, - ACTIONS(6104), 4, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6102), 34, + ACTIONS(6004), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113040,10 +111126,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -113051,17 +111138,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49261] = 4, - ACTIONS(5348), 1, + [50817] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1602), 1, + STATE(1624), 1, sym__pandoc_attr_specifier, - ACTIONS(6108), 4, + ACTIONS(6010), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 34, + ACTIONS(6008), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113085,10 +111171,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -113096,17 +111183,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49310] = 4, - ACTIONS(5348), 1, + [50866] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1604), 1, + STATE(1625), 1, sym__pandoc_attr_specifier, - ACTIONS(6148), 4, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6146), 34, + ACTIONS(6012), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113130,10 +111216,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -113141,17 +111228,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49359] = 4, - ACTIONS(5348), 1, + [50915] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1605), 1, + STATE(1627), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 4, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6056), 34, + ACTIONS(6016), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113175,10 +111261,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -113186,17 +111273,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49408] = 4, - ACTIONS(5348), 1, + [50964] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1606), 1, + STATE(1628), 1, sym__pandoc_attr_specifier, - ACTIONS(6100), 4, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6098), 34, + ACTIONS(6020), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113220,10 +111306,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -113231,17 +111318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49457] = 4, - ACTIONS(5348), 1, + [51013] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1607), 1, + STATE(1632), 1, sym__pandoc_attr_specifier, - ACTIONS(6086), 4, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6084), 34, + ACTIONS(6024), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113265,10 +111351,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -113276,17 +111363,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49506] = 4, - ACTIONS(5348), 1, + [51062] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1612), 1, + STATE(1633), 1, sym__pandoc_attr_specifier, - ACTIONS(6096), 4, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6094), 34, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113310,10 +111396,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -113321,17 +111408,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49555] = 4, - ACTIONS(5348), 1, + [51111] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1613), 1, + STATE(1635), 1, sym__pandoc_attr_specifier, - ACTIONS(6140), 4, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6138), 34, + ACTIONS(6032), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113355,10 +111441,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -113366,15 +111453,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49604] = 3, - ACTIONS(6432), 1, - sym_block_continuation, - ACTIONS(3159), 4, + [51160] = 4, + ACTIONS(4776), 1, + anon_sym_LBRACE, + STATE(1636), 1, + sym__pandoc_attr_specifier, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3157), 35, + ACTIONS(5948), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113394,33 +111482,30 @@ 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, 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, - [49651] = 4, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(1639), 1, - sym__pandoc_attr_specifier, - ACTIONS(6112), 4, + [51209] = 2, + ACTIONS(6298), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6110), 34, + sym__whitespace, + ACTIONS(6296), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113445,27 +111530,27 @@ 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, 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, - [49700] = 4, - ACTIONS(5512), 1, + [51254] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1642), 1, + STATE(2162), 1, sym__pandoc_attr_specifier, - ACTIONS(6156), 4, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6154), 34, + ACTIONS(5952), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113488,11 +111573,12 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -113500,17 +111586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49749] = 4, - ACTIONS(5512), 1, + [51303] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1645), 1, + STATE(1638), 1, sym__pandoc_attr_specifier, - ACTIONS(6160), 4, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6158), 34, + ACTIONS(6040), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113538,6 +111623,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -113545,17 +111631,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49798] = 4, - ACTIONS(5512), 1, + [51352] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1648), 1, + STATE(1639), 1, sym__pandoc_attr_specifier, - ACTIONS(6066), 4, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6064), 34, + ACTIONS(6044), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113583,6 +111668,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -113590,17 +111676,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49847] = 4, - ACTIONS(5512), 1, + [51401] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1661), 1, + STATE(1640), 1, sym__pandoc_attr_specifier, - ACTIONS(6078), 4, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6076), 34, + ACTIONS(6048), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113628,6 +111713,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -113635,17 +111721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49896] = 4, - ACTIONS(5512), 1, + [51450] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1664), 1, + STATE(1641), 1, sym__pandoc_attr_specifier, - ACTIONS(6082), 4, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6080), 34, + ACTIONS(6052), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113673,6 +111758,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -113680,18 +111766,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49945] = 4, - ACTIONS(2815), 1, + [51499] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1825), 1, + STATE(1646), 1, sym__pandoc_attr_specifier, - ACTIONS(6086), 4, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6084), 34, - sym__line_ending, + ACTIONS(6036), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -113715,9 +111800,10 @@ 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, @@ -113725,17 +111811,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [49994] = 4, - ACTIONS(6434), 1, + [51548] = 4, + ACTIONS(4776), 1, anon_sym_LBRACE, - STATE(1675), 1, - sym_attribute_specifier, - ACTIONS(6090), 4, + STATE(1647), 1, + sym__pandoc_attr_specifier, + ACTIONS(5976), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6088), 34, + ACTIONS(5974), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113763,6 +111848,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -113770,17 +111856,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50043] = 4, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(1676), 1, - sym__pandoc_attr_specifier, - ACTIONS(6116), 4, + [51597] = 2, + ACTIONS(6064), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6114), 34, + sym__whitespace, + ACTIONS(6062), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113805,27 +111888,27 @@ 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, 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, - [50092] = 4, - ACTIONS(5512), 1, + [51642] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1677), 1, + STATE(2165), 1, sym__pandoc_attr_specifier, - ACTIONS(6120), 4, + ACTIONS(5972), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6118), 34, + ACTIONS(5970), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113848,11 +111931,12 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -113860,17 +111944,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50141] = 4, - ACTIONS(5512), 1, + [51691] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1679), 1, + STATE(2179), 1, sym__pandoc_attr_specifier, - ACTIONS(6124), 4, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6122), 34, + ACTIONS(5984), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113893,11 +111976,12 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -113905,17 +111989,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50190] = 4, - ACTIONS(5512), 1, + [51740] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1680), 1, + STATE(2182), 1, sym__pandoc_attr_specifier, - ACTIONS(6128), 4, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 34, + ACTIONS(5988), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113938,11 +112021,12 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -113950,17 +112034,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50239] = 4, - ACTIONS(5512), 1, + [51789] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(1682), 1, + STATE(1788), 1, sym__pandoc_attr_specifier, - ACTIONS(6132), 4, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6130), 34, + ACTIONS(5980), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -113970,6 +112053,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, @@ -113985,9 +112069,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -113995,18 +112079,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50288] = 4, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(1683), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 4, + [51838] = 2, + ACTIONS(6300), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6052), 34, - sym__soft_line_ending, + ACTIONS(2334), 37, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114030,28 +112111,26 @@ 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, 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, - [50337] = 4, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(1685), 1, - sym__pandoc_attr_specifier, - ACTIONS(6144), 4, + [51883] = 2, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6142), 34, + ACTIONS(6004), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114075,28 +112154,69 @@ 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, 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, - [50386] = 4, - ACTIONS(5512), 1, + [51928] = 2, + ACTIONS(6068), 5, + aux_sym_pandoc_span_token1, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + sym__whitespace, + ACTIONS(6066), 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, - STATE(1686), 1, - sym__pandoc_attr_specifier, - ACTIONS(6062), 4, + anon_sym_PIPE, + [51973] = 2, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6060), 34, + ACTIONS(6196), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114120,28 +112240,69 @@ 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, 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, - [50435] = 4, - ACTIONS(5512), 1, + [52018] = 2, + ACTIONS(6304), 3, + 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, + 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(1690), 1, - sym__pandoc_attr_specifier, - ACTIONS(6136), 4, + anon_sym_PIPE, + sym__whitespace, + [52063] = 2, + ACTIONS(6202), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6134), 34, + ACTIONS(6200), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114165,28 +112326,26 @@ 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, 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, - [50484] = 4, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(1691), 1, - sym__pandoc_attr_specifier, - ACTIONS(6070), 4, + [52108] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 34, + ACTIONS(6204), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114210,28 +112369,28 @@ 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, 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, - [50533] = 4, - ACTIONS(5512), 1, + [52153] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(1693), 1, + STATE(1900), 1, sym__pandoc_attr_specifier, - ACTIONS(6104), 4, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6102), 34, - sym__soft_line_ending, + ACTIONS(6040), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114255,9 +112414,10 @@ 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, @@ -114265,18 +112425,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50582] = 4, - ACTIONS(5512), 1, + [52202] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(1694), 1, + STATE(1901), 1, sym__pandoc_attr_specifier, - ACTIONS(6108), 4, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 34, - sym__soft_line_ending, + ACTIONS(6044), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114300,9 +112459,10 @@ 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, @@ -114310,15 +112470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50631] = 2, - ACTIONS(6438), 6, - aux_sym_pandoc_span_token1, + [52251] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(1837), 1, + sym__pandoc_attr_specifier, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6436), 34, + ACTIONS(5952), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114329,6 +112490,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, @@ -114345,26 +112507,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [50676] = 4, - ACTIONS(5512), 1, + sym__whitespace, + [52300] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(1696), 1, + STATE(1902), 1, sym__pandoc_attr_specifier, - ACTIONS(6148), 4, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6146), 34, - sym__soft_line_ending, + ACTIONS(6048), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114388,9 +112549,10 @@ 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, @@ -114398,18 +112560,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50725] = 4, - ACTIONS(5512), 1, + [52349] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(1697), 1, + STATE(1905), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 4, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6056), 34, - sym__soft_line_ending, + ACTIONS(6052), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114433,9 +112594,10 @@ 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, @@ -114443,18 +112605,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50774] = 4, - ACTIONS(5512), 1, - anon_sym_LBRACE, - STATE(1698), 1, - sym__pandoc_attr_specifier, - ACTIONS(6100), 4, + [52398] = 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6098), 34, + ACTIONS(6208), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114478,28 +112637,28 @@ 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, 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, - [50823] = 4, - ACTIONS(5512), 1, + [52443] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(1699), 1, + STATE(1910), 1, sym__pandoc_attr_specifier, - ACTIONS(6086), 4, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6084), 34, - sym__soft_line_ending, + ACTIONS(6036), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114523,9 +112682,10 @@ 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, @@ -114533,17 +112693,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50872] = 4, - ACTIONS(5512), 1, + [52492] = 4, + ACTIONS(4935), 1, anon_sym_LBRACE, - STATE(1704), 1, + STATE(1846), 1, sym__pandoc_attr_specifier, - ACTIONS(6096), 4, + ACTIONS(5972), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6094), 34, + ACTIONS(5970), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114554,6 +112713,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, @@ -114568,9 +112728,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -114578,17 +112738,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50921] = 4, - ACTIONS(5512), 1, + [52541] = 4, + ACTIONS(4935), 1, anon_sym_LBRACE, - STATE(1705), 1, + STATE(1913), 1, sym__pandoc_attr_specifier, - ACTIONS(6140), 4, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6138), 34, + ACTIONS(5984), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -114599,6 +112758,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, @@ -114613,9 +112773,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -114623,60 +112783,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [50970] = 3, - ACTIONS(6440), 1, - sym_block_continuation, - ACTIONS(3159), 5, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(3157), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, + [52590] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - aux_sym_inline_note_token1, - anon_sym_PIPE, - [51017] = 2, - ACTIONS(6282), 6, - aux_sym_pandoc_span_token1, + STATE(1911), 1, + sym__pandoc_attr_specifier, + ACTIONS(5976), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6280), 34, - sym__soft_line_ending, + ACTIONS(5974), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114702,24 +112819,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, - [51062] = 2, - ACTIONS(6316), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [52639] = 2, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6314), 34, + ACTIONS(6212), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114745,24 +112862,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51107] = 2, - ACTIONS(6332), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [52684] = 2, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6330), 34, + ACTIONS(6272), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114788,24 +112905,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51152] = 2, - ACTIONS(6344), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [52729] = 2, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6342), 34, + ACTIONS(6216), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114831,24 +112948,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51197] = 2, - ACTIONS(6390), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [52774] = 2, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6388), 34, + ACTIONS(6220), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114874,26 +112991,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51242] = 4, - ACTIONS(2815), 1, - anon_sym_LBRACE, - STATE(1830), 1, - sym__pandoc_attr_specifier, - ACTIONS(6096), 4, + sym__whitespace, + [52819] = 2, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6094), 34, + ACTIONS(6224), 37, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114919,24 +113034,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, - [51291] = 2, - ACTIONS(6188), 6, - aux_sym_pandoc_span_token1, + [52864] = 2, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6186), 34, + ACTIONS(6228), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -114962,23 +113077,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51336] = 2, - ACTIONS(6288), 6, + 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, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6286), 34, + ACTIONS(6070), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115005,6 +113120,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115013,18 +113129,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [51381] = 4, - ACTIONS(2815), 1, - anon_sym_LBRACE, - STATE(1831), 1, - sym__pandoc_attr_specifier, - ACTIONS(6140), 4, + [52954] = 2, + ACTIONS(6088), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6138), 34, + ACTIONS(6086), 37, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115050,23 +113163,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, anon_sym_DOLLAR_DOLLAR, + anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [51430] = 2, - ACTIONS(6128), 6, + [52999] = 2, + ACTIONS(6076), 5, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6126), 34, + ACTIONS(6074), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115093,6 +113206,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115101,16 +113215,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [51475] = 2, - ACTIONS(6254), 4, + [53044] = 2, + ACTIONS(6080), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6252), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6078), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115136,21 +113249,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [51520] = 2, - ACTIONS(6200), 4, + [53089] = 2, + ACTIONS(6092), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6198), 36, + ACTIONS(6090), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -115179,6 +113292,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115187,15 +113301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [51565] = 2, - ACTIONS(6402), 6, - aux_sym_pandoc_span_token1, + [53134] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(1918), 1, + sym__pandoc_attr_specifier, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6400), 34, + ACTIONS(5988), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115206,6 +113321,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, @@ -115222,23 +113338,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51610] = 2, - ACTIONS(6336), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [53183] = 4, + ACTIONS(6306), 1, + anon_sym_LBRACE, + STATE(2193), 1, + sym_attribute_specifier, + ACTIONS(5958), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6334), 34, + ACTIONS(5956), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115261,28 +113378,28 @@ 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__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, - [51655] = 2, - ACTIONS(6128), 4, + sym__whitespace, + [53232] = 2, + ACTIONS(6310), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 36, + ACTIONS(6308), 37, sym__line_ending, - sym__soft_line_ending, sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115308,6 +113425,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -115316,15 +113434,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [51700] = 2, - ACTIONS(6224), 6, - aux_sym_pandoc_span_token1, + [53277] = 4, + ACTIONS(4186), 1, + anon_sym_LBRACE, + STATE(2194), 1, + sym__pandoc_attr_specifier, + ACTIONS(5964), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6222), 34, + ACTIONS(5962), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115347,70 +113466,29 @@ 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__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, - [51745] = 2, - ACTIONS(6258), 6, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6256), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - aux_sym_target_token1, - anon_sym_DOLLAR_DOLLAR, + [53326] = 4, + ACTIONS(6312), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [51790] = 2, - ACTIONS(6300), 6, - aux_sym_pandoc_span_token1, + STATE(1964), 1, + sym_attribute_specifier, + ACTIONS(5958), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6298), 34, + ACTIONS(5956), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115421,6 +113499,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, @@ -115437,23 +113516,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51835] = 2, - ACTIONS(6320), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [53375] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(1967), 1, + sym__pandoc_attr_specifier, + ACTIONS(5964), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6318), 34, + ACTIONS(5962), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115464,6 +113544,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, @@ -115480,23 +113561,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51880] = 2, - ACTIONS(6348), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [53424] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(1970), 1, + sym__pandoc_attr_specifier, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6346), 34, + ACTIONS(5996), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115507,6 +113589,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, @@ -115523,23 +113606,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51925] = 2, - ACTIONS(6362), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [53473] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(1982), 1, + sym__pandoc_attr_specifier, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6360), 34, + ACTIONS(6000), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115550,6 +113634,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, @@ -115566,24 +113651,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [51970] = 2, - ACTIONS(6372), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [53522] = 2, + ACTIONS(6096), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6370), 34, + ACTIONS(6094), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115609,24 +113693,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52015] = 2, - ACTIONS(6378), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [53567] = 2, + ACTIONS(6100), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6376), 34, + ACTIONS(6098), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115652,24 +113736,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52060] = 2, - ACTIONS(6382), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [53612] = 2, + ACTIONS(6104), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6380), 34, + ACTIONS(6102), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115695,24 +113779,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52105] = 2, - ACTIONS(6394), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [53657] = 2, + ACTIONS(6108), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6392), 34, + ACTIONS(6106), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115738,23 +113822,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52150] = 2, - ACTIONS(6070), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [53702] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(2006), 1, + sym__pandoc_attr_specifier, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6068), 34, + ACTIONS(6004), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115765,6 +113851,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, @@ -115781,24 +113868,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52195] = 2, - ACTIONS(6108), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [53751] = 2, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6106), 34, + ACTIONS(6232), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -115824,23 +113910,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52240] = 2, - ACTIONS(6296), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [53796] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(2008), 1, + sym__pandoc_attr_specifier, + ACTIONS(6010), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6294), 34, + ACTIONS(6008), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115851,6 +113939,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, @@ -115867,66 +113956,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52285] = 2, - ACTIONS(6304), 6, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6302), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - aux_sym_target_token1, - anon_sym_DOLLAR_DOLLAR, + [53845] = 4, + ACTIONS(4935), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [52330] = 2, - ACTIONS(6324), 6, - aux_sym_pandoc_span_token1, + STATE(2009), 1, + sym__pandoc_attr_specifier, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6322), 34, + ACTIONS(6012), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -115937,6 +113984,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, @@ -115953,66 +114001,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52375] = 2, - ACTIONS(6328), 6, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6326), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - aux_sym_target_token1, - anon_sym_DOLLAR_DOLLAR, + [53894] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [52420] = 2, - ACTIONS(6340), 6, - aux_sym_pandoc_span_token1, + STATE(2195), 1, + sym__pandoc_attr_specifier, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6338), 34, + ACTIONS(5996), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116035,25 +114041,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__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, - [52465] = 2, - ACTIONS(6204), 4, + sym__whitespace, + [53943] = 2, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6202), 36, + ACTIONS(6276), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -116082,6 +114088,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -116090,16 +114097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52510] = 2, - ACTIONS(6352), 6, - aux_sym_pandoc_span_token1, + [53988] = 2, + ACTIONS(6238), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6350), 34, + ACTIONS(6236), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116125,24 +114131,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52555] = 2, - ACTIONS(6368), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [54033] = 2, + ACTIONS(6112), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6366), 34, + ACTIONS(6110), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116168,24 +114174,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52600] = 2, - ACTIONS(6292), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [54078] = 2, + ACTIONS(6116), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6290), 34, + ACTIONS(6114), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116211,24 +114217,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52645] = 2, - ACTIONS(6312), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [54123] = 2, + ACTIONS(6120), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6310), 34, + ACTIONS(6118), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116254,24 +114260,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52690] = 2, - ACTIONS(6172), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [54168] = 4, + ACTIONS(2519), 1, + anon_sym_LBRACE, + STATE(1870), 1, + sym__pandoc_attr_specifier, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6170), 34, - sym__soft_line_ending, + ACTIONS(6016), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116297,23 +114305,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, - [52735] = 2, - ACTIONS(6240), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [54217] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(2019), 1, + sym__pandoc_attr_specifier, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6238), 34, + ACTIONS(6020), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116324,6 +114334,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, @@ -116340,21 +114351,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52780] = 2, - ACTIONS(6262), 4, + sym__whitespace, + [54266] = 2, + ACTIONS(6124), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6260), 36, + ACTIONS(6122), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -116383,6 +114393,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -116391,16 +114402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [52825] = 2, - ACTIONS(6244), 6, - aux_sym_pandoc_span_token1, + [54311] = 2, + ACTIONS(6242), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6242), 34, + ACTIONS(6240), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116426,24 +114436,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52870] = 2, - ACTIONS(6266), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [54356] = 2, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6264), 34, + ACTIONS(6280), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116469,24 +114479,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52915] = 2, - ACTIONS(6270), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [54401] = 2, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6268), 34, + ACTIONS(6244), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116512,24 +114522,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [52960] = 2, - ACTIONS(6274), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [54446] = 2, + ACTIONS(6128), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6272), 34, + ACTIONS(6126), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116555,24 +114565,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [53005] = 2, - ACTIONS(6444), 4, + sym__whitespace, + [54491] = 2, + ACTIONS(6132), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6442), 36, + ACTIONS(6130), 37, sym__line_ending, + sym__soft_line_ending, sym__eof, - sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116598,6 +114608,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -116606,16 +114617,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [53050] = 2, - ACTIONS(6278), 6, - aux_sym_pandoc_span_token1, + [54536] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6276), 34, + ACTIONS(6028), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116641,23 +114651,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [53095] = 2, - ACTIONS(6308), 6, + sym__whitespace, + [54581] = 2, + ACTIONS(6084), 5, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6306), 34, + ACTIONS(6082), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116684,6 +114694,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -116692,15 +114703,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [53140] = 2, - ACTIONS(6358), 6, - aux_sym_pandoc_span_token1, + [54626] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(2042), 1, + sym__pandoc_attr_specifier, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6356), 34, + ACTIONS(6024), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116711,6 +114723,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, @@ -116727,23 +114740,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [53185] = 2, - ACTIONS(6386), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [54675] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(2043), 1, + sym__pandoc_attr_specifier, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6384), 34, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116754,6 +114768,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, @@ -116770,25 +114785,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [53230] = 4, - ACTIONS(4226), 1, + sym__whitespace, + [54724] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1643), 1, + STATE(2197), 1, sym__pandoc_attr_specifier, - ACTIONS(6140), 4, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6138), 34, + ACTIONS(6000), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116806,16 +114820,17 @@ 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, @@ -116823,16 +114838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [53279] = 2, - ACTIONS(6164), 6, - aux_sym_pandoc_span_token1, + [54773] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6162), 34, + ACTIONS(5948), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -116858,66 +114872,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [53324] = 2, - ACTIONS(6168), 6, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6166), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - aux_sym_target_token1, - anon_sym_DOLLAR_DOLLAR, + [54818] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [53369] = 2, - ACTIONS(6250), 6, - aux_sym_pandoc_span_token1, + STATE(2198), 1, + sym__pandoc_attr_specifier, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6248), 34, + ACTIONS(6004), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116940,27 +114913,27 @@ 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__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, - [53414] = 2, - ACTIONS(6176), 6, + sym__whitespace, + [54867] = 2, + ACTIONS(6006), 5, aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6174), 34, + ACTIONS(6004), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -116987,6 +114960,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -116995,16 +114969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - [53459] = 2, - ACTIONS(6180), 6, - aux_sym_pandoc_span_token1, + [54912] = 2, + ACTIONS(6136), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6178), 34, + ACTIONS(6134), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117030,24 +115003,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [53504] = 2, - ACTIONS(6184), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [54957] = 2, + ACTIONS(6140), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6182), 34, + ACTIONS(6138), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117073,24 +115046,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [53549] = 2, - ACTIONS(6192), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [55002] = 2, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6190), 34, + ACTIONS(6256), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117116,24 +115089,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [53594] = 2, - ACTIONS(6196), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [55047] = 2, + ACTIONS(6262), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6194), 34, + ACTIONS(6260), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117159,66 +115132,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [53639] = 2, - ACTIONS(6254), 6, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6252), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - aux_sym_target_token1, - anon_sym_DOLLAR_DOLLAR, + [55092] = 4, + ACTIONS(4935), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [53684] = 2, - ACTIONS(6200), 6, - aux_sym_pandoc_span_token1, + STATE(2046), 1, + sym__pandoc_attr_specifier, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6198), 34, + ACTIONS(6032), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117229,6 +115161,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, @@ -117245,66 +115178,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [53729] = 2, - ACTIONS(6204), 6, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6202), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - aux_sym_target_token1, - anon_sym_DOLLAR_DOLLAR, + [55141] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [53774] = 2, - ACTIONS(6262), 6, - aux_sym_pandoc_span_token1, + STATE(2200), 1, + sym__pandoc_attr_specifier, + ACTIONS(6010), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6260), 34, + ACTIONS(6008), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117327,70 +115218,29 @@ 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__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, - [53819] = 2, - ACTIONS(6208), 6, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6206), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - aux_sym_target_token1, - anon_sym_DOLLAR_DOLLAR, + [55190] = 4, + ACTIONS(4935), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [53864] = 3, - ACTIONS(6446), 1, - sym_block_continuation, - ACTIONS(3159), 4, + STATE(2049), 1, + sym__pandoc_attr_specifier, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3157), 35, + ACTIONS(5948), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -117401,6 +115251,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, @@ -117412,73 +115263,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__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, - [53911] = 2, - ACTIONS(6212), 6, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6210), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - aux_sym_target_token1, - anon_sym_DOLLAR_DOLLAR, + [55239] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - anon_sym_PIPE, - [53956] = 2, - ACTIONS(6216), 6, - aux_sym_pandoc_span_token1, + STATE(1876), 1, + sym__pandoc_attr_specifier, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6214), 34, - sym__soft_line_ending, + ACTIONS(6024), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117504,24 +115312,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, - [54001] = 2, - ACTIONS(6220), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [55288] = 2, + ACTIONS(6068), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6218), 34, + ACTIONS(6066), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117547,24 +115355,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54046] = 2, - ACTIONS(6228), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [55333] = 2, + ACTIONS(6072), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6226), 34, + ACTIONS(6070), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117590,24 +115398,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54091] = 2, - ACTIONS(6232), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [55378] = 2, + ACTIONS(6298), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6230), 34, + ACTIONS(6296), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117633,24 +115441,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54136] = 2, - ACTIONS(6236), 6, - aux_sym_pandoc_span_token1, + sym__whitespace, + [55423] = 2, + ACTIONS(6076), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6234), 34, + ACTIONS(6074), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117676,24 +115484,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54181] = 3, - ACTIONS(6448), 1, - sym_block_continuation, - ACTIONS(3159), 4, + sym__whitespace, + [55468] = 2, + ACTIONS(6080), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3157), 35, + ACTIONS(6078), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117715,11 +115523,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -117728,16 +115536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54228] = 2, - ACTIONS(6208), 4, + [55513] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(2079), 1, + sym__pandoc_attr_specifier, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6206), 36, - sym__line_ending, + ACTIONS(6040), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117747,6 +115556,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, @@ -117763,24 +115573,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54273] = 2, - ACTIONS(6188), 4, + [55562] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(2080), 1, + sym__pandoc_attr_specifier, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6186), 36, - sym__line_ending, + ACTIONS(6044), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117790,6 +115601,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, @@ -117806,24 +115618,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54318] = 2, - ACTIONS(6402), 4, + [55611] = 4, + ACTIONS(4186), 1, + anon_sym_LBRACE, + STATE(2201), 1, + sym__pandoc_attr_specifier, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6400), 36, - sym__line_ending, + ACTIONS(6012), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117845,28 +115658,31 @@ 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__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, - [54363] = 2, - ACTIONS(6336), 4, + [55660] = 4, + ACTIONS(2455), 1, + anon_sym_LBRACE, + STATE(2011), 1, + sym__pandoc_attr_specifier, + ACTIONS(5968), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6334), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5966), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117892,24 +115708,26 @@ static const uint16_t ts_small_parse_table[] = { 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_insert_token1, anon_sym_PIPE, - sym__whitespace, - [54408] = 2, - ACTIONS(6316), 4, + [55709] = 4, + ACTIONS(2455), 1, + anon_sym_LBRACE, + STATE(2014), 1, + sym__pandoc_attr_specifier, + ACTIONS(5982), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6314), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5980), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117935,24 +115753,25 @@ static const uint16_t ts_small_parse_table[] = { 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_insert_token1, anon_sym_PIPE, - sym__whitespace, - [54453] = 2, - ACTIONS(6332), 4, + [55758] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(2082), 1, + sym__pandoc_attr_specifier, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6330), 36, - sym__line_ending, + ACTIONS(6048), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -117962,6 +115781,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, @@ -117978,24 +115798,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54498] = 2, - ACTIONS(6324), 4, + [55807] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(2083), 1, + sym__pandoc_attr_specifier, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6322), 36, - sym__line_ending, + ACTIONS(6052), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118005,6 +115826,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, @@ -118021,24 +115843,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54543] = 2, - ACTIONS(6328), 4, + [55856] = 4, + ACTIONS(2455), 1, + anon_sym_LBRACE, + STATE(2017), 1, + sym__pandoc_attr_specifier, + ACTIONS(5954), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6326), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5952), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118064,24 +115888,26 @@ static const uint16_t ts_small_parse_table[] = { 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_insert_token1, anon_sym_PIPE, - sym__whitespace, - [54588] = 2, - ACTIONS(6340), 4, + [55905] = 4, + ACTIONS(2455), 1, + anon_sym_LBRACE, + STATE(2020), 1, + sym__pandoc_attr_specifier, + ACTIONS(5972), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6338), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5970), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118107,24 +115933,26 @@ static const uint16_t ts_small_parse_table[] = { 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_insert_token1, anon_sym_PIPE, - sym__whitespace, - [54633] = 2, - ACTIONS(6224), 4, + [55954] = 4, + ACTIONS(2455), 1, + anon_sym_LBRACE, + STATE(2034), 1, + sym__pandoc_attr_specifier, + ACTIONS(5986), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6222), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5984), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118150,24 +115978,26 @@ static const uint16_t ts_small_parse_table[] = { 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_insert_token1, anon_sym_PIPE, - sym__whitespace, - [54678] = 2, - ACTIONS(6352), 4, + [56003] = 4, + ACTIONS(2455), 1, + anon_sym_LBRACE, + STATE(2037), 1, + sym__pandoc_attr_specifier, + ACTIONS(5990), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6350), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5988), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118193,24 +116023,25 @@ static const uint16_t ts_small_parse_table[] = { 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_insert_token1, anon_sym_PIPE, - sym__whitespace, - [54723] = 2, - ACTIONS(6368), 4, + [56052] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(2118), 1, + sym__pandoc_attr_specifier, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6366), 36, - sym__line_ending, + ACTIONS(6036), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118220,6 +116051,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, @@ -118236,24 +116068,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54768] = 2, - ACTIONS(6258), 4, + [56101] = 2, + ACTIONS(6088), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6256), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6086), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118279,24 +116110,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [54813] = 2, - ACTIONS(6292), 4, + [56146] = 4, + ACTIONS(4935), 1, + anon_sym_LBRACE, + STATE(2121), 1, + sym__pandoc_attr_specifier, + ACTIONS(5976), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6290), 36, - sym__line_ending, + ACTIONS(5974), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118306,6 +116139,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, @@ -118322,21 +116156,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54858] = 2, - ACTIONS(6312), 4, + [56195] = 2, + ACTIONS(6250), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6310), 36, + ACTIONS(6248), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -118365,6 +116198,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -118373,16 +116207,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [54903] = 2, - ACTIONS(6300), 4, + [56240] = 4, + ACTIONS(4186), 1, + anon_sym_LBRACE, + STATE(2156), 1, + sym__pandoc_attr_specifier, + ACTIONS(5968), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6298), 36, - sym__line_ending, + ACTIONS(5966), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118404,28 +116239,30 @@ 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__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, - [54948] = 2, - ACTIONS(6172), 4, + [56289] = 4, + ACTIONS(5094), 1, + anon_sym_LBRACE, + STATE(2196), 1, + sym__pandoc_attr_specifier, + ACTIONS(5968), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6170), 36, - sym__line_ending, + ACTIONS(5966), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118442,6 +116279,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, @@ -118451,24 +116289,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [54993] = 2, - ACTIONS(6240), 4, + [56338] = 4, + ACTIONS(5094), 1, + anon_sym_LBRACE, + STATE(2206), 1, + sym__pandoc_attr_specifier, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6238), 36, - sym__line_ending, + ACTIONS(5980), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118485,6 +116324,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, @@ -118494,24 +116334,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [55038] = 2, - ACTIONS(6320), 4, + [56387] = 4, + ACTIONS(5094), 1, + anon_sym_LBRACE, + STATE(1479), 1, + sym__pandoc_attr_specifier, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6318), 36, - sym__line_ending, + ACTIONS(5952), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118528,6 +116369,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, @@ -118537,21 +116379,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [55083] = 2, - ACTIONS(6244), 4, + [56436] = 2, + ACTIONS(6144), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6242), 36, + ACTIONS(6142), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -118580,6 +116421,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -118588,16 +116430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55128] = 2, - ACTIONS(6348), 4, + [56481] = 4, + ACTIONS(2519), 1, + anon_sym_LBRACE, + STATE(2150), 1, + sym__pandoc_attr_specifier, + ACTIONS(5968), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6346), 36, + ACTIONS(5966), 35, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118623,24 +116466,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, - [55173] = 2, - ACTIONS(6266), 4, + [56530] = 4, + ACTIONS(2519), 1, + anon_sym_LBRACE, + STATE(2177), 1, + sym__pandoc_attr_specifier, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6264), 36, + ACTIONS(5980), 35, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118666,24 +116511,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, - [55218] = 2, - ACTIONS(6270), 4, + [56579] = 4, + ACTIONS(2519), 1, + anon_sym_LBRACE, + STATE(2228), 1, + sym__pandoc_attr_specifier, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6268), 36, + ACTIONS(5952), 35, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118709,24 +116556,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, - [55263] = 2, - ACTIONS(6274), 4, + [56628] = 4, + ACTIONS(2519), 1, + anon_sym_LBRACE, + STATE(1810), 1, + sym__pandoc_attr_specifier, + ACTIONS(5972), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6272), 36, + ACTIONS(5970), 35, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118752,24 +116601,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, - [55308] = 2, - ACTIONS(6344), 4, + [56677] = 4, + ACTIONS(5094), 1, + anon_sym_LBRACE, + STATE(1482), 1, + sym__pandoc_attr_specifier, + ACTIONS(5972), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6342), 36, - sym__line_ending, + ACTIONS(5970), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118786,6 +116637,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, @@ -118795,24 +116647,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [55353] = 2, - ACTIONS(6278), 4, + [56726] = 4, + ACTIONS(5094), 1, + anon_sym_LBRACE, + STATE(1516), 1, + sym__pandoc_attr_specifier, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6276), 36, - sym__line_ending, + ACTIONS(5984), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118829,6 +116682,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, @@ -118838,24 +116692,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [55398] = 2, - ACTIONS(6308), 4, + [56775] = 4, + ACTIONS(2519), 1, + anon_sym_LBRACE, + STATE(1804), 1, + sym__pandoc_attr_specifier, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6306), 36, + ACTIONS(5984), 35, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118881,24 +116736,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, - [55443] = 2, - ACTIONS(6372), 4, + [56824] = 4, + ACTIONS(2519), 1, + anon_sym_LBRACE, + STATE(2183), 1, + sym__pandoc_attr_specifier, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6370), 36, + ACTIONS(5988), 35, sym__line_ending, - sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -118924,21 +116781,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, - [55488] = 2, - ACTIONS(6378), 4, + [56873] = 2, + ACTIONS(6148), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6376), 36, + ACTIONS(6146), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -118967,6 +116824,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -118975,18 +116833,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55533] = 4, - ACTIONS(2815), 1, - anon_sym_LBRACE, - STATE(1967), 1, - sym__pandoc_attr_specifier, - ACTIONS(6112), 4, + [56918] = 2, + ACTIONS(6152), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6110), 34, + ACTIONS(6150), 37, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119012,26 +116867,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, - [55582] = 4, - ACTIONS(2815), 1, + [56963] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1977), 1, + STATE(2203), 1, sym__pandoc_attr_specifier, - ACTIONS(6156), 4, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6154), 34, - sym__line_ending, + ACTIONS(6016), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119053,11 +116908,12 @@ 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, @@ -119065,18 +116921,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [55631] = 4, - ACTIONS(2815), 1, + [57012] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1980), 1, + STATE(2205), 1, sym__pandoc_attr_specifier, - ACTIONS(6160), 4, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6158), 34, - sym__line_ending, + ACTIONS(6020), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119098,11 +116953,12 @@ 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, @@ -119110,18 +116966,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [55680] = 4, - ACTIONS(2815), 1, - anon_sym_LBRACE, - STATE(1983), 1, - sym__pandoc_attr_specifier, - ACTIONS(6066), 4, + [57061] = 2, + ACTIONS(6156), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6064), 34, + ACTIONS(6154), 37, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119147,24 +117000,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, - [55729] = 3, - ACTIONS(6450), 1, - sym_block_continuation, - ACTIONS(3159), 4, + [57106] = 2, + ACTIONS(6160), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3157), 35, + ACTIONS(6158), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119187,10 +117040,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -119199,18 +117052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [55776] = 4, - ACTIONS(2493), 1, + [57151] = 4, + ACTIONS(6314), 1, anon_sym_LBRACE, - STATE(1907), 1, - sym__pandoc_attr_specifier, - ACTIONS(6112), 5, + STATE(2057), 1, + sym_attribute_specifier, + ACTIONS(5958), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6110), 33, + ACTIONS(5956), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119237,6 +117089,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -119244,18 +117097,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, aux_sym_insert_token1, anon_sym_PIPE, - [55825] = 4, - ACTIONS(2493), 1, + [57200] = 4, + ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1910), 1, + STATE(1525), 1, sym__pandoc_attr_specifier, - ACTIONS(6156), 5, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, + ACTIONS(5988), 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, - ACTIONS(6154), 33, + [57249] = 4, + ACTIONS(6316), 1, + anon_sym_LBRACE, + STATE(1570), 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, @@ -119273,6 +117169,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, @@ -119282,25 +117179,25 @@ static const uint16_t ts_small_parse_table[] = { 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_PIPE, - [55874] = 4, - ACTIONS(2493), 1, + sym__whitespace, + [57298] = 4, + ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(1913), 1, + STATE(2058), 1, sym__pandoc_attr_specifier, - ACTIONS(6160), 5, + ACTIONS(5964), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6158), 33, + ACTIONS(5962), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119327,6 +117224,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -119334,18 +117232,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, aux_sym_insert_token1, anon_sym_PIPE, - [55923] = 4, - ACTIONS(2493), 1, + [57347] = 4, + ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(1916), 1, + STATE(2059), 1, sym__pandoc_attr_specifier, - ACTIONS(6066), 5, + ACTIONS(5998), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6064), 33, + ACTIONS(5996), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119372,6 +117269,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -119379,15 +117277,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, aux_sym_insert_token1, anon_sym_PIPE, - [55972] = 3, - ACTIONS(6452), 1, - sym_block_continuation, - ACTIONS(3159), 4, + [57396] = 4, + ACTIONS(2455), 1, + anon_sym_LBRACE, + STATE(2061), 1, + sym__pandoc_attr_specifier, + ACTIONS(6002), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3157), 35, + sym__whitespace, + ACTIONS(6000), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119412,26 +117312,27 @@ 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, 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, - [56019] = 2, - ACTIONS(3446), 6, - aux_sym_pandoc_span_token1, + [57445] = 4, + ACTIONS(2455), 1, + anon_sym_LBRACE, + STATE(2062), 1, + sym__pandoc_attr_specifier, + ACTIONS(6006), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(3444), 34, + ACTIONS(6004), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119458,26 +117359,25 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_insert_token1, anon_sym_PIPE, - [56064] = 4, - ACTIONS(2493), 1, + [57494] = 4, + ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(1929), 1, + STATE(2064), 1, sym__pandoc_attr_specifier, - ACTIONS(6078), 5, + ACTIONS(6010), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6076), 33, + ACTIONS(6008), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119504,6 +117404,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -119511,18 +117412,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, aux_sym_insert_token1, anon_sym_PIPE, - [56113] = 4, - ACTIONS(2493), 1, + [57543] = 4, + ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(1932), 1, + STATE(2065), 1, sym__pandoc_attr_specifier, - ACTIONS(6082), 5, + ACTIONS(6014), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6080), 33, + ACTIONS(6012), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -119549,6 +117449,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -119556,18 +117457,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, aux_sym_insert_token1, anon_sym_PIPE, - [56162] = 4, - ACTIONS(2815), 1, + [57592] = 4, + ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(2006), 1, + STATE(2067), 1, sym__pandoc_attr_specifier, - ACTIONS(6078), 4, + ACTIONS(6018), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6076), 34, - sym__line_ending, + sym__whitespace, + ACTIONS(6016), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119593,26 +117494,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, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [56211] = 4, - ACTIONS(2815), 1, + [57641] = 4, + ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(2009), 1, + STATE(2068), 1, sym__pandoc_attr_specifier, - ACTIONS(6082), 4, + ACTIONS(6022), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6080), 34, - sym__line_ending, + sym__whitespace, + ACTIONS(6020), 34, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119638,24 +117539,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, + aux_sym_insert_token1, anon_sym_PIPE, - sym__whitespace, - [56260] = 2, - ACTIONS(6382), 4, + [57690] = 4, + ACTIONS(5094), 1, + anon_sym_LBRACE, + STATE(1575), 1, + sym__pandoc_attr_specifier, + ACTIONS(5964), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6380), 36, - sym__line_ending, + ACTIONS(5962), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119672,6 +117574,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, @@ -119681,24 +117584,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [56305] = 2, - ACTIONS(6394), 4, + [57739] = 4, + ACTIONS(5094), 1, + anon_sym_LBRACE, + STATE(1576), 1, + sym__pandoc_attr_specifier, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6392), 36, - sym__line_ending, + ACTIONS(5996), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119715,6 +117619,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, @@ -119724,24 +117629,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [56350] = 2, - ACTIONS(6070), 4, + [57788] = 4, + ACTIONS(2455), 1, + anon_sym_LBRACE, + STATE(2073), 1, + sym__pandoc_attr_specifier, + ACTIONS(6026), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6024), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119767,24 +117674,26 @@ static const uint16_t ts_small_parse_table[] = { 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_insert_token1, anon_sym_PIPE, - sym__whitespace, - [56395] = 2, - ACTIONS(6390), 4, + [57837] = 4, + ACTIONS(2455), 1, + anon_sym_LBRACE, + STATE(2074), 1, + sym__pandoc_attr_specifier, + ACTIONS(6030), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6388), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6028), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119810,24 +117719,26 @@ static const uint16_t ts_small_parse_table[] = { 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_insert_token1, anon_sym_PIPE, - sym__whitespace, - [56440] = 2, - ACTIONS(6108), 4, + [57886] = 4, + ACTIONS(2455), 1, + anon_sym_LBRACE, + STATE(2076), 1, + sym__pandoc_attr_specifier, + ACTIONS(6034), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6032), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119853,24 +117764,26 @@ static const uint16_t ts_small_parse_table[] = { 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_insert_token1, anon_sym_PIPE, - sym__whitespace, - [56485] = 2, - ACTIONS(6296), 4, + [57935] = 4, + ACTIONS(2455), 1, + anon_sym_LBRACE, + STATE(2077), 1, + sym__pandoc_attr_specifier, + ACTIONS(5950), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6294), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5948), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119896,24 +117809,23 @@ static const uint16_t ts_small_parse_table[] = { 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_insert_token1, anon_sym_PIPE, - sym__whitespace, - [56530] = 2, - ACTIONS(6304), 4, + [57984] = 2, + ACTIONS(6092), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6302), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6090), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -119939,21 +117851,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [56575] = 2, - ACTIONS(6220), 4, + [58029] = 2, + ACTIONS(6288), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6218), 36, + ACTIONS(6286), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -119982,6 +117894,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -119990,13 +117903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [56620] = 2, - ACTIONS(6228), 4, + [58074] = 2, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6226), 36, + ACTIONS(6164), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -120025,6 +117937,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -120033,18 +117946,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [56665] = 4, - ACTIONS(6454), 1, + [58119] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1953), 1, - sym_attribute_specifier, - ACTIONS(6090), 5, + STATE(2209), 1, + sym__pandoc_attr_specifier, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6088), 33, + ACTIONS(6024), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120067,30 +117978,28 @@ 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__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, - [56714] = 4, - ACTIONS(2493), 1, - anon_sym_LBRACE, - STATE(1954), 1, - sym__pandoc_attr_specifier, - ACTIONS(6116), 5, + sym__whitespace, + [58168] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6114), 33, + ACTIONS(6168), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120116,26 +118025,24 @@ static const uint16_t ts_small_parse_table[] = { 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_PIPE, - [56763] = 4, - ACTIONS(2493), 1, anon_sym_LBRACE, - STATE(1955), 1, - sym__pandoc_attr_specifier, - ACTIONS(6120), 5, + anon_sym_PIPE, + sym__whitespace, + [58213] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6118), 33, + ACTIONS(6172), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120161,25 +118068,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [56812] = 4, - ACTIONS(2493), 1, + sym__whitespace, + [58258] = 4, + ACTIONS(4186), 1, anon_sym_LBRACE, - STATE(1957), 1, + STATE(2210), 1, sym__pandoc_attr_specifier, - ACTIONS(6124), 5, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6122), 33, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120202,29 +118109,29 @@ 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__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, - [56861] = 4, - ACTIONS(2493), 1, + sym__whitespace, + [58307] = 4, + ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1958), 1, + STATE(1580), 1, sym__pandoc_attr_specifier, - ACTIONS(6128), 5, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6126), 33, + ACTIONS(6000), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120242,6 +118149,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, @@ -120251,25 +118159,24 @@ static const uint16_t ts_small_parse_table[] = { 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_PIPE, - [56910] = 4, - ACTIONS(2493), 1, + sym__whitespace, + [58356] = 4, + ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1960), 1, + STATE(1582), 1, sym__pandoc_attr_specifier, - ACTIONS(6132), 5, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6130), 33, + ACTIONS(6004), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120287,6 +118194,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, @@ -120296,26 +118204,23 @@ static const uint16_t ts_small_parse_table[] = { 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_PIPE, - [56959] = 4, - ACTIONS(2493), 1, - anon_sym_LBRACE, - STATE(1961), 1, - sym__pandoc_attr_specifier, - ACTIONS(6054), 5, + sym__whitespace, + [58405] = 2, + ACTIONS(6058), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6052), 33, + ACTIONS(6056), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120341,25 +118246,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [57008] = 4, - ACTIONS(2493), 1, + sym__whitespace, + [58450] = 4, + ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1963), 1, + STATE(1585), 1, sym__pandoc_attr_specifier, - ACTIONS(6144), 5, + ACTIONS(6010), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6142), 33, + ACTIONS(6008), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120377,6 +118282,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, @@ -120386,26 +118292,23 @@ static const uint16_t ts_small_parse_table[] = { 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_PIPE, - [57057] = 4, - ACTIONS(2493), 1, - anon_sym_LBRACE, - STATE(1964), 1, - sym__pandoc_attr_specifier, - ACTIONS(6062), 5, + sym__whitespace, + [58499] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6060), 33, + ACTIONS(6176), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120431,25 +118334,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [57106] = 4, - ACTIONS(2493), 1, + sym__whitespace, + [58544] = 4, + ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(1969), 1, + STATE(2102), 1, sym__pandoc_attr_specifier, - ACTIONS(6136), 5, + ACTIONS(6042), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6134), 33, + ACTIONS(6040), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120476,6 +118380,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -120483,18 +118388,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, aux_sym_insert_token1, anon_sym_PIPE, - [57155] = 4, - ACTIONS(2493), 1, + [58593] = 4, + ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(1970), 1, + STATE(2103), 1, sym__pandoc_attr_specifier, - ACTIONS(6070), 5, + ACTIONS(6046), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6068), 33, + ACTIONS(6044), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120521,6 +118425,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -120528,18 +118433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, aux_sym_insert_token1, anon_sym_PIPE, - [57204] = 4, - ACTIONS(2493), 1, + [58642] = 4, + ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(1972), 1, + STATE(2104), 1, sym__pandoc_attr_specifier, - ACTIONS(6104), 5, + ACTIONS(6050), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6102), 33, + ACTIONS(6048), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120566,6 +118470,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -120573,18 +118478,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, aux_sym_insert_token1, anon_sym_PIPE, - [57253] = 4, - ACTIONS(2493), 1, + [58691] = 4, + ACTIONS(2455), 1, anon_sym_LBRACE, - STATE(1973), 1, + STATE(2105), 1, sym__pandoc_attr_specifier, - ACTIONS(6108), 5, + ACTIONS(6054), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6106), 33, + ACTIONS(6052), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -120611,6 +118515,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -120618,13 +118523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, aux_sym_insert_token1, anon_sym_PIPE, - [57302] = 2, - ACTIONS(6358), 4, + [58740] = 2, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6356), 36, + ACTIONS(6180), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -120653,6 +118557,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -120661,16 +118566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [57347] = 2, - ACTIONS(6386), 4, + [58785] = 4, + ACTIONS(2455), 1, + anon_sym_LBRACE, + STATE(2111), 1, + sym__pandoc_attr_specifier, + ACTIONS(6038), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6384), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6036), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120696,24 +118603,25 @@ static const uint16_t ts_small_parse_table[] = { 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_insert_token1, anon_sym_PIPE, - sym__whitespace, - [57392] = 2, - ACTIONS(6398), 4, + [58834] = 4, + ACTIONS(5094), 1, + anon_sym_LBRACE, + STATE(1586), 1, + sym__pandoc_attr_specifier, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6396), 36, - sym__line_ending, + ACTIONS(6012), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120730,6 +118638,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, @@ -120739,24 +118648,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [57437] = 2, - ACTIONS(6216), 4, + [58883] = 4, + ACTIONS(5094), 1, + anon_sym_LBRACE, + STATE(1589), 1, + sym__pandoc_attr_specifier, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6214), 36, - sym__line_ending, + ACTIONS(6016), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120773,6 +118683,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, @@ -120782,24 +118693,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [57482] = 2, - ACTIONS(6164), 4, + [58932] = 4, + ACTIONS(5094), 1, + anon_sym_LBRACE, + STATE(1591), 1, + sym__pandoc_attr_specifier, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6162), 36, - sym__line_ending, + ACTIONS(6020), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120816,6 +118728,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, @@ -120825,24 +118738,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [57527] = 2, - ACTIONS(6168), 4, + [58981] = 4, + ACTIONS(2455), 1, + anon_sym_LBRACE, + STATE(2112), 1, + sym__pandoc_attr_specifier, + ACTIONS(5976), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6166), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(5974), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120868,24 +118783,70 @@ static const uint16_t ts_small_parse_table[] = { 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_PIPE, + [59030] = 4, + ACTIONS(5094), 1, anon_sym_LBRACE, + STATE(1607), 1, + sym__pandoc_attr_specifier, + ACTIONS(6026), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6024), 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, - [57572] = 2, - ACTIONS(6250), 4, + [59079] = 4, + ACTIONS(5094), 1, + anon_sym_LBRACE, + STATE(1608), 1, + sym__pandoc_attr_specifier, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6248), 36, - sym__line_ending, + ACTIONS(6028), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120902,6 +118863,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, @@ -120911,24 +118873,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [57617] = 2, - ACTIONS(6456), 4, + [59128] = 4, + ACTIONS(5094), 1, + anon_sym_LBRACE, + STATE(1614), 1, + sym__pandoc_attr_specifier, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2320), 36, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(6032), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120945,6 +118908,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, @@ -120954,24 +118918,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [57662] = 2, - ACTIONS(6176), 4, + [59177] = 4, + ACTIONS(5094), 1, + anon_sym_LBRACE, + STATE(1620), 1, + sym__pandoc_attr_specifier, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6174), 36, - sym__line_ending, + ACTIONS(5948), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -120988,6 +118953,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, @@ -120997,21 +118963,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - [57707] = 2, - ACTIONS(6180), 4, + [59226] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6178), 36, + ACTIONS(6184), 37, sym__line_ending, sym__soft_line_ending, sym__eof, @@ -121040,6 +119005,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -121048,16 +119014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [57752] = 2, - ACTIONS(6184), 4, + [59271] = 2, + ACTIONS(6096), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6182), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6094), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121083,72 +119048,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [57797] = 4, - ACTIONS(6458), 1, - anon_sym_LBRACE, - STATE(1739), 1, - sym_attribute_specifier, - ACTIONS(6090), 4, + [59316] = 2, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6088), 34, + ACTIONS(6188), 37, 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - anon_sym_PIPE, - sym__whitespace, - [57846] = 4, - ACTIONS(2493), 1, - anon_sym_LBRACE, - STATE(1992), 1, - sym__pandoc_attr_specifier, - ACTIONS(6148), 5, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6146), 33, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121174,116 +119091,24 @@ static const uint16_t ts_small_parse_table[] = { 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_PIPE, - [57895] = 4, - ACTIONS(2493), 1, anon_sym_LBRACE, - STATE(1993), 1, - sym__pandoc_attr_specifier, - ACTIONS(6058), 5, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6056), 33, - 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [57944] = 4, - ACTIONS(2493), 1, - anon_sym_LBRACE, - STATE(1994), 1, - sym__pandoc_attr_specifier, - ACTIONS(6100), 5, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6098), 33, - 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, - anon_sym_PIPE, - [57993] = 4, - ACTIONS(2493), 1, - anon_sym_LBRACE, - STATE(1995), 1, - sym__pandoc_attr_specifier, - ACTIONS(6086), 5, + [59361] = 2, + ACTIONS(6194), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6084), 33, + ACTIONS(6192), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121309,70 +119134,23 @@ static const uint16_t ts_small_parse_table[] = { 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_PIPE, - [58042] = 4, - ACTIONS(2493), 1, anon_sym_LBRACE, - STATE(2000), 1, - sym__pandoc_attr_specifier, - ACTIONS(6096), 5, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6094), 33, - 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_PIPE, - [58091] = 4, - ACTIONS(2493), 1, - anon_sym_LBRACE, - STATE(2001), 1, - sym__pandoc_attr_specifier, - ACTIONS(6140), 5, + sym__whitespace, + [59406] = 2, + ACTIONS(6100), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6138), 33, + ACTIONS(6098), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -121399,24 +119177,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - aux_sym_insert_token1, + anon_sym_LBRACE, anon_sym_PIPE, - [58140] = 4, - ACTIONS(2815), 1, + [59451] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(1779), 1, + STATE(1879), 1, sym__pandoc_attr_specifier, - ACTIONS(6116), 4, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6114), 34, + ACTIONS(6032), 35, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -121444,6 +119223,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -121451,18 +119231,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58189] = 4, - ACTIONS(2815), 1, - anon_sym_LBRACE, - STATE(1866), 1, - sym__pandoc_attr_specifier, - ACTIONS(6120), 4, + [59500] = 2, + ACTIONS(6254), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6118), 34, + ACTIONS(6252), 37, sym__line_ending, + sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121488,26 +119265,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, - [58238] = 4, - ACTIONS(2815), 1, + [59545] = 4, + ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1956), 1, + STATE(1626), 1, sym__pandoc_attr_specifier, - ACTIONS(6124), 4, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6122), 34, - sym__line_ending, + ACTIONS(6040), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121524,6 +119301,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, @@ -121533,7 +119311,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, anon_sym_LBRACK, @@ -121541,18 +119319,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58287] = 4, - ACTIONS(2815), 1, + [59594] = 4, + ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(2086), 1, + STATE(1629), 1, sym__pandoc_attr_specifier, - ACTIONS(6128), 4, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 34, - sym__line_ending, + ACTIONS(6044), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121569,6 +119346,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, @@ -121578,7 +119356,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, anon_sym_LBRACK, @@ -121586,18 +119364,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58336] = 4, - ACTIONS(2815), 1, + [59643] = 4, + ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(2256), 1, + STATE(1634), 1, sym__pandoc_attr_specifier, - ACTIONS(6132), 4, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6130), 34, - sym__line_ending, + ACTIONS(6048), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121614,6 +119391,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, @@ -121623,7 +119401,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, anon_sym_LBRACK, @@ -121631,18 +119409,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58385] = 4, - ACTIONS(2815), 1, + [59692] = 4, + ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1531), 1, + STATE(1637), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 4, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6052), 34, - sym__line_ending, + ACTIONS(6052), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121659,6 +119436,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, @@ -121668,7 +119446,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, anon_sym_LBRACK, @@ -121676,18 +119454,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58434] = 4, - ACTIONS(2815), 1, + [59741] = 4, + ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1580), 1, + STATE(1658), 1, sym__pandoc_attr_specifier, - ACTIONS(6144), 4, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6142), 34, - sym__line_ending, + ACTIONS(6036), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121704,6 +119481,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, @@ -121713,7 +119491,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, anon_sym_LBRACK, @@ -121721,18 +119499,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58483] = 4, - ACTIONS(2815), 1, + [59790] = 4, + ACTIONS(5094), 1, anon_sym_LBRACE, - STATE(1622), 1, + STATE(1659), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 4, + ACTIONS(5976), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6060), 34, - sym__line_ending, + ACTIONS(5974), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121749,6 +119526,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, @@ -121758,7 +119536,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, anon_sym_LBRACK, @@ -121766,17 +119544,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58532] = 4, - ACTIONS(2815), 1, + [59839] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(1716), 1, + STATE(1882), 1, sym__pandoc_attr_specifier, - ACTIONS(6136), 4, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6134), 34, + ACTIONS(5948), 35, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -121804,6 +119581,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -121811,18 +119589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58581] = 4, - ACTIONS(2815), 1, + [59888] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(1717), 1, + STATE(1684), 1, sym__pandoc_attr_specifier, - ACTIONS(6070), 4, + ACTIONS(5968), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 34, - sym__line_ending, + ACTIONS(5966), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121840,6 +119617,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, @@ -121848,7 +119626,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, anon_sym_LBRACK, @@ -121856,18 +119634,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58630] = 4, - ACTIONS(2815), 1, - anon_sym_LBRACE, - STATE(1721), 1, - sym__pandoc_attr_specifier, - ACTIONS(6104), 4, + [59937] = 2, + ACTIONS(6318), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6102), 34, + ACTIONS(2366), 37, sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121893,26 +119668,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, - [58679] = 4, - ACTIONS(2815), 1, - anon_sym_LBRACE, - STATE(1725), 1, - sym__pandoc_attr_specifier, - ACTIONS(6108), 4, + [59982] = 2, + ACTIONS(6104), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 34, - sym__line_ending, + sym__whitespace, + ACTIONS(6102), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121938,24 +119711,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, - [58728] = 2, - ACTIONS(6192), 4, + [60027] = 4, + ACTIONS(5253), 1, + anon_sym_LBRACE, + STATE(1687), 1, + sym__pandoc_attr_specifier, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6190), 36, - sym__line_ending, + ACTIONS(5980), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -121973,6 +119748,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, @@ -121981,24 +119757,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [58773] = 2, - ACTIONS(6438), 4, + [60076] = 4, + ACTIONS(5253), 1, + anon_sym_LBRACE, + STATE(1690), 1, + sym__pandoc_attr_specifier, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6436), 36, - sym__line_ending, + ACTIONS(5952), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122016,6 +119793,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, @@ -122024,24 +119802,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [58818] = 2, - ACTIONS(3446), 4, + [60125] = 4, + ACTIONS(5253), 1, + anon_sym_LBRACE, + STATE(1693), 1, + sym__pandoc_attr_specifier, + ACTIONS(5972), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3444), 36, - sym__line_ending, + ACTIONS(5970), 35, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -122059,6 +119838,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, @@ -122067,25 +119847,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [58863] = 4, - ACTIONS(3990), 1, + [60174] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2042), 1, + STATE(1710), 1, sym__pandoc_attr_specifier, - ACTIONS(6112), 4, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6110), 34, + ACTIONS(5984), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122095,7 +119874,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, @@ -122105,6 +119883,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, @@ -122113,6 +119892,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122120,17 +119900,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58912] = 4, - ACTIONS(3990), 1, + [60223] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2045), 1, + STATE(1713), 1, sym__pandoc_attr_specifier, - ACTIONS(6156), 4, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6154), 34, + ACTIONS(5988), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122140,7 +119919,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, @@ -122150,6 +119928,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, @@ -122158,6 +119937,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122165,17 +119945,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [58961] = 4, - ACTIONS(3990), 1, + [60272] = 4, + ACTIONS(6320), 1, anon_sym_LBRACE, - STATE(2048), 1, - sym__pandoc_attr_specifier, - ACTIONS(6160), 4, + STATE(1724), 1, + sym_attribute_specifier, + ACTIONS(5958), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6158), 34, + ACTIONS(5956), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122185,7 +119964,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, @@ -122195,6 +119973,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, @@ -122203,6 +119982,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122210,17 +119990,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59010] = 4, - ACTIONS(3990), 1, + [60321] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2051), 1, + STATE(1725), 1, sym__pandoc_attr_specifier, - ACTIONS(6066), 4, + ACTIONS(5964), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6064), 34, + ACTIONS(5962), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122230,7 +120009,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, @@ -122240,6 +120018,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, @@ -122248,6 +120027,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122255,17 +120035,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59059] = 4, - ACTIONS(3990), 1, + [60370] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2064), 1, + STATE(1726), 1, sym__pandoc_attr_specifier, - ACTIONS(6078), 4, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6076), 34, + ACTIONS(5996), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122275,7 +120054,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, @@ -122285,6 +120063,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, @@ -122293,6 +120072,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122300,17 +120080,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59108] = 4, - ACTIONS(3990), 1, + [60419] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2067), 1, + STATE(1728), 1, sym__pandoc_attr_specifier, - ACTIONS(6082), 4, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6080), 34, + ACTIONS(6000), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122320,7 +120099,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, @@ -122330,6 +120108,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, @@ -122338,6 +120117,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122345,17 +120125,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59157] = 4, - ACTIONS(6460), 1, + [60468] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2077), 1, - sym_attribute_specifier, - ACTIONS(6090), 4, + STATE(1729), 1, + sym__pandoc_attr_specifier, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6088), 34, + ACTIONS(6004), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122365,7 +120144,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, @@ -122375,6 +120153,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, @@ -122383,6 +120162,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122390,17 +120170,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59206] = 4, - ACTIONS(3990), 1, + [60517] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2078), 1, + STATE(1730), 1, sym__pandoc_attr_specifier, - ACTIONS(6116), 4, + ACTIONS(6010), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6114), 34, + ACTIONS(6008), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122410,7 +120189,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, @@ -122420,6 +120198,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, @@ -122428,6 +120207,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122435,17 +120215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59255] = 4, - ACTIONS(3990), 1, + [60566] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2079), 1, + STATE(1731), 1, sym__pandoc_attr_specifier, - ACTIONS(6120), 4, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6118), 34, + ACTIONS(6012), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122455,7 +120234,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, @@ -122465,6 +120243,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, @@ -122473,6 +120252,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122480,17 +120260,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59304] = 4, - ACTIONS(3990), 1, + [60615] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2081), 1, + STATE(1733), 1, sym__pandoc_attr_specifier, - ACTIONS(6124), 4, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6122), 34, + ACTIONS(6016), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122500,7 +120279,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, @@ -122510,6 +120288,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, @@ -122518,6 +120297,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122525,17 +120305,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59353] = 4, - ACTIONS(3990), 1, + [60664] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2082), 1, + STATE(1734), 1, sym__pandoc_attr_specifier, - ACTIONS(6128), 4, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 34, + ACTIONS(6020), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122545,7 +120324,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, @@ -122555,6 +120333,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, @@ -122563,6 +120342,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122570,17 +120350,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59402] = 4, - ACTIONS(3990), 1, + [60713] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2084), 1, + STATE(1743), 1, sym__pandoc_attr_specifier, - ACTIONS(6132), 4, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6130), 34, + ACTIONS(6024), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122590,7 +120369,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, @@ -122600,6 +120378,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, @@ -122608,6 +120387,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122615,17 +120395,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59451] = 4, - ACTIONS(3990), 1, + [60762] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2085), 1, + STATE(1744), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 4, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6052), 34, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122635,7 +120414,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, @@ -122645,6 +120423,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, @@ -122653,6 +120432,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122660,17 +120440,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59500] = 4, - ACTIONS(3990), 1, + [60811] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2087), 1, + STATE(1759), 1, sym__pandoc_attr_specifier, - ACTIONS(6144), 4, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6142), 34, + ACTIONS(6032), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122680,7 +120459,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, @@ -122690,6 +120468,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, @@ -122698,6 +120477,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122705,17 +120485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59549] = 4, - ACTIONS(3990), 1, + [60860] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2088), 1, + STATE(1760), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 4, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6060), 34, + ACTIONS(5948), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122725,7 +120504,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, @@ -122735,6 +120513,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, @@ -122743,6 +120522,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122750,17 +120530,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59598] = 4, - ACTIONS(3990), 1, + [60909] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2092), 1, + STATE(1762), 1, sym__pandoc_attr_specifier, - ACTIONS(6136), 4, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6134), 34, + ACTIONS(6040), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122770,7 +120549,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, @@ -122780,6 +120558,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, @@ -122788,6 +120567,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122795,17 +120575,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59647] = 4, - ACTIONS(3990), 1, + [60958] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2093), 1, + STATE(1769), 1, sym__pandoc_attr_specifier, - ACTIONS(6070), 4, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 34, + ACTIONS(6044), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122815,7 +120594,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, @@ -122825,6 +120603,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, @@ -122833,6 +120612,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122840,17 +120620,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59696] = 4, - ACTIONS(3990), 1, + [61007] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2095), 1, + STATE(1770), 1, sym__pandoc_attr_specifier, - ACTIONS(6104), 4, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6102), 34, + ACTIONS(6048), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122860,7 +120639,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, @@ -122870,6 +120648,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, @@ -122878,6 +120657,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122885,17 +120665,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59745] = 4, - ACTIONS(3990), 1, + [61056] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2096), 1, + STATE(1771), 1, sym__pandoc_attr_specifier, - ACTIONS(6108), 4, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 34, + ACTIONS(6052), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122905,7 +120684,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, @@ -122915,6 +120693,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, @@ -122923,6 +120702,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122930,17 +120710,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59794] = 4, - ACTIONS(3990), 1, + [61105] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2098), 1, + STATE(1776), 1, sym__pandoc_attr_specifier, - ACTIONS(6148), 4, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6146), 34, + ACTIONS(6036), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122950,7 +120729,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, @@ -122960,6 +120738,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, @@ -122968,6 +120747,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -122975,17 +120755,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59843] = 4, - ACTIONS(3990), 1, + [61154] = 4, + ACTIONS(5253), 1, anon_sym_LBRACE, - STATE(2099), 1, + STATE(1777), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 4, + ACTIONS(5976), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6056), 34, + ACTIONS(5974), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -122995,7 +120774,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, @@ -123005,6 +120783,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, @@ -123013,6 +120792,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123020,17 +120800,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59892] = 4, - ACTIONS(3990), 1, + [61203] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2100), 1, + STATE(1800), 1, sym__pandoc_attr_specifier, - ACTIONS(6100), 4, + ACTIONS(5968), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6098), 34, + ACTIONS(5966), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123040,7 +120819,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, @@ -123051,6 +120829,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, @@ -123058,6 +120837,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123065,17 +120845,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59941] = 4, - ACTIONS(3990), 1, + [61252] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2101), 1, + STATE(1802), 1, sym__pandoc_attr_specifier, - ACTIONS(6086), 4, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6084), 34, + ACTIONS(5980), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123085,7 +120864,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, @@ -123096,6 +120874,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, @@ -123103,6 +120882,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123110,17 +120890,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [59990] = 4, - ACTIONS(3990), 1, + [61301] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2106), 1, + STATE(1805), 1, sym__pandoc_attr_specifier, - ACTIONS(6096), 4, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6094), 34, + ACTIONS(5952), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123130,7 +120909,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, @@ -123141,6 +120919,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, @@ -123148,6 +120927,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123155,17 +120935,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60039] = 4, - ACTIONS(3990), 1, + [61350] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2107), 1, + STATE(1808), 1, sym__pandoc_attr_specifier, - ACTIONS(6140), 4, + ACTIONS(5972), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6138), 34, + ACTIONS(5970), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123175,7 +120954,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, @@ -123186,6 +120964,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, @@ -123193,6 +120972,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123200,15 +120980,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60088] = 3, - ACTIONS(6462), 1, - sym_block_continuation, - ACTIONS(3159), 4, + [61399] = 4, + ACTIONS(6322), 1, + anon_sym_LBRACE, + STATE(1859), 1, + sym_attribute_specifier, + ACTIONS(5958), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3157), 35, + ACTIONS(5956), 35, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -123236,25 +121017,24 @@ static const uint16_t ts_small_parse_table[] = { 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, - [60135] = 4, - ACTIONS(4058), 1, + [61448] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2131), 1, + STATE(1821), 1, sym__pandoc_attr_specifier, - ACTIONS(6112), 4, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6110), 34, + ACTIONS(5984), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123265,7 +121045,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, @@ -123275,6 +121054,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, @@ -123282,6 +121062,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123289,17 +121070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60184] = 4, - ACTIONS(4058), 1, + [61497] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2134), 1, + STATE(1824), 1, sym__pandoc_attr_specifier, - ACTIONS(6156), 4, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6154), 34, + ACTIONS(5988), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123310,7 +121090,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, @@ -123320,6 +121099,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, @@ -123327,6 +121107,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123334,17 +121115,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60233] = 4, - ACTIONS(4058), 1, + [61546] = 4, + ACTIONS(6324), 1, anon_sym_LBRACE, - STATE(2137), 1, - sym__pandoc_attr_specifier, - ACTIONS(6160), 4, + STATE(1834), 1, + sym_attribute_specifier, + ACTIONS(5958), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6158), 34, + ACTIONS(5956), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123355,7 +121135,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, @@ -123365,6 +121144,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, @@ -123372,6 +121152,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123379,17 +121160,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60282] = 4, - ACTIONS(4058), 1, + [61595] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2140), 1, + STATE(1835), 1, sym__pandoc_attr_specifier, - ACTIONS(6066), 4, + ACTIONS(5964), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6064), 34, + ACTIONS(5962), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123400,7 +121180,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, @@ -123410,6 +121189,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, @@ -123417,6 +121197,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123424,17 +121205,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60331] = 4, - ACTIONS(4058), 1, + [61644] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2153), 1, + STATE(1836), 1, sym__pandoc_attr_specifier, - ACTIONS(6078), 4, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6076), 34, + ACTIONS(5996), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123445,7 +121225,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, @@ -123455,6 +121234,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, @@ -123462,6 +121242,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123469,17 +121250,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60380] = 4, - ACTIONS(4058), 1, + [61693] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2155), 1, + STATE(1838), 1, sym__pandoc_attr_specifier, - ACTIONS(6082), 4, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6080), 34, + ACTIONS(6000), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123490,7 +121270,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, @@ -123500,6 +121279,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, @@ -123507,6 +121287,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123514,17 +121295,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60429] = 4, - ACTIONS(6464), 1, + [61742] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2165), 1, - sym_attribute_specifier, - ACTIONS(6090), 4, + STATE(1839), 1, + sym__pandoc_attr_specifier, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6088), 34, + ACTIONS(6004), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123535,7 +121315,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, @@ -123545,6 +121324,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, @@ -123552,6 +121332,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123559,17 +121340,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60478] = 4, - ACTIONS(4058), 1, + [61791] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2166), 1, + STATE(1841), 1, sym__pandoc_attr_specifier, - ACTIONS(6116), 4, + ACTIONS(6010), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6114), 34, + ACTIONS(6008), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123580,7 +121360,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, @@ -123590,6 +121369,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, @@ -123597,6 +121377,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123604,17 +121385,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60527] = 4, - ACTIONS(4058), 1, + [61840] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2167), 1, + STATE(1842), 1, sym__pandoc_attr_specifier, - ACTIONS(6120), 4, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6118), 34, + ACTIONS(6012), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123625,7 +121405,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, @@ -123635,6 +121414,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, @@ -123642,6 +121422,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123649,17 +121430,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60576] = 4, - ACTIONS(4058), 1, + [61889] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2169), 1, + STATE(1844), 1, sym__pandoc_attr_specifier, - ACTIONS(6124), 4, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6122), 34, + ACTIONS(6016), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123670,7 +121450,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, @@ -123680,6 +121459,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, @@ -123687,6 +121467,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123694,17 +121475,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60625] = 4, - ACTIONS(4058), 1, + [61938] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2170), 1, + STATE(1845), 1, sym__pandoc_attr_specifier, - ACTIONS(6128), 4, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 34, + ACTIONS(6020), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123715,7 +121495,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, @@ -123725,6 +121504,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, @@ -123732,6 +121512,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123739,17 +121520,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60674] = 4, - ACTIONS(4058), 1, + [61987] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2172), 1, + STATE(1849), 1, sym__pandoc_attr_specifier, - ACTIONS(6132), 4, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6130), 34, + ACTIONS(6024), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123760,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, @@ -123770,6 +121549,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, @@ -123777,6 +121557,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123784,17 +121565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60723] = 4, - ACTIONS(4058), 1, + [62036] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2173), 1, + STATE(1850), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 4, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6052), 34, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123805,7 +121585,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, @@ -123815,6 +121594,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, @@ -123822,6 +121602,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123829,17 +121610,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60772] = 4, - ACTIONS(4058), 1, + [62085] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2175), 1, + STATE(1852), 1, sym__pandoc_attr_specifier, - ACTIONS(6144), 4, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6142), 34, + ACTIONS(6032), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123850,7 +121630,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, @@ -123860,6 +121639,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, @@ -123867,6 +121647,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123874,17 +121655,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60821] = 4, - ACTIONS(4058), 1, + [62134] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2176), 1, + STATE(1853), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 4, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6060), 34, + ACTIONS(5948), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123895,7 +121675,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, @@ -123905,6 +121684,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, @@ -123912,6 +121692,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123919,17 +121700,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60870] = 4, - ACTIONS(4058), 1, + [62183] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2180), 1, + STATE(1855), 1, sym__pandoc_attr_specifier, - ACTIONS(6136), 4, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6134), 34, + ACTIONS(6040), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -123940,7 +121720,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, @@ -123950,6 +121729,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, @@ -123957,6 +121737,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -123964,18 +121745,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60919] = 4, - ACTIONS(4058), 1, + [62232] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(2181), 1, + STATE(1860), 1, sym__pandoc_attr_specifier, - ACTIONS(6070), 4, + ACTIONS(5964), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 34, - sym__soft_line_ending, + ACTIONS(5962), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -123985,7 +121765,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, @@ -124002,6 +121781,8 @@ 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, @@ -124009,17 +121790,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [60968] = 4, - ACTIONS(4058), 1, + [62281] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2183), 1, + STATE(1856), 1, sym__pandoc_attr_specifier, - ACTIONS(6104), 4, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6102), 34, + ACTIONS(6044), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124030,7 +121810,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, @@ -124040,6 +121819,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, @@ -124047,6 +121827,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -124054,17 +121835,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [61017] = 4, - ACTIONS(4058), 1, + [62330] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2184), 1, + STATE(1857), 1, sym__pandoc_attr_specifier, - ACTIONS(6108), 4, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 34, + ACTIONS(6048), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124075,7 +121855,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, @@ -124085,6 +121864,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, @@ -124092,6 +121872,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -124099,17 +121880,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [61066] = 4, - ACTIONS(4058), 1, + [62379] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2186), 1, + STATE(1858), 1, sym__pandoc_attr_specifier, - ACTIONS(6148), 4, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6146), 34, + ACTIONS(6052), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124120,7 +121900,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, @@ -124130,6 +121909,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, @@ -124137,6 +121917,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -124144,17 +121925,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [61115] = 4, - ACTIONS(4058), 1, + [62428] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2187), 1, + STATE(1872), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 4, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6056), 34, + ACTIONS(6036), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124165,7 +121945,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, @@ -124175,6 +121954,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, @@ -124182,6 +121962,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -124189,17 +121970,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [61164] = 4, - ACTIONS(4058), 1, + [62477] = 4, + ACTIONS(5412), 1, anon_sym_LBRACE, - STATE(2188), 1, + STATE(1874), 1, sym__pandoc_attr_specifier, - ACTIONS(6100), 4, + ACTIONS(5976), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6098), 34, + ACTIONS(5974), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124210,7 +121990,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, @@ -124220,6 +121999,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, @@ -124227,6 +122007,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -124234,17 +122015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [61213] = 4, - ACTIONS(4058), 1, - anon_sym_LBRACE, - STATE(2189), 1, - sym__pandoc_attr_specifier, - ACTIONS(6086), 4, + [62526] = 2, + ACTIONS(6108), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6084), 34, + sym__whitespace, + ACTIONS(6106), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124255,7 +122033,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, @@ -124272,25 +122049,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [61262] = 4, - ACTIONS(4058), 1, + [62571] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(2194), 1, + STATE(1871), 1, sym__pandoc_attr_specifier, - ACTIONS(6096), 4, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6094), 34, - sym__soft_line_ending, + ACTIONS(6020), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -124300,7 +122078,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, @@ -124317,6 +122094,8 @@ 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, @@ -124324,17 +122103,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [61311] = 4, - ACTIONS(4058), 1, + [62620] = 4, + ACTIONS(4603), 1, anon_sym_LBRACE, - STATE(2195), 1, + STATE(1761), 1, sym__pandoc_attr_specifier, - ACTIONS(6140), 4, + ACTIONS(5968), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6138), 34, + ACTIONS(5966), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124344,8 +122122,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, @@ -124362,6 +122140,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -124369,18 +122148,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [61360] = 4, - ACTIONS(4226), 1, + [62669] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(2217), 1, + STATE(1861), 1, sym__pandoc_attr_specifier, - ACTIONS(6112), 4, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6110), 34, - sym__soft_line_ending, + ACTIONS(5996), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -124397,7 +122175,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, @@ -124407,6 +122184,8 @@ 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, @@ -124414,17 +122193,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [61409] = 4, - ACTIONS(4226), 1, + [62718] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2220), 1, + STATE(1914), 1, sym__pandoc_attr_specifier, - ACTIONS(6156), 4, + ACTIONS(5968), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6154), 34, + sym__whitespace, + ACTIONS(5966), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124442,7 +122221,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, @@ -124452,24 +122230,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [61458] = 4, - ACTIONS(4226), 1, + [62767] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2223), 1, + STATE(1917), 1, sym__pandoc_attr_specifier, - ACTIONS(6160), 4, + ACTIONS(5982), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6158), 34, + sym__whitespace, + ACTIONS(5980), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124487,7 +122266,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, @@ -124497,24 +122275,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [61507] = 4, - ACTIONS(4226), 1, + [62816] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2226), 1, + STATE(1920), 1, sym__pandoc_attr_specifier, - ACTIONS(6066), 4, + ACTIONS(5954), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6064), 34, + sym__whitespace, + ACTIONS(5952), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124532,7 +122311,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, @@ -124542,24 +122320,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [61556] = 4, - ACTIONS(4226), 1, + [62865] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2239), 1, + STATE(1923), 1, sym__pandoc_attr_specifier, - ACTIONS(6078), 4, + ACTIONS(5972), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6076), 34, + sym__whitespace, + ACTIONS(5970), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124577,7 +122356,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, @@ -124587,24 +122365,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [61605] = 4, - ACTIONS(4226), 1, + [62914] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2242), 1, + STATE(1942), 1, sym__pandoc_attr_specifier, - ACTIONS(6082), 4, + ACTIONS(5986), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6080), 34, + sym__whitespace, + ACTIONS(5984), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124622,7 +122401,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, @@ -124632,24 +122410,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [61654] = 4, - ACTIONS(6466), 1, + [62963] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2253), 1, - sym_attribute_specifier, - ACTIONS(6090), 4, + STATE(1946), 1, + sym__pandoc_attr_specifier, + ACTIONS(5990), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6088), 34, + sym__whitespace, + ACTIONS(5988), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124667,7 +122446,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, @@ -124677,25 +122455,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [61703] = 4, - ACTIONS(4226), 1, - anon_sym_LBRACE, - STATE(2254), 1, - sym__pandoc_attr_specifier, - ACTIONS(6116), 4, + [63012] = 2, + ACTIONS(6064), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6114), 34, + ACTIONS(6062), 37, + sym__line_ending, sym__soft_line_ending, + sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -124712,7 +122488,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, @@ -124722,24 +122497,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [61752] = 4, - ACTIONS(4226), 1, + [63057] = 4, + ACTIONS(6326), 1, anon_sym_LBRACE, - STATE(2255), 1, - sym__pandoc_attr_specifier, - ACTIONS(6120), 4, + STATE(1958), 1, + sym_attribute_specifier, + ACTIONS(5958), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6118), 34, + sym__whitespace, + ACTIONS(5956), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124757,7 +122534,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, @@ -124767,24 +122543,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [61801] = 4, - ACTIONS(4226), 1, + [63106] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2257), 1, + STATE(1959), 1, sym__pandoc_attr_specifier, - ACTIONS(6124), 4, + ACTIONS(5964), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6122), 34, + sym__whitespace, + ACTIONS(5962), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124802,7 +122579,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, @@ -124812,24 +122588,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [61850] = 4, - ACTIONS(4226), 1, + [63155] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2258), 1, + STATE(1960), 1, sym__pandoc_attr_specifier, - ACTIONS(6128), 4, + ACTIONS(5998), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 34, + sym__whitespace, + ACTIONS(5996), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124847,7 +122624,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, @@ -124857,24 +122633,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [61899] = 4, - ACTIONS(4226), 1, + [63204] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2260), 1, + STATE(1962), 1, sym__pandoc_attr_specifier, - ACTIONS(6132), 4, + ACTIONS(6002), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6130), 34, + sym__whitespace, + ACTIONS(6000), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124892,7 +122669,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, @@ -124902,24 +122678,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [61948] = 4, - ACTIONS(4226), 1, + [63253] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2261), 1, + STATE(1963), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 4, + ACTIONS(6006), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6052), 34, + sym__whitespace, + ACTIONS(6004), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124937,7 +122714,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, @@ -124947,24 +122723,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [61997] = 4, - ACTIONS(4226), 1, + [63302] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2263), 1, + STATE(1965), 1, sym__pandoc_attr_specifier, - ACTIONS(6144), 4, + ACTIONS(6010), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6142), 34, + sym__whitespace, + ACTIONS(6008), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -124982,7 +122759,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, @@ -124992,24 +122768,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [62046] = 4, - ACTIONS(4226), 1, + [63351] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2264), 1, + STATE(1966), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 4, + ACTIONS(6014), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6060), 34, + sym__whitespace, + ACTIONS(6012), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125027,7 +122804,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, @@ -125037,24 +122813,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [62095] = 4, - ACTIONS(4226), 1, + [63400] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2268), 1, + STATE(1968), 1, sym__pandoc_attr_specifier, - ACTIONS(6136), 4, + ACTIONS(6018), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6134), 34, + sym__whitespace, + ACTIONS(6016), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125072,7 +122849,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, @@ -125082,24 +122858,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [62144] = 4, - ACTIONS(4226), 1, + [63449] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2269), 1, + STATE(1969), 1, sym__pandoc_attr_specifier, - ACTIONS(6070), 4, + ACTIONS(6022), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 34, + sym__whitespace, + ACTIONS(6020), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125117,7 +122894,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, @@ -125127,25 +122903,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [62193] = 4, - ACTIONS(4226), 1, + [63498] = 4, + ACTIONS(2519), 1, anon_sym_LBRACE, - STATE(2271), 1, + STATE(1863), 1, sym__pandoc_attr_specifier, - ACTIONS(6104), 4, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6102), 34, - sym__soft_line_ending, + ACTIONS(6000), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -125162,7 +122938,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, @@ -125172,6 +122947,8 @@ 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, @@ -125179,17 +122956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [62242] = 4, - ACTIONS(4226), 1, + [63547] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2272), 1, + STATE(1977), 1, sym__pandoc_attr_specifier, - ACTIONS(6108), 4, + ACTIONS(6026), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 34, + sym__whitespace, + ACTIONS(6024), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125207,7 +122984,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, @@ -125217,23 +122993,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [62291] = 2, - ACTIONS(6232), 4, + [63596] = 4, + ACTIONS(3103), 1, + anon_sym_LBRACE, + STATE(1978), 1, + sym__pandoc_attr_specifier, + ACTIONS(6030), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6230), 36, - sym__line_ending, + sym__whitespace, + ACTIONS(6028), 34, sym__soft_line_ending, - sym__eof, sym__code_span_start, sym__html_comment, sym__autolink, @@ -125259,25 +123038,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [62336] = 4, - ACTIONS(4226), 1, + [63645] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2274), 1, + STATE(1980), 1, sym__pandoc_attr_specifier, - ACTIONS(6148), 4, + ACTIONS(6034), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6146), 34, + sym__whitespace, + ACTIONS(6032), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125295,7 +123074,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, @@ -125305,24 +123083,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [62385] = 4, - ACTIONS(4226), 1, + [63694] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(2275), 1, + STATE(1981), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 4, + ACTIONS(5950), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6056), 34, + sym__whitespace, + ACTIONS(5948), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125340,7 +123119,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, @@ -125350,24 +123128,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [62434] = 4, - ACTIONS(4226), 1, + [63743] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1883), 1, + STATE(1983), 1, sym__pandoc_attr_specifier, - ACTIONS(6100), 4, + ACTIONS(6042), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6098), 34, + sym__whitespace, + ACTIONS(6040), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125385,7 +123164,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, @@ -125395,24 +123173,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [62483] = 4, - ACTIONS(4226), 1, + [63792] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1568), 1, + STATE(1984), 1, sym__pandoc_attr_specifier, - ACTIONS(6086), 4, + ACTIONS(6046), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6084), 34, + sym__whitespace, + ACTIONS(6044), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125430,7 +123209,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, @@ -125440,24 +123218,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [62532] = 4, - ACTIONS(4226), 1, + [63841] = 4, + ACTIONS(3103), 1, anon_sym_LBRACE, - STATE(1633), 1, + STATE(1985), 1, sym__pandoc_attr_specifier, - ACTIONS(6096), 4, + ACTIONS(6050), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6094), 34, + sym__whitespace, + ACTIONS(6048), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125475,7 +123254,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, @@ -125485,22 +123263,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [62581] = 2, - ACTIONS(6398), 6, - aux_sym_pandoc_span_token1, + [63890] = 4, + ACTIONS(3103), 1, + anon_sym_LBRACE, + STATE(1986), 1, + sym__pandoc_attr_specifier, + ACTIONS(6054), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6396), 34, + ACTIONS(6052), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125527,22 +123308,25 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [62626] = 2, - ACTIONS(3446), 4, + [63939] = 4, + ACTIONS(2519), 1, + anon_sym_LBRACE, + STATE(1864), 1, + sym__pandoc_attr_specifier, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3444), 35, - sym__soft_line_ending, + ACTIONS(6004), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -125566,24 +123350,28 @@ 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, - [62670] = 2, - ACTIONS(6336), 4, + [63988] = 4, + ACTIONS(3103), 1, + anon_sym_LBRACE, + STATE(1991), 1, + sym__pandoc_attr_specifier, + ACTIONS(6038), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6334), 35, + sym__whitespace, + ACTIONS(6036), 34, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125603,7 +123391,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, @@ -125611,21 +123398,67 @@ static const uint16_t ts_small_parse_table[] = { 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, + [64037] = 4, + ACTIONS(3103), 1, + anon_sym_LBRACE, + STATE(1993), 1, + sym__pandoc_attr_specifier, + ACTIONS(5976), 4, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, sym__whitespace, - [62714] = 2, - ACTIONS(6352), 4, + ACTIONS(5974), 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, + [64086] = 2, + ACTIONS(6112), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6350), 35, + sym__whitespace, + ACTIONS(6110), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125648,26 +123481,29 @@ 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__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, - [62758] = 2, - ACTIONS(6368), 4, + [64131] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2035), 1, + sym__pandoc_attr_specifier, + ACTIONS(5968), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6366), 35, + ACTIONS(5966), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125689,27 +123525,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__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, - [62802] = 2, - ACTIONS(6300), 4, + [64180] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2039), 1, + sym__pandoc_attr_specifier, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6298), 35, + ACTIONS(5980), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125728,30 +123567,33 @@ 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, 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, - [62846] = 2, - ACTIONS(6292), 4, + [64229] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2044), 1, + sym__pandoc_attr_specifier, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6290), 35, + ACTIONS(5952), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125773,69 +123615,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__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, - [62890] = 2, - ACTIONS(6312), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6310), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, + [64278] = 4, + ACTIONS(4027), 1, anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [62934] = 2, - ACTIONS(6320), 4, + STATE(2048), 1, + sym__pandoc_attr_specifier, + ACTIONS(5972), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6318), 35, + ACTIONS(5970), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125854,72 +123657,33 @@ 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, 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, - [62978] = 2, - ACTIONS(6172), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6170), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, + [64327] = 4, + ACTIONS(4027), 1, anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [63022] = 2, - ACTIONS(6240), 4, + STATE(2078), 1, + sym__pandoc_attr_specifier, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6238), 35, + ACTIONS(5984), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -125941,69 +123705,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__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, - [63066] = 2, - ACTIONS(6224), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6222), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, + [64376] = 4, + ACTIONS(4027), 1, anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [63110] = 2, - ACTIONS(6244), 4, + STATE(2081), 1, + sym__pandoc_attr_specifier, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6242), 35, + ACTIONS(5988), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126025,69 +123750,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__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, - [63154] = 2, - ACTIONS(6266), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6264), 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_entity_reference, - sym_numeric_character_reference, - anon_sym_LBRACK, - anon_sym_BANG_LBRACK, - anon_sym_DOLLAR_DOLLAR, + [64425] = 4, + ACTIONS(6328), 1, anon_sym_LBRACE, - anon_sym_PIPE, - sym__whitespace, - [63198] = 2, - ACTIONS(6270), 4, + STATE(2091), 1, + sym_attribute_specifier, + ACTIONS(5958), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6268), 35, + ACTIONS(5956), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126109,27 +123795,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__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, - [63242] = 2, - ACTIONS(6274), 4, + [64474] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2092), 1, + sym__pandoc_attr_specifier, + ACTIONS(5964), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6272), 35, + ACTIONS(5962), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126151,27 +123840,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__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, - [63286] = 2, - ACTIONS(6258), 4, + [64523] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2093), 1, + sym__pandoc_attr_specifier, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6256), 35, + ACTIONS(5996), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126191,29 +123883,32 @@ 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, 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, - [63330] = 2, - ACTIONS(6278), 4, + [64572] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2095), 1, + sym__pandoc_attr_specifier, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6276), 35, + ACTIONS(6000), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126235,27 +123930,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__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, - [63374] = 2, - ACTIONS(6308), 4, + [64621] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2096), 1, + sym__pandoc_attr_specifier, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6306), 35, + ACTIONS(6004), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126277,27 +123975,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__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, - [63418] = 2, - ACTIONS(6300), 4, + [64670] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2098), 1, + sym__pandoc_attr_specifier, + ACTIONS(6010), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6298), 35, + ACTIONS(6008), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126317,29 +124018,32 @@ 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, 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, - [63462] = 2, - ACTIONS(6358), 4, + [64719] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2099), 1, + sym__pandoc_attr_specifier, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6356), 35, + ACTIONS(6012), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126361,27 +124065,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__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, - [63506] = 2, - ACTIONS(6386), 4, + [64768] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2101), 1, + sym__pandoc_attr_specifier, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6384), 35, + ACTIONS(6016), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126403,27 +124110,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__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, - [63550] = 2, - ACTIONS(6398), 4, + [64817] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2106), 1, + sym__pandoc_attr_specifier, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6396), 35, + ACTIONS(6020), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126445,27 +124155,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__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, - [63594] = 2, - ACTIONS(6164), 4, + [64866] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2116), 1, + sym__pandoc_attr_specifier, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6162), 35, + ACTIONS(6024), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126487,27 +124200,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__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, - [63638] = 2, - ACTIONS(6168), 4, + [64915] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2117), 1, + sym__pandoc_attr_specifier, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6166), 35, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126529,27 +124245,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__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, - [63682] = 2, - ACTIONS(6250), 4, + [64964] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2119), 1, + sym__pandoc_attr_specifier, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6248), 35, + ACTIONS(6032), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126571,27 +124290,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__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, - [63726] = 2, - ACTIONS(6176), 4, + [65013] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2120), 1, + sym__pandoc_attr_specifier, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6174), 35, + ACTIONS(5948), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126613,27 +124335,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__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, - [63770] = 2, - ACTIONS(6180), 4, + [65062] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2122), 1, + sym__pandoc_attr_specifier, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6178), 35, + ACTIONS(6040), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126655,27 +124380,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__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, - [63814] = 2, - ACTIONS(6184), 4, + [65111] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2123), 1, + sym__pandoc_attr_specifier, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6182), 35, + ACTIONS(6044), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126697,27 +124425,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__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, - [63858] = 2, - ACTIONS(6192), 4, + [65160] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2125), 1, + sym__pandoc_attr_specifier, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6190), 35, + ACTIONS(6048), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126739,27 +124470,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__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, - [63902] = 2, - ACTIONS(6196), 4, + [65209] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2126), 1, + sym__pandoc_attr_specifier, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6194), 35, + ACTIONS(6052), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126781,27 +124515,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__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, - [63946] = 2, - ACTIONS(6254), 4, + [65258] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2131), 1, + sym__pandoc_attr_specifier, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6252), 35, + ACTIONS(6036), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126823,27 +124560,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__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, - [63990] = 2, - ACTIONS(6200), 4, + [65307] = 4, + ACTIONS(4027), 1, + anon_sym_LBRACE, + STATE(2132), 1, + sym__pandoc_attr_specifier, + ACTIONS(5976), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6198), 35, + ACTIONS(5974), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126865,27 +124605,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__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, - [64034] = 2, - ACTIONS(6204), 4, + [65356] = 2, + ACTIONS(6116), 5, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6202), 35, + sym__whitespace, + ACTIONS(6114), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -126908,27 +124649,30 @@ 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__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, - [64078] = 2, - ACTIONS(6262), 4, + [65401] = 4, + ACTIONS(2519), 1, + anon_sym_LBRACE, + STATE(1877), 1, + sym__pandoc_attr_specifier, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6260), 35, - sym__soft_line_ending, + ACTIONS(6028), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -126950,27 +124694,29 @@ 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, - [64122] = 2, - ACTIONS(6208), 4, + [65450] = 4, + ACTIONS(3608), 1, + anon_sym_LBRACE, + STATE(2285), 1, + sym__pandoc_attr_specifier, + ACTIONS(5990), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6206), 35, - sym__soft_line_ending, + ACTIONS(5988), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -126992,26 +124738,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, - [64166] = 2, - ACTIONS(6320), 4, + [65498] = 2, + ACTIONS(6238), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6318), 35, + ACTIONS(6236), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127031,14 +124776,15 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -127047,13 +124793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64210] = 2, - ACTIONS(6282), 4, + [65542] = 2, + ACTIONS(6242), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6280), 35, + ACTIONS(6240), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127076,11 +124821,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -127089,14 +124835,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64254] = 2, - ACTIONS(6312), 4, + [65586] = 2, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6310), 35, - sym__line_ending, + ACTIONS(6280), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -127118,11 +124863,12 @@ 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, @@ -127131,13 +124877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64298] = 2, - ACTIONS(3446), 4, + [65630] = 2, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3444), 35, + ACTIONS(6244), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127156,15 +124901,16 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -127173,13 +124919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64342] = 2, - ACTIONS(6348), 4, + [65674] = 2, + ACTIONS(6064), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6346), 35, + ACTIONS(6062), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127199,14 +124944,15 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -127215,13 +124961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64386] = 2, - ACTIONS(6362), 4, + [65718] = 2, + ACTIONS(6088), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6360), 35, + ACTIONS(6086), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127239,9 +124984,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, @@ -127249,6 +124994,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -127257,13 +125003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64430] = 2, - ACTIONS(6372), 4, + [65762] = 2, + ACTIONS(6152), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6370), 35, + ACTIONS(6150), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127273,6 +125018,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, @@ -127283,7 +125029,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, @@ -127291,6 +125036,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -127299,14 +125045,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64474] = 2, - ACTIONS(6378), 4, + [65806] = 2, + ACTIONS(6100), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6376), 35, - sym__soft_line_ending, + ACTIONS(6098), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -127325,7 +125070,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, @@ -127333,6 +125077,8 @@ 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, @@ -127341,13 +125087,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64518] = 2, - ACTIONS(6316), 4, + [65850] = 2, + ACTIONS(6092), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6314), 35, + ACTIONS(6090), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127365,16 +125110,17 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -127383,13 +125129,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64562] = 2, - ACTIONS(6332), 4, + [65894] = 2, + ACTIONS(6068), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6330), 35, + ACTIONS(6066), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127417,6 +125162,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -127425,13 +125171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64606] = 2, - ACTIONS(6344), 4, + [65938] = 2, + ACTIONS(6072), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6342), 35, + ACTIONS(6070), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127459,6 +125204,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -127467,13 +125213,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64650] = 2, - ACTIONS(6390), 4, + [65982] = 2, + ACTIONS(6076), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6388), 35, + ACTIONS(6074), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127501,6 +125246,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -127509,13 +125255,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64694] = 2, - ACTIONS(6382), 4, + [66026] = 2, + ACTIONS(6080), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6380), 35, + ACTIONS(6078), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127535,14 +125280,15 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -127551,13 +125297,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64738] = 2, - ACTIONS(6394), 4, + [66070] = 2, + ACTIONS(6156), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6392), 35, + ACTIONS(6154), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127567,6 +125312,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, @@ -127577,7 +125323,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, @@ -127585,6 +125330,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -127593,13 +125339,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64782] = 2, - ACTIONS(6212), 4, + [66114] = 2, + ACTIONS(6160), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6210), 35, + ACTIONS(6158), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127609,6 +125354,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, @@ -127622,11 +125368,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -127635,13 +125381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64826] = 2, - ACTIONS(6188), 4, + [66158] = 2, + ACTIONS(6250), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6186), 35, + ACTIONS(6248), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127664,11 +125409,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -127677,13 +125423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64870] = 2, - ACTIONS(6070), 4, + [66202] = 2, + ACTIONS(6254), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 35, + ACTIONS(6252), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127703,14 +125448,15 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -127719,13 +125465,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64914] = 2, - ACTIONS(6216), 4, + [66246] = 2, + ACTIONS(6096), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6214), 35, + ACTIONS(6094), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127743,16 +125488,17 @@ 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, @@ -127761,13 +125507,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [64958] = 2, - ACTIONS(6348), 4, + [66290] = 2, + ACTIONS(6084), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6346), 35, + ACTIONS(6082), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127786,15 +125531,16 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -127803,13 +125549,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65002] = 2, - ACTIONS(6288), 4, + [66334] = 2, + ACTIONS(6100), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6286), 35, + ACTIONS(6098), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127827,16 +125572,17 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -127845,13 +125591,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65046] = 2, - ACTIONS(6362), 4, + [66378] = 2, + ACTIONS(6104), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6360), 35, + ACTIONS(6102), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127869,8 +125614,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, @@ -127879,6 +125624,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -127887,13 +125633,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65090] = 2, - ACTIONS(6108), 4, + [66422] = 2, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 35, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127913,14 +125658,15 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -127929,13 +125675,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65134] = 2, - ACTIONS(6128), 4, + [66466] = 2, + ACTIONS(6108), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 35, + ACTIONS(6106), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127953,16 +125698,17 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -127971,13 +125717,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65178] = 2, - ACTIONS(6372), 4, + [66510] = 2, + ACTIONS(6112), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6370), 35, + ACTIONS(6110), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -127995,8 +125740,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, @@ -128005,6 +125750,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128013,13 +125759,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65222] = 2, - ACTIONS(6378), 4, + [66554] = 2, + ACTIONS(6088), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6376), 35, + ACTIONS(6086), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128038,15 +125783,16 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -128055,13 +125801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65266] = 2, - ACTIONS(6402), 4, + [66598] = 2, + ACTIONS(6116), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6400), 35, + ACTIONS(6114), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128079,16 +125824,17 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -128097,13 +125843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65310] = 2, - ACTIONS(6296), 4, + [66642] = 2, + ACTIONS(6120), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6294), 35, + ACTIONS(6118), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128121,9 +125866,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, @@ -128131,6 +125876,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128139,13 +125885,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65354] = 2, - ACTIONS(6304), 4, + [66686] = 2, + ACTIONS(6092), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6302), 35, + ACTIONS(6090), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128165,14 +125910,15 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -128181,13 +125927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65398] = 2, - ACTIONS(6336), 4, + [66730] = 2, + ACTIONS(6124), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6334), 35, + ACTIONS(6122), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128205,16 +125950,17 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -128223,13 +125969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65442] = 2, - ACTIONS(6220), 4, + [66774] = 2, + ACTIONS(6128), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6218), 35, + ACTIONS(6126), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128247,8 +125992,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, @@ -128257,6 +126002,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128265,13 +126011,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65486] = 2, - ACTIONS(6228), 4, + [66818] = 2, + ACTIONS(6096), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6226), 35, + ACTIONS(6094), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128290,15 +126035,16 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -128307,13 +126053,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65530] = 2, - ACTIONS(6224), 4, + [66862] = 2, + ACTIONS(6100), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6222), 35, + ACTIONS(6098), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128341,6 +126086,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128349,13 +126095,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65574] = 2, - ACTIONS(6258), 4, + [66906] = 2, + ACTIONS(6104), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6256), 35, + ACTIONS(6102), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128383,6 +126128,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128391,13 +126137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65618] = 2, - ACTIONS(6300), 4, + [66950] = 2, + ACTIONS(6108), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6298), 35, + ACTIONS(6106), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128425,6 +126170,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128433,13 +126179,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65662] = 2, - ACTIONS(6320), 4, + [66994] = 2, + ACTIONS(6112), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6318), 35, + ACTIONS(6110), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128467,6 +126212,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128475,13 +126221,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65706] = 2, - ACTIONS(6348), 4, + [67038] = 2, + ACTIONS(6116), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6346), 35, + ACTIONS(6114), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128509,6 +126254,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128517,13 +126263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65750] = 2, - ACTIONS(6362), 4, + [67082] = 2, + ACTIONS(6120), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6360), 35, + ACTIONS(6118), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128551,6 +126296,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128559,13 +126305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65794] = 2, - ACTIONS(6372), 4, + [67126] = 2, + ACTIONS(6124), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6370), 35, + ACTIONS(6122), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128593,6 +126338,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128601,13 +126347,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65838] = 2, - ACTIONS(6378), 4, + [67170] = 2, + ACTIONS(6128), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6376), 35, + ACTIONS(6126), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128635,6 +126380,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128643,13 +126389,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65882] = 2, - ACTIONS(6164), 4, + [67214] = 2, + ACTIONS(6132), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6162), 35, + ACTIONS(6130), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128667,16 +126412,17 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -128685,13 +126431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65926] = 2, - ACTIONS(6394), 4, + [67258] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6392), 35, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128719,6 +126464,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128727,13 +126473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [65970] = 2, - ACTIONS(6070), 4, + [67302] = 2, + ACTIONS(6132), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 35, + ACTIONS(6130), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128751,16 +126496,17 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -128769,14 +126515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66014] = 2, - ACTIONS(6438), 5, + [67346] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6436), 34, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128794,6 +126538,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, @@ -128803,21 +126548,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [66058] = 2, - ACTIONS(6108), 4, + sym__whitespace, + [67390] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 35, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128845,6 +126590,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128853,14 +126599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66102] = 2, - ACTIONS(6232), 4, + [67434] = 2, + ACTIONS(6104), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6230), 35, - sym__soft_line_ending, + ACTIONS(6102), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -128878,7 +126623,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, @@ -128887,6 +126631,8 @@ 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, @@ -128895,13 +126641,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66146] = 2, - ACTIONS(6236), 4, + [67478] = 2, + ACTIONS(6288), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6234), 35, + ACTIONS(6286), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128911,6 +126656,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, @@ -128920,7 +126666,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, @@ -128929,6 +126674,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128937,13 +126683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66190] = 2, - ACTIONS(6296), 4, + [67522] = 2, + ACTIONS(6136), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6294), 35, + ACTIONS(6134), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -128971,6 +126716,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -128979,13 +126725,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66234] = 2, - ACTIONS(6304), 4, + [67566] = 2, + ACTIONS(6140), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6302), 35, + ACTIONS(6138), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129013,6 +126758,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129021,13 +126767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66278] = 2, - ACTIONS(6220), 4, + [67610] = 2, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6218), 35, + ACTIONS(6256), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129055,6 +126800,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129063,13 +126809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66322] = 2, - ACTIONS(6228), 4, + [67654] = 2, + ACTIONS(6262), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6226), 35, + ACTIONS(6260), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129097,6 +126842,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129105,13 +126851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66366] = 2, - ACTIONS(6438), 4, + [67698] = 2, + ACTIONS(6298), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6436), 35, + ACTIONS(6296), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129139,6 +126884,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129147,14 +126893,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66410] = 2, - ACTIONS(6172), 4, + [67742] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6170), 35, - sym__line_ending, + ACTIONS(5948), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -129171,6 +126916,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, @@ -129180,7 +126926,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, anon_sym_LBRACK, @@ -129189,13 +126935,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66454] = 2, - ACTIONS(6232), 4, + [67786] = 2, + ACTIONS(6266), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6230), 35, + ACTIONS(6264), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129223,6 +126968,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129231,13 +126977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66498] = 2, - ACTIONS(6236), 4, + [67830] = 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6234), 35, + ACTIONS(6268), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129265,6 +127010,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129273,13 +127019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66542] = 2, - ACTIONS(6324), 4, + [67874] = 2, + ACTIONS(6144), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6322), 35, + ACTIONS(6142), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129307,6 +127052,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129315,13 +127061,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66586] = 2, - ACTIONS(6328), 4, + [67918] = 2, + ACTIONS(6148), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6326), 35, + ACTIONS(6146), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129349,6 +127094,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129357,13 +127103,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66630] = 2, - ACTIONS(6340), 4, + [67962] = 2, + ACTIONS(6152), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6338), 35, + ACTIONS(6150), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129391,6 +127136,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129399,13 +127145,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66674] = 2, - ACTIONS(6324), 4, + [68006] = 2, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6322), 35, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129415,6 +127160,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, @@ -129425,7 +127171,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, @@ -129433,6 +127178,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129441,13 +127187,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66718] = 2, - ACTIONS(6352), 4, + [68050] = 2, + ACTIONS(6156), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6350), 35, + ACTIONS(6154), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129475,6 +127220,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129483,13 +127229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66762] = 2, - ACTIONS(6368), 4, + [68094] = 2, + ACTIONS(6160), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6366), 35, + ACTIONS(6158), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129517,6 +127262,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129525,13 +127271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66806] = 2, - ACTIONS(6328), 4, + [68138] = 2, + ACTIONS(6250), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6326), 35, + sym__whitespace, + ACTIONS(6248), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129551,7 +127297,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, @@ -129559,21 +127304,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [66850] = 2, - ACTIONS(6292), 4, + [68182] = 2, + ACTIONS(6288), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6290), 35, + ACTIONS(6286), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129601,6 +127346,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129609,13 +127355,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66894] = 2, - ACTIONS(6312), 4, + [68226] = 2, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6310), 35, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129643,6 +127388,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129651,13 +127397,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66938] = 2, - ACTIONS(6340), 4, + [68270] = 2, + ACTIONS(6136), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6338), 35, + ACTIONS(6134), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129675,9 +127420,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, @@ -129685,6 +127430,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129693,13 +127439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [66982] = 2, - ACTIONS(6172), 4, + [68314] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6170), 35, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129727,6 +127472,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129735,13 +127481,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67026] = 2, - ACTIONS(6240), 4, + [68358] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6238), 35, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129769,6 +127514,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129777,13 +127523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67070] = 2, - ACTIONS(6382), 4, + [68402] = 2, + ACTIONS(6140), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6380), 35, + ACTIONS(6138), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129801,8 +127546,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, @@ -129811,6 +127556,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129819,13 +127565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67114] = 2, - ACTIONS(6244), 4, + [68446] = 2, + ACTIONS(6058), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6242), 35, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129853,6 +127598,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129861,13 +127607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67158] = 2, - ACTIONS(6266), 4, + [68490] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6264), 35, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129895,6 +127640,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129903,13 +127649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67202] = 2, - ACTIONS(6270), 4, + [68534] = 2, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6268), 35, + ACTIONS(6180), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129937,6 +127682,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129945,13 +127691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67246] = 2, - ACTIONS(6274), 4, + [68578] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6272), 35, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -129979,6 +127724,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -129987,13 +127733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67290] = 2, - ACTIONS(6352), 4, + [68622] = 2, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6350), 35, + ACTIONS(6256), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130004,6 +127749,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, @@ -130013,7 +127759,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, @@ -130021,6 +127766,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130029,13 +127775,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67334] = 2, - ACTIONS(6278), 4, + [68666] = 2, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6276), 35, + ACTIONS(6188), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130063,6 +127808,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130071,13 +127817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67378] = 2, - ACTIONS(6308), 4, + [68710] = 2, + ACTIONS(6194), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6306), 35, + ACTIONS(6192), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130105,6 +127850,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130113,13 +127859,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67422] = 2, - ACTIONS(6368), 4, + [68754] = 2, + ACTIONS(6262), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6366), 35, + ACTIONS(6260), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130130,6 +127875,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, @@ -130139,7 +127885,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, @@ -130147,6 +127892,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130155,13 +127901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67466] = 2, - ACTIONS(6358), 4, + [68798] = 2, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6356), 35, + ACTIONS(6196), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130189,6 +127934,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130197,13 +127943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67510] = 2, - ACTIONS(6386), 4, + [68842] = 2, + ACTIONS(6202), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6384), 35, + ACTIONS(6200), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130231,6 +127976,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130239,13 +127985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67554] = 2, - ACTIONS(6398), 4, + [68886] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6396), 35, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130273,6 +128018,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130281,13 +128027,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67598] = 2, - ACTIONS(6164), 4, + [68930] = 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6162), 35, + ACTIONS(6208), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130315,6 +128060,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130323,13 +128069,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67642] = 2, - ACTIONS(6168), 4, + [68974] = 2, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6166), 35, + ACTIONS(6212), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130357,6 +128102,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130365,13 +128111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67686] = 2, - ACTIONS(6250), 4, + [69018] = 2, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6248), 35, + ACTIONS(6272), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130399,6 +128144,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130407,13 +128153,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67730] = 2, - ACTIONS(6176), 4, + [69062] = 2, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6174), 35, + ACTIONS(6216), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130441,6 +128186,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130449,13 +128195,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67774] = 2, - ACTIONS(6180), 4, + [69106] = 2, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6178), 35, + ACTIONS(6220), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130483,6 +128228,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130491,13 +128237,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67818] = 2, - ACTIONS(6184), 4, + [69150] = 2, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6182), 35, + ACTIONS(6224), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130525,6 +128270,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130533,13 +128279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67862] = 2, - ACTIONS(6192), 4, + [69194] = 2, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6190), 35, + ACTIONS(6228), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130567,6 +128312,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130575,13 +128321,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67906] = 2, - ACTIONS(6196), 4, + [69238] = 2, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6194), 35, + ACTIONS(6232), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130609,6 +128354,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130617,13 +128363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67950] = 2, - ACTIONS(6254), 4, + [69282] = 2, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6252), 35, + ACTIONS(6276), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130651,6 +128396,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130659,13 +128405,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [67994] = 2, - ACTIONS(6200), 4, + [69326] = 2, + ACTIONS(6238), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6198), 35, + ACTIONS(6236), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130693,6 +128438,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130701,13 +128447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68038] = 2, - ACTIONS(6204), 4, + [69370] = 2, + ACTIONS(6242), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6202), 35, + ACTIONS(6240), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130735,6 +128480,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130743,13 +128489,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68082] = 2, - ACTIONS(6262), 4, + [69414] = 2, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6260), 35, + ACTIONS(6280), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130777,6 +128522,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130785,13 +128531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68126] = 2, - ACTIONS(6208), 4, + [69458] = 2, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6206), 35, + ACTIONS(6244), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130819,6 +128564,49 @@ static const uint16_t ts_small_parse_table[] = { 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, + [69502] = 2, + ACTIONS(6064), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6062), 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_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, @@ -130827,13 +128615,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68170] = 2, - ACTIONS(6394), 4, + [69546] = 2, + ACTIONS(6298), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6392), 35, + ACTIONS(6296), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130861,6 +128648,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130869,13 +128657,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68214] = 2, - ACTIONS(6282), 4, + [69590] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6280), 35, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130885,48 +128672,7 @@ static const uint16_t ts_small_parse_table[] = { 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_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, - [68258] = 2, - ACTIONS(6240), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6238), 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__single_quote_span_close, sym__double_quote_span_open, sym__shortcode_open_escaped, sym__shortcode_open, @@ -130944,7 +128690,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, anon_sym_LBRACK, @@ -130953,13 +128699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68302] = 2, - ACTIONS(3446), 4, + [69634] = 2, + ACTIONS(6266), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3444), 35, + ACTIONS(6264), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -130970,6 +128715,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, @@ -130979,7 +128725,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, @@ -130987,6 +128732,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -130995,13 +128741,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68346] = 2, - ACTIONS(6292), 4, + [69678] = 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6290), 35, + ACTIONS(6268), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131012,6 +128757,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, @@ -131021,7 +128767,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, @@ -131029,6 +128774,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -131037,13 +128783,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68390] = 2, - ACTIONS(6312), 4, + [69722] = 2, + ACTIONS(6144), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6310), 35, + ACTIONS(6142), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131061,9 +128806,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, @@ -131071,6 +128816,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -131079,13 +128825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68434] = 2, - ACTIONS(6070), 4, + [69766] = 2, + ACTIONS(6068), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 35, + ACTIONS(6066), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131104,15 +128849,16 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -131121,13 +128867,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68478] = 2, - ACTIONS(6172), 4, + [69810] = 2, + ACTIONS(6072), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6170), 35, + ACTIONS(6070), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131147,14 +128892,15 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -131163,13 +128909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68522] = 2, - ACTIONS(6316), 4, + [69854] = 2, + ACTIONS(6076), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6314), 35, + ACTIONS(6074), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131197,6 +128942,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -131205,13 +128951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68566] = 2, - ACTIONS(6332), 4, + [69898] = 2, + ACTIONS(6080), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6330), 35, + ACTIONS(6078), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131239,6 +128984,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -131247,13 +128993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68610] = 2, - ACTIONS(6344), 4, + [69942] = 2, + ACTIONS(6148), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6342), 35, + ACTIONS(6146), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131271,6 +129016,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, @@ -131278,9 +129024,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -131289,13 +129035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68654] = 2, - ACTIONS(6390), 4, + [69986] = 2, + ACTIONS(6152), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6388), 35, + ACTIONS(6150), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131313,6 +129058,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, @@ -131320,9 +129066,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -131331,13 +129077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68698] = 2, - ACTIONS(6240), 4, + [70030] = 2, + ACTIONS(6250), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6238), 35, + ACTIONS(6248), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131357,14 +129102,15 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -131373,13 +129119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68742] = 2, - ACTIONS(6184), 4, + [70074] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6182), 35, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131389,6 +129134,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, @@ -131397,7 +129143,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, @@ -131407,6 +129152,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -131415,13 +129161,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68786] = 2, - ACTIONS(6212), 4, + [70118] = 2, + ACTIONS(6254), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6210), 35, + ACTIONS(6252), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131449,6 +129194,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -131457,13 +129203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68830] = 2, - ACTIONS(6188), 4, + [70162] = 2, + ACTIONS(6156), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6186), 35, + ACTIONS(6154), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131481,6 +129226,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, @@ -131488,9 +129234,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -131499,13 +129245,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68874] = 2, - ACTIONS(6244), 4, + [70206] = 2, + ACTIONS(6084), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6242), 35, + ACTIONS(6082), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131525,14 +129270,15 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -131541,13 +129287,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68918] = 2, - ACTIONS(6216), 4, + [70250] = 2, + ACTIONS(6160), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6214), 35, + ACTIONS(6158), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131565,16 +129310,17 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -131583,14 +129329,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [68962] = 2, - ACTIONS(6266), 4, + [70294] = 2, + ACTIONS(6116), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6264), 35, - sym__soft_line_ending, + ACTIONS(6114), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -131609,7 +129354,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, @@ -131617,6 +129361,8 @@ 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, @@ -131625,13 +129371,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69006] = 2, - ACTIONS(6288), 4, + [70338] = 2, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6286), 35, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131659,6 +129404,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -131667,13 +129413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69050] = 2, - ACTIONS(6270), 4, + [70382] = 2, + ACTIONS(6288), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6268), 35, + ACTIONS(6286), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131691,9 +129436,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, @@ -131701,6 +129446,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -131709,13 +129455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69094] = 2, - ACTIONS(6274), 4, + [70426] = 2, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6272), 35, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131733,9 +129478,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, @@ -131743,6 +129488,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -131751,13 +129497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69138] = 2, - ACTIONS(6128), 4, + [70470] = 2, + ACTIONS(6088), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 35, + ACTIONS(6086), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131785,6 +129530,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -131793,13 +129539,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69182] = 2, - ACTIONS(6192), 4, + [70514] = 2, + ACTIONS(6058), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6190), 35, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131809,6 +129554,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, @@ -131817,7 +129563,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, @@ -131827,6 +129572,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -131835,13 +129581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69226] = 2, - ACTIONS(6278), 4, + [70558] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6276), 35, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131859,9 +129604,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, @@ -131869,6 +129614,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -131877,13 +129623,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69270] = 2, - ACTIONS(6402), 4, + [70602] = 2, + ACTIONS(6092), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6400), 35, + ACTIONS(6090), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131911,6 +129656,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -131919,13 +129665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69314] = 2, - ACTIONS(6308), 4, + [70646] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6306), 35, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131943,9 +129688,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, @@ -131953,6 +129698,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -131961,13 +129707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69358] = 2, - ACTIONS(6108), 4, + [70690] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 35, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -131977,6 +129722,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, @@ -131986,7 +129732,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, @@ -131995,6 +129740,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132003,13 +129749,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69402] = 2, - ACTIONS(6336), 4, + [70734] = 2, + ACTIONS(6096), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6334), 35, + ACTIONS(6094), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132037,6 +129782,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132045,13 +129791,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69446] = 2, - ACTIONS(6358), 4, + [70778] = 2, + ACTIONS(6100), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6356), 35, + ACTIONS(6098), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132071,14 +129816,15 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -132087,13 +129833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69490] = 2, - ACTIONS(6386), 4, + [70822] = 2, + ACTIONS(6104), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6384), 35, + ACTIONS(6102), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132113,14 +129858,15 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -132129,13 +129875,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69534] = 2, - ACTIONS(6224), 4, + [70866] = 2, + ACTIONS(6108), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6222), 35, + ACTIONS(6106), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132163,6 +129908,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132171,13 +129917,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69578] = 2, - ACTIONS(6258), 4, + [70910] = 2, + ACTIONS(6112), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6256), 35, + ACTIONS(6110), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132205,6 +129950,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132213,13 +129959,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69622] = 2, - ACTIONS(6300), 4, + [70954] = 2, + ACTIONS(6116), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6298), 35, + ACTIONS(6114), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132247,6 +129992,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132255,13 +130001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69666] = 2, - ACTIONS(6320), 4, + [70998] = 2, + ACTIONS(6120), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6318), 35, + ACTIONS(6118), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132289,6 +130034,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132297,13 +130043,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69710] = 2, - ACTIONS(6348), 4, + [71042] = 2, + ACTIONS(6124), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6346), 35, + ACTIONS(6122), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132331,6 +130076,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132339,13 +130085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69754] = 2, - ACTIONS(6362), 4, + [71086] = 2, + ACTIONS(6128), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6360), 35, + ACTIONS(6126), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132373,6 +130118,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132381,13 +130127,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69798] = 2, - ACTIONS(6372), 4, + [71130] = 2, + ACTIONS(6132), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6370), 35, + ACTIONS(6130), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132415,6 +130160,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132423,13 +130169,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69842] = 2, - ACTIONS(6378), 4, + [71174] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6376), 35, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132457,6 +130202,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132465,13 +130211,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69886] = 2, - ACTIONS(6382), 4, + [71218] = 2, + ACTIONS(6058), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6380), 35, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132489,6 +130234,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, @@ -132496,9 +130242,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -132507,13 +130253,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69930] = 2, - ACTIONS(6394), 4, + [71262] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6392), 35, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132531,6 +130276,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, @@ -132538,9 +130284,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -132549,13 +130295,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [69974] = 2, - ACTIONS(6070), 4, + [71306] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 35, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132583,6 +130328,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132591,13 +130337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70018] = 2, - ACTIONS(6398), 4, + [71350] = 2, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6396), 35, + ACTIONS(6180), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132615,9 +130360,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, @@ -132625,6 +130370,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132633,13 +130379,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70062] = 2, - ACTIONS(6164), 4, + [71394] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6162), 35, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132657,9 +130402,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, @@ -132667,6 +130412,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132675,13 +130421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70106] = 2, - ACTIONS(6108), 4, + [71438] = 2, + ACTIONS(6136), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 35, + ACTIONS(6134), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132709,6 +130454,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132717,13 +130463,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70150] = 2, - ACTIONS(6168), 4, + [71482] = 2, + ACTIONS(6140), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6166), 35, + ACTIONS(6138), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132743,14 +130488,15 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -132759,13 +130505,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70194] = 2, - ACTIONS(6250), 4, + [71526] = 2, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6248), 35, + ACTIONS(6256), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132785,14 +130530,15 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -132801,13 +130547,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70238] = 2, - ACTIONS(6296), 4, + [71570] = 2, + ACTIONS(6262), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6294), 35, + ACTIONS(6260), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132831,10 +130576,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -132843,13 +130589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70282] = 2, - ACTIONS(6304), 4, + [71614] = 2, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6302), 35, + ACTIONS(6180), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132859,6 +130604,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, @@ -132874,9 +130620,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -132885,13 +130631,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70326] = 2, - ACTIONS(6220), 4, + [71658] = 2, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6218), 35, + ACTIONS(6188), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132909,16 +130654,17 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -132927,13 +130673,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70370] = 2, - ACTIONS(6228), 4, + [71702] = 2, + ACTIONS(6266), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6226), 35, + ACTIONS(6264), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132961,6 +130706,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -132969,13 +130715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70414] = 2, - ACTIONS(6176), 4, + [71746] = 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6174), 35, + ACTIONS(6268), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -132995,14 +130740,15 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -133011,14 +130757,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70458] = 2, - ACTIONS(6244), 4, + [71790] = 2, + ACTIONS(6144), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6242), 35, - sym__line_ending, + ACTIONS(6142), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -133042,9 +130787,10 @@ 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, @@ -133053,13 +130799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70502] = 2, - ACTIONS(6232), 4, + [71834] = 2, + ACTIONS(6148), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6230), 35, + ACTIONS(6146), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133083,10 +130828,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -133095,13 +130841,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70546] = 2, - ACTIONS(6236), 4, + [71878] = 2, + ACTIONS(6152), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6234), 35, + ACTIONS(6150), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133125,10 +130870,11 @@ 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__emphasis_close_underscore, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -133137,13 +130883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70590] = 2, - ACTIONS(6324), 4, + [71922] = 2, + ACTIONS(6194), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6322), 35, + ACTIONS(6192), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133161,6 +130906,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, @@ -133168,9 +130914,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -133179,13 +130925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70634] = 2, - ACTIONS(6328), 4, + [71966] = 2, + ACTIONS(6156), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6326), 35, + ACTIONS(6154), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133213,6 +130958,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133221,13 +130967,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70678] = 2, - ACTIONS(6340), 4, + [72010] = 2, + ACTIONS(6160), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6338), 35, + ACTIONS(6158), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133255,6 +131000,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133263,13 +131009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70722] = 2, - ACTIONS(6180), 4, + [72054] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6178), 35, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133279,6 +131024,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, @@ -133289,7 +131035,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, @@ -133297,6 +131042,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133305,13 +131051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70766] = 2, - ACTIONS(6352), 4, + [72098] = 2, + ACTIONS(6288), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6350), 35, + ACTIONS(6286), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133339,6 +131084,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133347,13 +131093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70810] = 2, - ACTIONS(6368), 4, + [72142] = 2, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6366), 35, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133381,6 +131126,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133389,13 +131135,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70854] = 2, - ACTIONS(6184), 4, + [72186] = 2, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6182), 35, + ACTIONS(6196), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133413,9 +131158,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, @@ -133423,6 +131168,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133431,13 +131177,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70898] = 2, - ACTIONS(6292), 4, + [72230] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6290), 35, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133465,6 +131210,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133473,13 +131219,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70942] = 2, - ACTIONS(6312), 4, + [72274] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6310), 35, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133507,6 +131252,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133515,13 +131261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [70986] = 2, - ACTIONS(6192), 4, + [72318] = 2, + ACTIONS(6202), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6190), 35, + ACTIONS(6200), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133539,9 +131284,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, @@ -133549,6 +131294,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133557,13 +131303,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71030] = 2, - ACTIONS(6172), 4, + [72362] = 2, + ACTIONS(6058), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6170), 35, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133591,6 +131336,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133599,13 +131345,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71074] = 2, - ACTIONS(6240), 4, + [72406] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6238), 35, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133633,6 +131378,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133641,13 +131387,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71118] = 2, - ACTIONS(6196), 4, + [72450] = 2, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6194), 35, + ACTIONS(6180), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133667,14 +131412,15 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -133683,13 +131429,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71162] = 2, - ACTIONS(6244), 4, + [72494] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6242), 35, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133717,6 +131462,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133725,13 +131471,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71206] = 2, - ACTIONS(6266), 4, + [72538] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6264), 35, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133749,6 +131494,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, @@ -133756,9 +131502,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -133767,13 +131513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71250] = 2, - ACTIONS(6270), 4, + [72582] = 2, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6268), 35, + ACTIONS(6188), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133801,6 +131546,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133809,13 +131555,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71294] = 2, - ACTIONS(6274), 4, + [72626] = 2, + ACTIONS(6194), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6272), 35, + ACTIONS(6192), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133843,6 +131588,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133851,13 +131597,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71338] = 2, - ACTIONS(6254), 4, + [72670] = 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6252), 35, + ACTIONS(6208), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133875,9 +131620,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, @@ -133885,6 +131630,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133893,13 +131639,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71382] = 2, - ACTIONS(6278), 4, + [72714] = 2, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6276), 35, + ACTIONS(6196), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133927,6 +131672,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133935,13 +131681,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71426] = 2, - ACTIONS(6308), 4, + [72758] = 2, + ACTIONS(6202), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6306), 35, + ACTIONS(6200), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -133969,6 +131714,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -133977,13 +131723,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71470] = 2, - ACTIONS(6200), 4, + [72802] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6198), 35, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134003,14 +131748,15 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -134019,13 +131765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71514] = 2, - ACTIONS(6358), 4, + [72846] = 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6356), 35, + ACTIONS(6208), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134053,6 +131798,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134061,13 +131807,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71558] = 2, - ACTIONS(6386), 4, + [72890] = 2, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6384), 35, + ACTIONS(6212), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134095,6 +131840,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134103,13 +131849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71602] = 2, - ACTIONS(6398), 4, + [72934] = 2, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6396), 35, + ACTIONS(6272), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134137,6 +131882,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134145,13 +131891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71646] = 2, - ACTIONS(6164), 4, + [72978] = 2, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6162), 35, + ACTIONS(6216), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134179,6 +131924,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134187,13 +131933,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71690] = 2, - ACTIONS(6168), 4, + [73022] = 2, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6166), 35, + ACTIONS(6220), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134221,6 +131966,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134229,13 +131975,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71734] = 2, - ACTIONS(6250), 4, + [73066] = 2, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6248), 35, + ACTIONS(6224), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134263,6 +132008,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134271,13 +132017,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71778] = 2, - ACTIONS(6176), 4, + [73110] = 2, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6174), 35, + ACTIONS(6228), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134305,6 +132050,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134313,13 +132059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71822] = 2, - ACTIONS(6180), 4, + [73154] = 2, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6178), 35, + ACTIONS(6232), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134347,6 +132092,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134355,13 +132101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71866] = 2, - ACTIONS(6184), 4, + [73198] = 2, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6182), 35, + ACTIONS(6276), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134389,6 +132134,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134397,13 +132143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71910] = 2, - ACTIONS(6192), 4, + [73242] = 2, + ACTIONS(6238), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6190), 35, + ACTIONS(6236), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134431,6 +132176,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134439,13 +132185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71954] = 2, - ACTIONS(6196), 4, + [73286] = 2, + ACTIONS(6242), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6194), 35, + ACTIONS(6240), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134473,6 +132218,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134481,13 +132227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [71998] = 2, - ACTIONS(6254), 4, + [73330] = 2, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6252), 35, + ACTIONS(6280), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134515,6 +132260,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134523,13 +132269,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72042] = 2, - ACTIONS(6200), 4, + [73374] = 2, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6198), 35, + ACTIONS(6244), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134557,6 +132302,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134565,13 +132311,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72086] = 2, - ACTIONS(6204), 4, + [73418] = 2, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6202), 35, + ACTIONS(6212), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134589,6 +132334,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, @@ -134596,9 +132342,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -134607,13 +132353,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72130] = 2, - ACTIONS(6262), 4, + [73462] = 2, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6260), 35, + ACTIONS(6272), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134631,6 +132376,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, @@ -134638,9 +132384,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -134649,13 +132395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72174] = 2, - ACTIONS(6208), 4, + [73506] = 2, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6206), 35, + ACTIONS(6216), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134673,6 +132418,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, @@ -134680,9 +132426,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -134691,13 +132437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72218] = 2, - ACTIONS(6204), 4, + [73550] = 2, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6202), 35, + ACTIONS(6220), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134715,9 +132460,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, @@ -134725,6 +132470,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134733,13 +132479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72262] = 2, - ACTIONS(6262), 4, + [73594] = 2, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6260), 35, + ACTIONS(6224), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134757,9 +132502,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, @@ -134767,6 +132512,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134775,14 +132521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72306] = 2, - ACTIONS(3446), 5, + [73638] = 2, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(3444), 34, + ACTIONS(6228), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134800,6 +132544,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, @@ -134809,22 +132554,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [72350] = 2, - ACTIONS(6266), 4, + sym__whitespace, + [73682] = 2, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6264), 35, - sym__line_ending, + ACTIONS(6232), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -134841,6 +132586,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, @@ -134850,7 +132596,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, anon_sym_LBRACK, @@ -134859,14 +132605,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72394] = 2, - ACTIONS(6270), 4, + [73726] = 2, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6268), 35, - sym__line_ending, + ACTIONS(6276), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -134883,6 +132628,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, @@ -134892,7 +132638,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, anon_sym_LBRACK, @@ -134901,14 +132647,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72438] = 2, - ACTIONS(6274), 4, + [73770] = 2, + ACTIONS(6238), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6272), 35, - sym__line_ending, + ACTIONS(6236), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -134925,6 +132670,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, @@ -134934,7 +132680,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, anon_sym_LBRACK, @@ -134943,13 +132689,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72482] = 2, - ACTIONS(6208), 4, + [73814] = 2, + ACTIONS(6242), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6206), 35, + ACTIONS(6240), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -134967,9 +132712,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, @@ -134977,6 +132722,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -134985,13 +132731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72526] = 2, - ACTIONS(6316), 4, + [73858] = 2, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6314), 35, + ACTIONS(6280), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135009,8 +132754,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, @@ -135019,6 +132764,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -135027,14 +132773,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72570] = 2, - ACTIONS(6282), 5, + [73902] = 2, + ACTIONS(6250), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6280), 34, + ACTIONS(6248), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135059,24 +132803,25 @@ 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, 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, - [72614] = 2, - ACTIONS(6278), 4, + sym__whitespace, + [73946] = 2, + ACTIONS(6254), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6276), 35, - sym__line_ending, + ACTIONS(6252), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135100,9 +132845,10 @@ 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, @@ -135111,13 +132857,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72658] = 2, - ACTIONS(6212), 4, + [73990] = 2, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6210), 35, + ACTIONS(6244), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135135,6 +132880,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, @@ -135142,9 +132888,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -135153,13 +132899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72702] = 2, - ACTIONS(3446), 4, + [74034] = 2, + ACTIONS(6064), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3444), 35, + ACTIONS(6062), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135169,7 +132914,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, @@ -135179,6 +132923,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, @@ -135187,6 +132932,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -135195,13 +132941,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72746] = 2, - ACTIONS(6216), 4, + [74078] = 2, + ACTIONS(6254), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6214), 35, + sym__whitespace, + ACTIONS(6252), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135226,25 +132972,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__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, - [72790] = 2, - ACTIONS(6308), 4, + [74122] = 2, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6306), 35, - sym__line_ending, + ACTIONS(6188), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135253,6 +132998,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, @@ -135270,7 +133016,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, anon_sym_LBRACK, @@ -135279,13 +133025,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72834] = 2, - ACTIONS(6332), 4, + [74166] = 2, + ACTIONS(6194), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6330), 35, + ACTIONS(6192), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135295,6 +133040,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, @@ -135304,7 +133050,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, @@ -135313,6 +133058,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -135321,14 +133067,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72878] = 2, - ACTIONS(6296), 4, + [74210] = 2, + ACTIONS(6108), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6294), 35, - sym__soft_line_ending, + ACTIONS(6106), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135346,7 +133091,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, @@ -135355,6 +133099,8 @@ 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, @@ -135363,13 +133109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72922] = 2, - ACTIONS(6304), 4, + [74254] = 2, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6302), 35, + ACTIONS(6196), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135379,6 +133124,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, @@ -135388,7 +133134,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, @@ -135397,6 +133142,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -135405,13 +133151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [72966] = 2, - ACTIONS(6220), 4, + [74298] = 2, + ACTIONS(6068), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6218), 35, + ACTIONS(6066), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135429,8 +133174,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, @@ -135439,6 +133184,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -135447,13 +133193,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73010] = 2, - ACTIONS(6228), 4, + [74342] = 2, + ACTIONS(6072), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6226), 35, + ACTIONS(6070), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135471,8 +133216,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, @@ -135481,6 +133226,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -135489,14 +133235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73054] = 2, - ACTIONS(6316), 5, + [74386] = 2, + ACTIONS(6076), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6314), 34, + ACTIONS(6074), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135515,6 +133259,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, @@ -135523,64 +133268,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [73098] = 2, - ACTIONS(6332), 5, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6330), 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_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, - [73142] = 2, - ACTIONS(6344), 5, + [74430] = 2, + ACTIONS(6080), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6342), 34, + ACTIONS(6078), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135599,6 +133301,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, @@ -135607,22 +133310,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [73186] = 2, - ACTIONS(6390), 5, + sym__whitespace, + [74474] = 2, + ACTIONS(6202), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6388), 34, + ACTIONS(6200), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135632,6 +133334,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, @@ -135649,21 +133352,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [73230] = 2, - ACTIONS(6438), 4, + sym__whitespace, + [74518] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6436), 35, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135673,6 +133376,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, @@ -135683,7 +133387,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, @@ -135691,6 +133394,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -135699,13 +133403,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73274] = 2, - ACTIONS(6344), 4, + [74562] = 2, + ACTIONS(6250), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6342), 35, + ACTIONS(6248), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135723,8 +133426,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, @@ -135733,6 +133436,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -135741,14 +133445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73318] = 2, - ACTIONS(6212), 4, + [74606] = 2, + ACTIONS(6136), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6210), 35, - sym__soft_line_ending, + ACTIONS(6134), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135767,7 +133470,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, @@ -135775,6 +133477,8 @@ 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, @@ -135783,14 +133487,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73362] = 2, - ACTIONS(6188), 5, + [74650] = 2, + ACTIONS(6254), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6186), 34, + ACTIONS(6252), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135808,6 +133510,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, @@ -135817,22 +133520,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [73406] = 2, - ACTIONS(6324), 4, + sym__whitespace, + [74694] = 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6322), 35, - sym__line_ending, + ACTIONS(6208), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -135841,6 +133544,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, @@ -135858,7 +133562,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, anon_sym_LBRACK, @@ -135867,13 +133571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73450] = 2, - ACTIONS(6216), 4, + [74738] = 2, + ACTIONS(6084), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6214), 35, + ACTIONS(6082), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135892,8 +133595,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, @@ -135901,6 +133604,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -135909,13 +133613,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73494] = 2, - ACTIONS(6232), 4, + [74782] = 2, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6230), 35, + ACTIONS(6212), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135925,6 +133628,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, @@ -135933,7 +133637,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, @@ -135943,6 +133646,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -135951,14 +133655,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73538] = 2, - ACTIONS(6288), 5, + [74826] = 2, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6286), 34, + ACTIONS(6272), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -135968,6 +133670,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, @@ -135985,21 +133688,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [73582] = 2, - ACTIONS(6236), 4, + sym__whitespace, + [74870] = 2, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6234), 35, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136017,8 +133720,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, @@ -136027,6 +133730,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -136035,13 +133739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73626] = 2, - ACTIONS(6324), 4, + [74914] = 2, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6322), 35, + ACTIONS(6216), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136051,6 +133754,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, @@ -136060,7 +133764,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, @@ -136069,6 +133772,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -136077,14 +133781,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73670] = 2, - ACTIONS(6128), 5, + [74958] = 2, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6126), 34, + ACTIONS(6220), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136094,6 +133796,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, @@ -136111,21 +133814,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [73714] = 2, - ACTIONS(6328), 4, + sym__whitespace, + [75002] = 2, + ACTIONS(6088), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6326), 35, + ACTIONS(6086), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136153,6 +133856,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -136161,13 +133865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73758] = 2, - ACTIONS(6340), 4, + [75046] = 2, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6338), 35, + ACTIONS(6224), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136177,6 +133880,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, @@ -136186,7 +133890,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, @@ -136195,6 +133898,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -136203,13 +133907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73802] = 2, - ACTIONS(6220), 4, + [75090] = 2, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6218), 35, + ACTIONS(6228), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136219,6 +133922,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, @@ -136234,9 +133938,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -136245,13 +133949,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73846] = 2, - ACTIONS(6228), 4, + [75134] = 2, + ACTIONS(6092), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6226), 35, + ACTIONS(6090), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136270,15 +133973,16 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -136287,13 +133991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73890] = 2, - ACTIONS(6232), 4, + [75178] = 2, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6230), 35, + ACTIONS(6232), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136303,6 +134006,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, @@ -136318,9 +134022,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -136329,13 +134033,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73934] = 2, - ACTIONS(6236), 4, + [75222] = 2, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6234), 35, + ACTIONS(6276), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136345,6 +134048,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, @@ -136360,9 +134064,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -136371,14 +134075,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [73978] = 2, - ACTIONS(6402), 5, + [75266] = 2, + ACTIONS(6096), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6400), 34, + ACTIONS(6094), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136397,6 +134099,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, @@ -136405,21 +134108,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74022] = 2, - ACTIONS(6390), 4, + sym__whitespace, + [75310] = 2, + ACTIONS(6100), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6388), 35, + ACTIONS(6098), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136447,6 +134150,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -136455,13 +134159,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74066] = 2, - ACTIONS(6352), 4, + [75354] = 2, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6350), 35, + ACTIONS(6256), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136480,15 +134183,16 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -136497,14 +134201,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74110] = 2, - ACTIONS(6336), 5, + [75398] = 2, + ACTIONS(6262), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6334), 34, + ACTIONS(6260), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136529,23 +134231,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__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, - [74154] = 2, - ACTIONS(6368), 4, + sym__whitespace, + [75442] = 2, + ACTIONS(6266), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6366), 35, + ACTIONS(6264), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136564,15 +134267,16 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -136581,13 +134285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74198] = 2, - ACTIONS(6196), 4, + [75486] = 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6194), 35, + ACTIONS(6268), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136605,7 +134308,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, @@ -136613,8 +134315,10 @@ 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, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -136623,14 +134327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74242] = 2, - ACTIONS(6224), 5, + [75530] = 2, + ACTIONS(6104), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6222), 34, + ACTIONS(6102), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136649,6 +134351,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, @@ -136657,22 +134360,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74286] = 2, - ACTIONS(6258), 5, + sym__whitespace, + [75574] = 2, + ACTIONS(6108), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6256), 34, + ACTIONS(6106), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136691,6 +134393,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, @@ -136699,22 +134402,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74330] = 2, - ACTIONS(6300), 5, + sym__whitespace, + [75618] = 2, + ACTIONS(6112), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6298), 34, + ACTIONS(6110), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136733,6 +134435,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, @@ -136741,22 +134444,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74374] = 2, - ACTIONS(6320), 5, + sym__whitespace, + [75662] = 2, + ACTIONS(6116), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6318), 34, + ACTIONS(6114), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136775,6 +134477,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, @@ -136783,22 +134486,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74418] = 2, - ACTIONS(6348), 5, + sym__whitespace, + [75706] = 2, + ACTIONS(6120), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6346), 34, + ACTIONS(6118), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136817,6 +134519,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, @@ -136825,22 +134528,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74462] = 2, - ACTIONS(6362), 5, + sym__whitespace, + [75750] = 2, + ACTIONS(6124), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6360), 34, + ACTIONS(6122), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136859,6 +134561,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, @@ -136867,22 +134570,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74506] = 2, - ACTIONS(6372), 5, + sym__whitespace, + [75794] = 2, + ACTIONS(6128), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6370), 34, + ACTIONS(6126), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136901,6 +134603,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, @@ -136909,22 +134612,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74550] = 2, - ACTIONS(6378), 5, + sym__whitespace, + [75838] = 2, + ACTIONS(6132), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6376), 34, + ACTIONS(6130), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136943,6 +134645,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, @@ -136951,22 +134654,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74594] = 2, - ACTIONS(6382), 5, + sym__whitespace, + [75882] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6380), 34, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -136985,6 +134687,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, @@ -136993,22 +134696,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74638] = 2, - ACTIONS(6394), 5, + sym__whitespace, + [75926] = 2, + ACTIONS(6238), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6392), 34, + ACTIONS(6236), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137018,6 +134720,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, @@ -137035,22 +134738,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74682] = 2, - ACTIONS(6070), 5, + sym__whitespace, + [75970] = 2, + ACTIONS(6242), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6068), 34, + ACTIONS(6240), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137060,6 +134762,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, @@ -137077,21 +134780,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74726] = 2, - ACTIONS(6292), 4, + sym__whitespace, + [76014] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6290), 35, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137119,6 +134822,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -137127,13 +134831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74770] = 2, - ACTIONS(6312), 4, + [76058] = 2, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6310), 35, + ACTIONS(6280), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137143,6 +134846,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, @@ -137152,7 +134856,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, @@ -137161,6 +134864,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -137169,14 +134873,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74814] = 2, - ACTIONS(6108), 5, + [76102] = 2, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6106), 34, + ACTIONS(6244), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137186,6 +134888,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, @@ -137203,21 +134906,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74858] = 2, - ACTIONS(6254), 4, + sym__whitespace, + [76146] = 2, + ACTIONS(6136), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6252), 35, + ACTIONS(6134), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137235,8 +134938,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, @@ -137245,6 +134948,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -137253,13 +134957,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74902] = 2, - ACTIONS(6172), 4, + [76190] = 2, + ACTIONS(6140), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6170), 35, + ACTIONS(6138), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137287,6 +134990,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -137295,14 +134999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [74946] = 2, - ACTIONS(6296), 5, + [76234] = 2, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6294), 34, + ACTIONS(6256), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137320,6 +135022,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, @@ -137329,22 +135032,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [74990] = 2, - ACTIONS(6304), 5, + sym__whitespace, + [76278] = 2, + ACTIONS(6262), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6302), 34, + ACTIONS(6260), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137362,6 +135064,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, @@ -137371,21 +135074,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75034] = 2, - ACTIONS(6220), 4, + sym__whitespace, + [76322] = 2, + ACTIONS(6298), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6218), 35, + ACTIONS(6296), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137413,6 +135116,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -137421,14 +135125,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75078] = 2, - ACTIONS(6228), 4, + [76366] = 2, + ACTIONS(6140), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6226), 35, - sym__soft_line_ending, + ACTIONS(6138), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -137447,7 +135150,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, @@ -137455,6 +135157,8 @@ 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, @@ -137463,13 +135167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75122] = 2, - ACTIONS(6438), 4, + [76410] = 2, + ACTIONS(6266), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6436), 35, + ACTIONS(6264), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137487,16 +135190,17 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -137505,14 +135209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75166] = 2, - ACTIONS(6328), 4, + [76454] = 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6326), 35, - sym__line_ending, + ACTIONS(6268), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -137529,6 +135232,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, @@ -137538,7 +135242,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, anon_sym_LBRACK, @@ -137547,13 +135251,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75210] = 2, - ACTIONS(6232), 4, + [76498] = 2, + ACTIONS(6144), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6230), 35, + ACTIONS(6142), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137572,8 +135275,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, @@ -137581,6 +135284,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -137589,13 +135293,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75254] = 2, - ACTIONS(6236), 4, + [76542] = 2, + ACTIONS(6148), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6234), 35, + ACTIONS(6146), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137614,8 +135317,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, @@ -137623,6 +135326,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -137631,14 +135335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75298] = 2, - ACTIONS(6324), 5, + [76586] = 2, + ACTIONS(6152), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6322), 34, + ACTIONS(6150), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137657,6 +135359,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, @@ -137665,23 +135368,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75342] = 2, - ACTIONS(6328), 5, + sym__whitespace, + [76630] = 2, + ACTIONS(6124), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6326), 34, - sym__soft_line_ending, + ACTIONS(6122), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -137707,22 +135409,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_inline_note_token1, anon_sym_PIPE, - [75386] = 2, - ACTIONS(6340), 5, + sym__whitespace, + [76674] = 2, + ACTIONS(6156), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6338), 34, + ACTIONS(6154), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137741,6 +135443,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, @@ -137749,21 +135452,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75430] = 2, - ACTIONS(6240), 4, + sym__whitespace, + [76718] = 2, + ACTIONS(6160), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6238), 35, + ACTIONS(6158), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137791,6 +135494,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -137799,14 +135503,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75474] = 2, - ACTIONS(6352), 5, + [76762] = 2, + ACTIONS(6288), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, + ACTIONS(6286), 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__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_LBRACE, + anon_sym_PIPE, sym__whitespace, - ACTIONS(6350), 34, + [76806] = 2, + ACTIONS(6166), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137825,6 +135569,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, @@ -137833,21 +135578,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75518] = 2, - ACTIONS(3446), 4, + sym__whitespace, + [76850] = 2, + ACTIONS(6064), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3444), 35, + ACTIONS(6062), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -137858,6 +135603,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, @@ -137869,12 +135615,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -137883,17 +135629,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75562] = 4, - ACTIONS(3252), 1, + [76894] = 2, + ACTIONS(6170), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6168), 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__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_LBRACE, - STATE(2335), 1, - sym__pandoc_attr_specifier, - ACTIONS(6112), 4, + anon_sym_PIPE, + sym__whitespace, + [76938] = 2, + ACTIONS(6174), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6172), 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__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_LBRACE, + anon_sym_PIPE, + sym__whitespace, + [76982] = 2, + ACTIONS(6128), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6110), 33, + ACTIONS(6126), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -137920,24 +135746,109 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75610] = 4, - ACTIONS(3252), 1, + [77026] = 2, + ACTIONS(6058), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6056), 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__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_LBRACE, + anon_sym_PIPE, + sym__whitespace, + [77070] = 2, + ACTIONS(6178), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6176), 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__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_LBRACE, + anon_sym_PIPE, + sym__whitespace, + [77114] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2337), 1, + STATE(2286), 1, sym__pandoc_attr_specifier, - ACTIONS(6156), 4, + ACTIONS(5968), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6154), 33, + ACTIONS(5966), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -137964,6 +135875,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -137971,17 +135883,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [75658] = 4, - ACTIONS(3252), 1, + [77162] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2338), 1, + STATE(2291), 1, sym__pandoc_attr_specifier, - ACTIONS(6160), 4, + ACTIONS(5982), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6158), 33, + ACTIONS(5980), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138008,6 +135919,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138015,17 +135927,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [75706] = 4, - ACTIONS(3252), 1, + [77210] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2344), 1, + STATE(2264), 1, sym__pandoc_attr_specifier, - ACTIONS(6066), 4, + ACTIONS(5954), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6064), 33, + ACTIONS(5952), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138052,6 +135963,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138059,17 +135971,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [75754] = 4, - ACTIONS(3252), 1, + [77258] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2289), 1, + STATE(2240), 1, sym__pandoc_attr_specifier, - ACTIONS(6078), 4, + ACTIONS(5972), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6076), 33, + ACTIONS(5970), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138096,6 +136007,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138103,17 +136015,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [75802] = 4, - ACTIONS(3252), 1, + [77306] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2290), 1, + STATE(2281), 1, sym__pandoc_attr_specifier, - ACTIONS(6082), 4, + ACTIONS(5986), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6080), 33, + ACTIONS(5984), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138140,6 +136051,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138147,14 +136059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [75850] = 2, - ACTIONS(6368), 5, + [77354] = 2, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6366), 34, + ACTIONS(6180), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138173,6 +136083,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, @@ -138181,21 +136092,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [75894] = 2, - ACTIONS(6212), 4, + sym__whitespace, + [77398] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6210), 35, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138213,8 +136124,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, @@ -138223,6 +136134,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138231,17 +136143,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [75938] = 4, - ACTIONS(6468), 1, + [77442] = 2, + ACTIONS(6132), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6130), 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, + [77486] = 4, + ACTIONS(6330), 1, anon_sym_LBRACE, - STATE(2302), 1, + STATE(2295), 1, sym_attribute_specifier, - ACTIONS(6090), 4, + ACTIONS(5958), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6088), 33, + ACTIONS(5956), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138268,6 +136221,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138275,17 +136229,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [75986] = 4, - ACTIONS(3252), 1, + [77534] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2303), 1, + STATE(2296), 1, sym__pandoc_attr_specifier, - ACTIONS(6116), 4, + ACTIONS(5964), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6114), 33, + ACTIONS(5962), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138312,6 +136265,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138319,17 +136273,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76034] = 4, - ACTIONS(3252), 1, + [77582] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2304), 1, + STATE(2263), 1, sym__pandoc_attr_specifier, - ACTIONS(6120), 4, + ACTIONS(5998), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6118), 33, + ACTIONS(5996), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138356,6 +136309,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138363,17 +136317,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76082] = 4, - ACTIONS(3252), 1, + [77630] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2307), 1, + STATE(2232), 1, sym__pandoc_attr_specifier, - ACTIONS(6124), 4, + ACTIONS(6002), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6122), 33, + ACTIONS(6000), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138400,6 +136353,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138407,17 +136361,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76130] = 4, - ACTIONS(3252), 1, + [77678] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2308), 1, + STATE(2233), 1, sym__pandoc_attr_specifier, - ACTIONS(6128), 4, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 33, + ACTIONS(6004), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138444,6 +136397,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138451,17 +136405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76178] = 4, - ACTIONS(3252), 1, + [77726] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2309), 1, + STATE(2235), 1, sym__pandoc_attr_specifier, - ACTIONS(6132), 4, + ACTIONS(6010), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6130), 33, + ACTIONS(6008), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138488,6 +136441,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138495,17 +136449,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76226] = 4, - ACTIONS(3252), 1, + [77774] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2310), 1, + STATE(2236), 1, sym__pandoc_attr_specifier, - ACTIONS(6054), 4, + ACTIONS(6014), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6052), 33, + ACTIONS(6012), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138532,6 +136485,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138539,17 +136493,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76274] = 4, - ACTIONS(3252), 1, + [77822] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2311), 1, + STATE(2237), 1, sym__pandoc_attr_specifier, - ACTIONS(6144), 4, + ACTIONS(6018), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6142), 33, + ACTIONS(6016), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138576,6 +136529,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138583,17 +136537,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76322] = 4, - ACTIONS(3252), 1, + [77870] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2312), 1, + STATE(2239), 1, sym__pandoc_attr_specifier, - ACTIONS(6062), 4, + ACTIONS(6022), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6060), 33, + ACTIONS(6020), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138620,6 +136573,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138627,17 +136581,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76370] = 4, - ACTIONS(3252), 1, + [77918] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2315), 1, + STATE(2243), 1, sym__pandoc_attr_specifier, - ACTIONS(6136), 4, + ACTIONS(6026), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6134), 33, + ACTIONS(6024), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138664,6 +136617,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138671,17 +136625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76418] = 4, - ACTIONS(3252), 1, + [77966] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2316), 1, + STATE(2244), 1, sym__pandoc_attr_specifier, - ACTIONS(6070), 4, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 33, + ACTIONS(6028), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138708,6 +136661,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138715,17 +136669,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76466] = 4, - ACTIONS(3252), 1, + [78014] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2319), 1, + STATE(2247), 1, sym__pandoc_attr_specifier, - ACTIONS(6104), 4, + ACTIONS(6034), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6102), 33, + ACTIONS(6032), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138752,6 +136705,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138759,17 +136713,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76514] = 4, - ACTIONS(3252), 1, + [78062] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2321), 1, + STATE(2252), 1, sym__pandoc_attr_specifier, - ACTIONS(6108), 4, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 33, + ACTIONS(5948), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -138796,6 +136749,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138803,14 +136757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76562] = 2, - ACTIONS(6292), 5, + [78110] = 2, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6290), 34, + ACTIONS(6188), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138829,6 +136781,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, @@ -138837,22 +136790,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76606] = 2, - ACTIONS(6312), 5, + sym__whitespace, + [78154] = 2, + ACTIONS(6194), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6310), 34, + ACTIONS(6192), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138871,6 +136823,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, @@ -138879,21 +136832,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76650] = 2, - ACTIONS(6244), 4, + sym__whitespace, + [78198] = 2, + ACTIONS(6084), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6242), 35, + ACTIONS(6082), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138903,6 +136856,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, @@ -138912,7 +136866,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, @@ -138921,6 +136874,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -138929,14 +136883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [76694] = 2, - ACTIONS(6172), 5, + [78242] = 2, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6170), 34, + ACTIONS(6196), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -138955,6 +136907,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, @@ -138963,25 +136916,25 @@ static const uint16_t ts_small_parse_table[] = { 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, - [76738] = 4, - ACTIONS(3252), 1, + sym__whitespace, + [78286] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2322), 1, + STATE(2253), 1, sym__pandoc_attr_specifier, - ACTIONS(6148), 4, + ACTIONS(6042), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6146), 33, + ACTIONS(6040), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139008,6 +136961,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -139015,17 +136969,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76786] = 4, - ACTIONS(3252), 1, + [78334] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2323), 1, + STATE(2255), 1, sym__pandoc_attr_specifier, - ACTIONS(6058), 4, + ACTIONS(6046), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6056), 33, + ACTIONS(6044), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139052,6 +137005,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -139059,17 +137013,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76834] = 4, - ACTIONS(3252), 1, + [78382] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2324), 1, + STATE(2256), 1, sym__pandoc_attr_specifier, - ACTIONS(6100), 4, + ACTIONS(6050), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6098), 33, + ACTIONS(6048), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139096,6 +137049,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -139103,17 +137057,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76882] = 4, - ACTIONS(3252), 1, + [78430] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2325), 1, + STATE(2257), 1, sym__pandoc_attr_specifier, - ACTIONS(6086), 4, + ACTIONS(6054), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6084), 33, + ACTIONS(6052), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139140,6 +137093,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -139147,17 +137101,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76930] = 4, - ACTIONS(3252), 1, + [78478] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2329), 1, + STATE(2261), 1, sym__pandoc_attr_specifier, - ACTIONS(6096), 4, + ACTIONS(6038), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6094), 33, + ACTIONS(6036), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139184,6 +137137,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -139191,17 +137145,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [76978] = 4, - ACTIONS(3252), 1, + [78526] = 4, + ACTIONS(3608), 1, anon_sym_LBRACE, - STATE(2330), 1, + STATE(2262), 1, sym__pandoc_attr_specifier, - ACTIONS(6140), 4, + ACTIONS(5976), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6138), 33, + ACTIONS(5974), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139228,6 +137181,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -139235,14 +137189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_DOLLAR, anon_sym_PIPE, sym__whitespace, - [77026] = 2, - ACTIONS(6240), 5, + [78574] = 2, + ACTIONS(6202), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6238), 34, + ACTIONS(6200), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139261,6 +137213,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, @@ -139269,21 +137222,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77070] = 2, - ACTIONS(6266), 4, + sym__whitespace, + [78618] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6264), 35, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139311,6 +137264,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -139319,13 +137273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77114] = 2, - ACTIONS(3446), 4, + [78662] = 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3444), 35, + ACTIONS(6208), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139344,15 +137297,16 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -139361,14 +137315,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77158] = 2, - ACTIONS(6358), 4, + [78706] = 2, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6356), 35, - sym__line_ending, + ACTIONS(6212), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139386,6 +137339,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, @@ -139394,7 +137348,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, anon_sym_LBRACK, @@ -139403,14 +137357,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77202] = 2, - ACTIONS(6386), 4, + [78750] = 2, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6384), 35, - sym__line_ending, + ACTIONS(6272), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139428,6 +137381,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, @@ -139436,7 +137390,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, anon_sym_LBRACK, @@ -139445,14 +137399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77246] = 2, - ACTIONS(6398), 4, + [78794] = 2, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6396), 35, - sym__line_ending, + ACTIONS(6216), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139470,6 +137423,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, @@ -139478,7 +137432,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, anon_sym_LBRACK, @@ -139487,14 +137441,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77290] = 2, - ACTIONS(6164), 4, + [78838] = 2, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6162), 35, - sym__line_ending, + ACTIONS(6220), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139512,6 +137465,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, @@ -139520,7 +137474,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, anon_sym_LBRACK, @@ -139529,14 +137483,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77334] = 2, - ACTIONS(6168), 4, + [78882] = 2, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6166), 35, - sym__line_ending, + ACTIONS(6224), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139554,6 +137507,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, @@ -139562,7 +137516,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, anon_sym_LBRACK, @@ -139571,14 +137525,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77378] = 2, - ACTIONS(6250), 4, + [78926] = 2, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6248), 35, - sym__line_ending, + ACTIONS(6228), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139596,6 +137549,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, @@ -139604,7 +137558,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, anon_sym_LBRACK, @@ -139613,14 +137567,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77422] = 2, - ACTIONS(6176), 4, + [78970] = 2, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6174), 35, - sym__line_ending, + ACTIONS(6232), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139638,6 +137591,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, @@ -139646,7 +137600,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, anon_sym_LBRACK, @@ -139655,14 +137609,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77466] = 2, - ACTIONS(6180), 4, + [79014] = 2, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6178), 35, - sym__line_ending, + ACTIONS(6276), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139680,6 +137633,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, @@ -139688,7 +137642,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, anon_sym_LBRACK, @@ -139697,14 +137651,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77510] = 2, - ACTIONS(6184), 4, + [79058] = 2, + ACTIONS(6238), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6182), 35, - sym__line_ending, + ACTIONS(6236), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139722,6 +137675,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, @@ -139730,7 +137684,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, anon_sym_LBRACK, @@ -139739,14 +137693,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77554] = 2, - ACTIONS(6192), 4, + [79102] = 2, + ACTIONS(6242), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6190), 35, - sym__line_ending, + ACTIONS(6240), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139764,6 +137717,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, @@ -139772,7 +137726,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, anon_sym_LBRACK, @@ -139781,14 +137735,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77598] = 2, - ACTIONS(6244), 5, + [79146] = 2, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6242), 34, + ACTIONS(6280), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139807,6 +137759,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, @@ -139815,64 +137768,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77642] = 2, - ACTIONS(6266), 5, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6264), 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_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, - [77686] = 2, - ACTIONS(6270), 5, + [79190] = 2, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6268), 34, + ACTIONS(6244), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -139891,6 +137801,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, @@ -139899,64 +137810,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77730] = 2, - ACTIONS(6274), 5, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6272), 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_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, - [77774] = 2, - ACTIONS(6196), 4, + [79234] = 2, + ACTIONS(6064), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6194), 35, - sym__line_ending, + ACTIONS(6062), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -139975,6 +137844,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, @@ -139982,7 +137852,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, anon_sym_LBRACK, @@ -139991,13 +137861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77818] = 2, - ACTIONS(6254), 4, + [79278] = 2, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6252), 35, + ACTIONS(6256), 36, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -140025,6 +137894,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140033,14 +137903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77862] = 2, - ACTIONS(6200), 4, + [79322] = 3, + ACTIONS(6332), 1, + sym_block_continuation, + ACTIONS(2707), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6198), 35, - sym__line_ending, + ACTIONS(2705), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -140066,22 +137937,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, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [77906] = 2, - ACTIONS(6270), 4, + [79368] = 2, + ACTIONS(6064), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6268), 35, + ACTIONS(6062), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140091,6 +137961,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, @@ -140100,7 +137971,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, @@ -140109,6 +137979,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140117,14 +137988,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [77950] = 2, - ACTIONS(6278), 5, + [79412] = 2, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6276), 34, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140134,6 +138003,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, @@ -140151,64 +138021,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [77994] = 2, - ACTIONS(6308), 5, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6306), 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_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, - [78038] = 2, - ACTIONS(6204), 4, + [79456] = 2, + ACTIONS(6068), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6202), 35, - sym__line_ending, + ACTIONS(6066), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -140218,6 +138046,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, @@ -140234,7 +138063,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, anon_sym_LBRACK, @@ -140243,14 +138072,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78082] = 2, - ACTIONS(6262), 4, + [79500] = 2, + ACTIONS(6068), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6260), 35, - sym__line_ending, + ACTIONS(6066), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -140269,6 +138097,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, @@ -140276,7 +138105,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, anon_sym_LBRACK, @@ -140285,14 +138114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78126] = 2, - ACTIONS(6208), 4, + [79544] = 2, + ACTIONS(6072), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6206), 35, - sym__line_ending, + ACTIONS(6070), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -140311,6 +138139,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, @@ -140318,7 +138147,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, anon_sym_LBRACK, @@ -140327,13 +138156,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78170] = 2, - ACTIONS(6274), 4, + [79588] = 2, + ACTIONS(6076), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6272), 35, + ACTIONS(6074), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140352,8 +138180,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, @@ -140361,6 +138189,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -140369,14 +138198,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78214] = 2, - ACTIONS(6282), 4, + [79632] = 2, + ACTIONS(6080), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6280), 35, - sym__line_ending, + ACTIONS(6078), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -140395,6 +138223,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, @@ -140402,7 +138231,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, anon_sym_LBRACK, @@ -140411,14 +138240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [78258] = 2, - ACTIONS(6358), 5, + [79676] = 2, + ACTIONS(6072), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6356), 34, + ACTIONS(6070), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140429,6 +138256,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, @@ -140445,22 +138273,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78302] = 2, - ACTIONS(6386), 5, + sym__whitespace, + [79720] = 2, + ACTIONS(6076), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6384), 34, + ACTIONS(6074), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140471,6 +138298,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, @@ -140487,22 +138315,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78346] = 2, - ACTIONS(6398), 5, + sym__whitespace, + [79764] = 2, + ACTIONS(6250), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6396), 34, + ACTIONS(6248), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140521,6 +138348,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, @@ -140529,23 +138357,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78390] = 2, - ACTIONS(6164), 5, + sym__whitespace, + [79808] = 2, + ACTIONS(6262), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6162), 34, - sym__soft_line_ending, + ACTIONS(6260), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -140571,22 +138398,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_inline_note_token1, anon_sym_PIPE, - [78434] = 2, - ACTIONS(6168), 5, + sym__whitespace, + [79852] = 2, + ACTIONS(6254), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6166), 34, + ACTIONS(6252), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140605,6 +138432,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, @@ -140613,22 +138441,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78478] = 2, - ACTIONS(6250), 5, + sym__whitespace, + [79896] = 2, + ACTIONS(6080), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6248), 34, + ACTIONS(6078), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140639,6 +138466,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, @@ -140655,22 +138483,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78522] = 2, - ACTIONS(6176), 5, + sym__whitespace, + [79940] = 2, + ACTIONS(6084), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6174), 34, + ACTIONS(6082), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140690,6 +138517,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, @@ -140697,23 +138525,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78566] = 2, - ACTIONS(6180), 5, + sym__whitespace, + [79984] = 2, + ACTIONS(6112), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6178), 34, - sym__soft_line_ending, + ACTIONS(6110), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -140739,22 +138566,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_inline_note_token1, anon_sym_PIPE, - [78610] = 2, - ACTIONS(6184), 5, + sym__whitespace, + [80028] = 2, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6182), 34, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140774,6 +138601,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, @@ -140781,22 +138609,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78654] = 2, - ACTIONS(6192), 5, + sym__whitespace, + [80072] = 2, + ACTIONS(6250), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6190), 34, + ACTIONS(6248), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140806,6 +138633,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, @@ -140823,23 +138651,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78698] = 2, - ACTIONS(6282), 5, + sym__whitespace, + [80116] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6280), 34, - sym__soft_line_ending, + ACTIONS(6028), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -140865,22 +138692,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, - [78742] = 2, - ACTIONS(6196), 5, + sym__whitespace, + [80160] = 2, + ACTIONS(6088), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6194), 34, + ACTIONS(6086), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140900,6 +138727,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, @@ -140907,22 +138735,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78786] = 2, - ACTIONS(6254), 5, + sym__whitespace, + [80204] = 2, + ACTIONS(6254), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6252), 34, + ACTIONS(6252), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140932,6 +138759,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, @@ -140949,22 +138777,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78830] = 2, - ACTIONS(6200), 5, + sym__whitespace, + [80248] = 2, + ACTIONS(6088), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6198), 34, + ACTIONS(6086), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -140974,6 +138801,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, @@ -140991,22 +138819,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78874] = 2, - ACTIONS(6204), 5, + sym__whitespace, + [80292] = 2, + ACTIONS(6092), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6202), 34, + ACTIONS(6090), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141026,6 +138853,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, @@ -141033,22 +138861,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78918] = 2, - ACTIONS(6262), 5, + sym__whitespace, + [80336] = 2, + ACTIONS(6084), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6260), 34, + ACTIONS(6082), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141059,6 +138886,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, @@ -141075,23 +138903,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [78962] = 2, - ACTIONS(6208), 5, + sym__whitespace, + [80380] = 2, + ACTIONS(6092), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6206), 34, - sym__soft_line_ending, + ACTIONS(6090), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141117,21 +138944,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_inline_note_token1, anon_sym_PIPE, - [79006] = 2, - ACTIONS(6188), 4, + sym__whitespace, + [80424] = 2, + ACTIONS(6096), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6186), 35, + ACTIONS(6094), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141150,8 +138978,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, @@ -141159,6 +138987,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141167,13 +138996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79050] = 2, - ACTIONS(6282), 4, + [80468] = 2, + ACTIONS(6100), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6280), 35, + ACTIONS(6098), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141193,14 +139021,15 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -141209,14 +139038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79094] = 2, - ACTIONS(6340), 4, + [80512] = 2, + ACTIONS(6104), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6338), 35, - sym__line_ending, + ACTIONS(6102), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141235,6 +139063,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, @@ -141242,7 +139071,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, anon_sym_LBRACK, @@ -141251,13 +139080,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79138] = 2, - ACTIONS(3446), 4, + [80556] = 2, + ACTIONS(6108), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3444), 35, + ACTIONS(6106), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141268,7 +139096,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, @@ -141278,6 +139105,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, @@ -141285,6 +139113,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141293,13 +139122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79182] = 2, - ACTIONS(6278), 4, + [80600] = 2, + ACTIONS(6112), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6276), 35, + ACTIONS(6110), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141318,8 +139146,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, @@ -141327,6 +139155,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141335,13 +139164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79226] = 2, - ACTIONS(6308), 4, + [80644] = 2, + ACTIONS(6116), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6306), 35, + ACTIONS(6114), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141360,8 +139188,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, @@ -141369,6 +139197,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141377,13 +139206,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79270] = 2, - ACTIONS(6200), 4, + [80688] = 2, + ACTIONS(6120), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6198), 35, + ACTIONS(6118), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141401,9 +139229,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, @@ -141411,6 +139239,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141419,14 +139248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79314] = 2, - ACTIONS(6316), 4, + [80732] = 2, + ACTIONS(6124), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6314), 35, - sym__line_ending, + ACTIONS(6122), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141445,6 +139273,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, @@ -141452,7 +139281,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, anon_sym_LBRACK, @@ -141461,14 +139290,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79358] = 2, - ACTIONS(6332), 4, + [80776] = 2, + ACTIONS(6128), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6330), 35, - sym__line_ending, + ACTIONS(6126), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141487,6 +139315,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, @@ -141494,7 +139323,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, anon_sym_LBRACK, @@ -141503,14 +139332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79402] = 2, - ACTIONS(6344), 4, + [80820] = 2, + ACTIONS(6132), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6342), 35, - sym__line_ending, + ACTIONS(6130), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -141529,6 +139357,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, @@ -141536,7 +139365,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, anon_sym_LBRACK, @@ -141545,13 +139374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79446] = 2, - ACTIONS(6358), 4, + [80864] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6356), 35, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141570,8 +139398,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, @@ -141579,6 +139407,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141587,13 +139416,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79490] = 2, - ACTIONS(3446), 4, + [80908] = 2, + ACTIONS(6282), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3444), 35, + sym__whitespace, + ACTIONS(6280), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141617,25 +139446,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__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, - [79534] = 2, - ACTIONS(6316), 4, + [80952] = 2, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6314), 35, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141646,6 +139474,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, @@ -141657,12 +139486,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -141671,13 +139500,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79578] = 2, - ACTIONS(6332), 4, + [80996] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6330), 35, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141697,14 +139525,15 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -141713,13 +139542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79622] = 2, - ACTIONS(6344), 4, + [81040] = 2, + ACTIONS(6092), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6342), 35, + ACTIONS(6090), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141729,6 +139557,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, @@ -141741,12 +139570,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -141755,13 +139584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79666] = 2, - ACTIONS(6390), 4, + [81084] = 2, + ACTIONS(6246), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6388), 35, + sym__whitespace, + ACTIONS(6244), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141783,28 +139612,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__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, - [79710] = 2, - ACTIONS(6316), 5, + [81128] = 2, + ACTIONS(6136), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6314), 34, + ACTIONS(6134), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141824,6 +139651,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, @@ -141831,22 +139659,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [79754] = 2, - ACTIONS(6332), 5, + sym__whitespace, + [81172] = 2, + ACTIONS(6140), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6330), 34, + ACTIONS(6138), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141866,6 +139693,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, @@ -141873,21 +139701,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [79798] = 2, - ACTIONS(6386), 4, + sym__whitespace, + [81216] = 2, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6384), 35, + ACTIONS(6256), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141915,6 +139743,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141923,13 +139752,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79842] = 2, - ACTIONS(6398), 4, + [81260] = 2, + ACTIONS(6262), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6396), 35, + ACTIONS(6260), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141947,8 +139775,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, @@ -141957,6 +139785,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -141965,14 +139794,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79886] = 2, - ACTIONS(6344), 5, + [81304] = 2, + ACTIONS(6298), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6342), 34, + ACTIONS(6296), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -141999,21 +139827,21 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [79930] = 2, - ACTIONS(6398), 4, + [81348] = 2, + ACTIONS(6266), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6396), 35, + ACTIONS(6264), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142041,6 +139869,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -142049,14 +139878,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [79974] = 2, - ACTIONS(6390), 5, + [81392] = 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6388), 34, + ACTIONS(6268), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142075,6 +139902,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, @@ -142083,22 +139911,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [80018] = 2, - ACTIONS(6212), 5, + sym__whitespace, + [81436] = 2, + ACTIONS(6144), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6210), 34, + ACTIONS(6142), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142118,6 +139945,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, @@ -142125,21 +139953,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [80062] = 2, - ACTIONS(6188), 4, + sym__whitespace, + [81480] = 2, + ACTIONS(6148), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6186), 35, + ACTIONS(6146), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142159,14 +139987,15 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -142175,15 +140004,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80106] = 3, - ACTIONS(6470), 1, - sym_block_continuation, - ACTIONS(3159), 4, + [81524] = 2, + ACTIONS(6152), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3157), 34, + ACTIONS(6150), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142202,6 +140029,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, @@ -142209,7 +140037,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, anon_sym_LBRACK, @@ -142218,14 +140046,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80152] = 2, - ACTIONS(6188), 5, + [81568] = 2, + ACTIONS(6088), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6186), 34, + ACTIONS(6086), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142236,6 +140062,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, @@ -142252,22 +140079,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [80196] = 2, - ACTIONS(6390), 4, + sym__whitespace, + [81612] = 2, + ACTIONS(6156), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6388), 35, - sym__line_ending, + ACTIONS(6154), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142286,6 +140113,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, @@ -142293,7 +140121,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, anon_sym_LBRACK, @@ -142302,13 +140130,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80240] = 2, - ACTIONS(6164), 4, + [81656] = 2, + ACTIONS(6160), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6162), 35, + ACTIONS(6158), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142327,8 +140154,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, @@ -142336,6 +140163,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -142344,14 +140172,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80284] = 2, - ACTIONS(6216), 5, + [81700] = 2, + ACTIONS(6096), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, + ACTIONS(6094), 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(6214), 34, + [81744] = 2, + ACTIONS(6288), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6286), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142371,6 +140239,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, @@ -142378,22 +140247,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [80328] = 2, - ACTIONS(6212), 4, + sym__whitespace, + [81788] = 2, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6210), 35, - sym__line_ending, + ACTIONS(6164), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142412,6 +140281,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, @@ -142419,7 +140289,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, anon_sym_LBRACK, @@ -142428,14 +140298,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80372] = 2, - ACTIONS(6188), 4, + [81832] = 2, + ACTIONS(6096), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6186), 35, - sym__line_ending, + ACTIONS(6094), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142444,6 +140313,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, @@ -142461,7 +140331,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, anon_sym_LBRACK, @@ -142470,13 +140340,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80416] = 2, - ACTIONS(6168), 4, + [81876] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6166), 35, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142495,8 +140364,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, @@ -142504,6 +140373,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -142512,13 +140382,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80460] = 2, - ACTIONS(6288), 4, + [81920] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6286), 35, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142538,14 +140407,15 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -142554,13 +140424,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80504] = 2, - ACTIONS(6250), 4, + [81964] = 2, + ACTIONS(6092), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6248), 35, + ACTIONS(6090), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142571,6 +140440,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, @@ -142579,7 +140449,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, @@ -142588,6 +140457,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -142596,13 +140466,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80548] = 2, - ACTIONS(6176), 4, + [82008] = 2, + ACTIONS(6058), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6174), 35, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142621,8 +140490,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, @@ -142630,6 +140499,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -142638,13 +140508,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80592] = 2, - ACTIONS(6128), 4, + [82052] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 35, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142664,14 +140533,15 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -142680,13 +140550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80636] = 2, - ACTIONS(6180), 4, + [82096] = 2, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6178), 35, + ACTIONS(6180), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142705,8 +140574,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, @@ -142714,6 +140583,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -142722,13 +140592,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80680] = 2, - ACTIONS(6184), 4, + [82140] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6182), 35, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142747,8 +140616,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, @@ -142756,6 +140625,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -142764,13 +140634,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80724] = 2, - ACTIONS(6402), 4, + [82184] = 2, + ACTIONS(6100), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6400), 35, + ACTIONS(6098), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142780,6 +140649,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, @@ -142792,12 +140662,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -142806,13 +140676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80768] = 2, - ACTIONS(6192), 4, + [82228] = 2, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6190), 35, + ACTIONS(6188), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142831,8 +140700,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, @@ -142840,6 +140709,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -142848,14 +140718,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80812] = 2, - ACTIONS(6216), 4, + [82272] = 2, + ACTIONS(6194), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6214), 35, - sym__line_ending, + ACTIONS(6192), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -142874,6 +140743,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, @@ -142881,7 +140751,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, anon_sym_LBRACK, @@ -142890,13 +140760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80856] = 2, - ACTIONS(6196), 4, + [82316] = 2, + ACTIONS(6104), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6194), 35, + ACTIONS(6102), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142906,6 +140775,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, @@ -142915,7 +140785,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, @@ -142924,6 +140793,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -142932,14 +140802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80900] = 2, - ACTIONS(6288), 5, + [82360] = 2, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6286), 34, + ACTIONS(6196), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -142959,6 +140827,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, @@ -142966,21 +140835,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [80944] = 2, - ACTIONS(6336), 4, + sym__whitespace, + [82404] = 2, + ACTIONS(6202), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6334), 35, + ACTIONS(6200), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143000,14 +140869,15 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -143016,13 +140886,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [80988] = 2, - ACTIONS(6254), 4, + [82448] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6252), 35, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143041,8 +140910,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, @@ -143050,6 +140919,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -143058,14 +140928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81032] = 2, - ACTIONS(6128), 5, + [82492] = 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6126), 34, + ACTIONS(6208), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143085,6 +140953,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, @@ -143092,22 +140961,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [81076] = 2, - ACTIONS(6200), 4, + sym__whitespace, + [82536] = 2, + ACTIONS(6144), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6198), 35, - sym__soft_line_ending, + ACTIONS(6142), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143125,7 +140994,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, @@ -143134,6 +141002,8 @@ 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, @@ -143142,14 +141012,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81120] = 2, - ACTIONS(6224), 4, + [82580] = 2, + ACTIONS(6148), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6222), 35, - sym__soft_line_ending, + ACTIONS(6146), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143170,12 +141039,13 @@ 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, @@ -143184,15 +141054,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81164] = 2, - ACTIONS(6402), 5, + [82624] = 2, + ACTIONS(6152), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6400), 34, - sym__soft_line_ending, + ACTIONS(6150), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143218,21 +141086,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, - [81208] = 2, - ACTIONS(6258), 4, + sym__whitespace, + [82668] = 2, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6256), 35, + ACTIONS(6212), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143252,14 +141121,15 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -143268,14 +141138,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81252] = 2, - ACTIONS(6300), 4, + [82712] = 2, + ACTIONS(6156), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6298), 35, - sym__soft_line_ending, + ACTIONS(6154), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143296,12 +141165,13 @@ 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, @@ -143310,15 +141180,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81296] = 2, - ACTIONS(6336), 5, + [82756] = 2, + ACTIONS(6160), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6334), 34, - sym__soft_line_ending, + ACTIONS(6158), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143344,21 +141212,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, - [81340] = 2, - ACTIONS(6320), 4, + sym__whitespace, + [82800] = 2, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6318), 35, + ACTIONS(6272), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143378,14 +141247,15 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -143394,14 +141264,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81384] = 2, - ACTIONS(6348), 4, + [82844] = 2, + ACTIONS(6288), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6346), 35, - sym__soft_line_ending, + ACTIONS(6286), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143422,12 +141291,13 @@ 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, @@ -143436,15 +141306,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81428] = 2, - ACTIONS(6224), 5, + [82888] = 2, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6222), 34, - sym__soft_line_ending, + ACTIONS(6164), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143470,22 +141338,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, - [81472] = 2, - ACTIONS(6258), 5, + sym__whitespace, + [82932] = 2, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6256), 34, + ACTIONS(6216), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143505,6 +141373,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, @@ -143512,22 +141381,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [81516] = 2, - ACTIONS(6300), 5, + sym__whitespace, + [82976] = 2, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6298), 34, + ACTIONS(6220), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143547,6 +141415,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, @@ -143554,23 +141423,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [81560] = 2, - ACTIONS(6320), 5, + sym__whitespace, + [83020] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6318), 34, - sym__soft_line_ending, + ACTIONS(6168), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143596,23 +141464,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, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [81604] = 2, - ACTIONS(6348), 5, + sym__whitespace, + [83064] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6346), 34, - sym__soft_line_ending, + ACTIONS(6172), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143638,22 +141506,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, - [81648] = 2, - ACTIONS(6362), 5, + sym__whitespace, + [83108] = 2, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6360), 34, + ACTIONS(6224), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143673,6 +141541,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, @@ -143680,23 +141549,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [81692] = 2, - ACTIONS(6372), 5, + sym__whitespace, + [83152] = 2, + ACTIONS(6058), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6370), 34, - sym__soft_line_ending, + ACTIONS(6056), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143722,22 +141590,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, - [81736] = 2, - ACTIONS(6378), 5, + sym__whitespace, + [83196] = 2, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6376), 34, + ACTIONS(6228), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143757,6 +141625,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, @@ -143764,23 +141633,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [81780] = 2, - ACTIONS(6382), 5, + sym__whitespace, + [83240] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6380), 34, - sym__soft_line_ending, + ACTIONS(6176), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143806,23 +141674,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, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [81824] = 2, - ACTIONS(6394), 5, + sym__whitespace, + [83284] = 2, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6392), 34, - sym__soft_line_ending, + ACTIONS(6180), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143848,23 +141716,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, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [81868] = 2, - ACTIONS(6070), 5, + sym__whitespace, + [83328] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6068), 34, - sym__soft_line_ending, + ACTIONS(6184), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143890,21 +141758,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, - [81912] = 2, - ACTIONS(6362), 4, + sym__whitespace, + [83372] = 2, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6360), 35, + ACTIONS(6232), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -143924,14 +141793,15 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -143940,14 +141810,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [81956] = 2, - ACTIONS(6372), 4, + [83416] = 2, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6370), 35, - sym__soft_line_ending, + ACTIONS(6188), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -143968,12 +141837,13 @@ 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, @@ -143982,14 +141852,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82000] = 2, - ACTIONS(6108), 5, + [83460] = 2, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6106), 34, + ACTIONS(6276), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144009,6 +141877,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, @@ -144016,21 +141885,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [82044] = 2, - ACTIONS(6378), 4, + sym__whitespace, + [83504] = 2, + ACTIONS(6238), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6376), 35, + ACTIONS(6236), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144050,14 +141919,15 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -144066,14 +141936,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82088] = 2, - ACTIONS(6382), 4, + [83548] = 2, + ACTIONS(6194), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6380), 35, - sym__soft_line_ending, + ACTIONS(6192), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -144094,12 +141963,13 @@ 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, @@ -144108,14 +141978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82132] = 2, - ACTIONS(6296), 5, + [83592] = 2, + ACTIONS(6242), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6294), 34, + ACTIONS(6240), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144135,6 +142003,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, @@ -144142,22 +142011,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [82176] = 2, - ACTIONS(6304), 5, + sym__whitespace, + [83636] = 2, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6302), 34, + ACTIONS(6280), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144177,6 +142045,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, @@ -144184,22 +142053,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [82220] = 2, - ACTIONS(6364), 4, + sym__whitespace, + [83680] = 2, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2395), 35, - sym__line_ending, + ACTIONS(6244), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -144218,6 +142087,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, @@ -144225,7 +142095,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, anon_sym_LBRACK, @@ -144234,13 +142104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82264] = 2, - ACTIONS(6394), 4, + [83724] = 2, + ACTIONS(6096), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6392), 35, + ACTIONS(6094), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144251,6 +142120,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, @@ -144262,12 +142132,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -144276,13 +142146,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82308] = 2, - ACTIONS(6070), 4, + [83768] = 2, + ACTIONS(6064), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 35, + sym__whitespace, + ACTIONS(6062), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144304,27 +142174,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__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, - sym__whitespace, - [82352] = 2, - ACTIONS(6204), 4, + [83812] = 2, + ACTIONS(6100), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6202), 35, + ACTIONS(6098), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144335,6 +142204,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, @@ -144343,7 +142213,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, @@ -144352,6 +142221,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -144360,13 +142230,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82396] = 2, - ACTIONS(6262), 4, + [83856] = 2, + ACTIONS(6104), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6260), 35, + ACTIONS(6102), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144377,6 +142246,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, @@ -144385,7 +142255,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, @@ -144394,6 +142263,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -144402,13 +142272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82440] = 2, - ACTIONS(6438), 4, + [83900] = 2, + ACTIONS(6108), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6436), 35, + ACTIONS(6106), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144418,8 +142287,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, @@ -144436,6 +142305,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -144444,13 +142314,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82484] = 2, - ACTIONS(6108), 4, + [83944] = 2, + ACTIONS(6112), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 35, + ACTIONS(6110), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144461,6 +142330,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, @@ -144472,12 +142342,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -144486,13 +142356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82528] = 2, - ACTIONS(6208), 4, + [83988] = 2, + ACTIONS(6116), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6206), 35, + ACTIONS(6114), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144503,6 +142372,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, @@ -144511,7 +142381,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, @@ -144520,6 +142389,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -144528,13 +142398,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82572] = 2, - ACTIONS(6216), 4, + [84032] = 2, + ACTIONS(6120), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6214), 35, + ACTIONS(6118), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144545,6 +142414,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, @@ -144552,7 +142422,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, @@ -144562,6 +142431,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -144570,13 +142440,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82616] = 2, - ACTIONS(6296), 4, + [84076] = 2, + ACTIONS(6068), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6294), 35, + sym__whitespace, + ACTIONS(6066), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144598,27 +142468,27 @@ 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__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, - sym__whitespace, - [82660] = 2, - ACTIONS(6304), 4, + [84120] = 2, + ACTIONS(6072), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6302), 35, + sym__whitespace, + ACTIONS(6070), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144640,28 +142510,27 @@ 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__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, - sym__whitespace, - [82704] = 2, - ACTIONS(6220), 5, + [84164] = 2, + ACTIONS(6076), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6218), 34, + ACTIONS(6074), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144688,6 +142557,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -144696,14 +142566,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, aux_sym_inline_note_token1, anon_sym_PIPE, - [82748] = 2, - ACTIONS(6232), 4, + [84208] = 2, + ACTIONS(6080), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6230), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6078), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -144729,23 +142599,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_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [82792] = 2, - ACTIONS(6236), 4, + [84252] = 2, + ACTIONS(6124), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6234), 35, - sym__line_ending, + ACTIONS(6122), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -144755,6 +142624,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, @@ -144771,7 +142641,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, anon_sym_LBRACK, @@ -144780,14 +142650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82836] = 2, - ACTIONS(6228), 5, + [84296] = 2, + ACTIONS(6128), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6226), 34, + ACTIONS(6126), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144798,6 +142666,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, @@ -144814,22 +142683,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [82880] = 2, - ACTIONS(6438), 4, + sym__whitespace, + [84340] = 2, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6436), 35, - sym__soft_line_ending, + ACTIONS(6196), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -144851,11 +142720,12 @@ 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, @@ -144864,15 +142734,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [82924] = 2, - ACTIONS(6324), 5, + [84384] = 2, + ACTIONS(6202), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6322), 34, - sym__soft_line_ending, + ACTIONS(6200), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -144898,23 +142766,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, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [82968] = 2, - ACTIONS(6328), 5, + sym__whitespace, + [84428] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6326), 34, - sym__soft_line_ending, + ACTIONS(6204), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -144940,22 +142808,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, - [83012] = 2, - ACTIONS(6340), 5, + sym__whitespace, + [84472] = 2, + ACTIONS(6250), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6338), 34, + ACTIONS(6248), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -144975,6 +142843,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, @@ -144982,22 +142851,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [83056] = 2, - ACTIONS(6352), 4, + sym__whitespace, + [84516] = 2, + ACTIONS(6132), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6350), 35, - sym__line_ending, + ACTIONS(6130), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -145007,6 +142876,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, @@ -145023,7 +142893,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, anon_sym_LBRACK, @@ -145032,15 +142902,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83100] = 2, - ACTIONS(6352), 5, + [84560] = 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6350), 34, - sym__soft_line_ending, + ACTIONS(6208), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -145066,23 +142934,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, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [83144] = 2, - ACTIONS(6368), 5, + sym__whitespace, + [84604] = 2, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6366), 34, - sym__soft_line_ending, + ACTIONS(6212), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -145108,23 +142976,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, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [83188] = 2, - ACTIONS(6232), 5, + sym__whitespace, + [84648] = 2, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6230), 34, - sym__soft_line_ending, + ACTIONS(6272), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -145150,23 +143018,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, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [83232] = 2, - ACTIONS(6292), 5, + sym__whitespace, + [84692] = 2, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6290), 34, - sym__soft_line_ending, + ACTIONS(6216), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -145192,23 +143060,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, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [83276] = 2, - ACTIONS(6312), 5, + sym__whitespace, + [84736] = 2, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6310), 34, - sym__soft_line_ending, + ACTIONS(6220), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -145234,23 +143102,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, anon_sym_DOLLAR_DOLLAR, - aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [83320] = 2, - ACTIONS(6236), 5, + sym__whitespace, + [84780] = 2, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6234), 34, - sym__soft_line_ending, + ACTIONS(6224), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -145276,23 +143144,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, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, - aux_sym_inline_note_token1, anon_sym_PIPE, - [83364] = 2, - ACTIONS(6172), 5, + sym__whitespace, + [84824] = 2, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6170), 34, - sym__soft_line_ending, + ACTIONS(6228), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -145318,22 +143186,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, - [83408] = 2, - ACTIONS(6240), 5, + sym__whitespace, + [84868] = 2, + ACTIONS(6254), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6238), 34, + ACTIONS(6252), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145353,6 +143221,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, @@ -145360,21 +143229,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [83452] = 2, - ACTIONS(6324), 4, + sym__whitespace, + [84912] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6322), 35, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145385,6 +143254,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, @@ -145396,12 +143266,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -145410,14 +143280,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83496] = 2, - ACTIONS(6244), 5, + [84956] = 2, + ACTIONS(6084), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6242), 34, + ACTIONS(6082), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145444,22 +143313,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [83540] = 2, - ACTIONS(6288), 4, + [85000] = 2, + ACTIONS(6108), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6286), 35, - sym__line_ending, + ACTIONS(6106), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -145468,6 +143337,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, @@ -145485,7 +143355,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, anon_sym_LBRACK, @@ -145494,14 +143364,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83584] = 2, - ACTIONS(6266), 5, + [85044] = 2, + ACTIONS(6112), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6264), 34, + ACTIONS(6110), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145511,6 +143379,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, @@ -145528,22 +143397,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [83628] = 2, - ACTIONS(6270), 5, + sym__whitespace, + [85088] = 2, + ACTIONS(6006), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6268), 34, + ACTIONS(6004), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145570,22 +143439,21 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [83672] = 2, - ACTIONS(6274), 5, + [85132] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6272), 34, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145596,6 +143464,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, @@ -145612,21 +143481,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [83716] = 2, - ACTIONS(6328), 4, + sym__whitespace, + [85176] = 2, + ACTIONS(6116), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6326), 35, + ACTIONS(6114), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145636,6 +143505,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, @@ -145648,12 +143518,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -145662,14 +143532,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83760] = 2, - ACTIONS(6278), 5, + [85220] = 2, + ACTIONS(6088), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6276), 34, + ACTIONS(6086), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145696,22 +143565,21 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [83804] = 2, - ACTIONS(6308), 5, + [85264] = 2, + ACTIONS(6120), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6306), 34, + ACTIONS(6118), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145721,6 +143589,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, @@ -145738,21 +143607,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [83848] = 2, - ACTIONS(6340), 4, + sym__whitespace, + [85308] = 2, + ACTIONS(6136), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6338), 35, + ACTIONS(6134), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145763,6 +143632,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, @@ -145774,12 +143644,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -145788,13 +143658,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83892] = 2, - ACTIONS(6282), 4, + [85352] = 2, + ACTIONS(6092), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6280), 35, + sym__whitespace, + ACTIONS(6090), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145814,7 +143684,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, @@ -145822,22 +143691,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [83936] = 2, - ACTIONS(6352), 4, + [85396] = 2, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6350), 35, - sym__soft_line_ending, + ACTIONS(6232), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -145858,12 +143727,13 @@ 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, @@ -145872,13 +143742,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [83980] = 2, - ACTIONS(6128), 4, + [85440] = 2, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 35, + ACTIONS(6276), 36, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -145906,6 +143775,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -145914,14 +143784,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84024] = 2, - ACTIONS(6368), 4, + [85484] = 2, + ACTIONS(6238), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6366), 35, - sym__soft_line_ending, + ACTIONS(6236), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -145942,12 +143811,13 @@ 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, @@ -145956,13 +143826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84068] = 2, - ACTIONS(6204), 4, + [85528] = 2, + ACTIONS(6140), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6202), 35, + ACTIONS(6138), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -145973,6 +143842,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, @@ -145980,7 +143850,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, @@ -145990,6 +143859,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -145998,14 +143868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84112] = 2, - ACTIONS(6402), 4, + [85572] = 2, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6400), 35, - sym__line_ending, + ACTIONS(6256), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146014,6 +143883,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, @@ -146031,7 +143901,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, anon_sym_LBRACK, @@ -146040,14 +143910,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84156] = 2, - ACTIONS(6292), 4, + [85616] = 2, + ACTIONS(6242), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6290), 35, - sym__soft_line_ending, + ACTIONS(6240), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146068,12 +143937,13 @@ 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, @@ -146082,14 +143952,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84200] = 2, - ACTIONS(6312), 4, + [85660] = 2, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6310), 35, - sym__soft_line_ending, + ACTIONS(6280), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146110,12 +143979,13 @@ 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, @@ -146124,13 +143994,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84244] = 2, - ACTIONS(6336), 4, + [85704] = 2, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6334), 35, + ACTIONS(6244), 36, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -146158,6 +144027,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -146166,14 +144036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [84288] = 2, - ACTIONS(3446), 5, + [85748] = 2, + ACTIONS(6096), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(3444), 34, + ACTIONS(6094), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146200,21 +144069,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [84332] = 2, - ACTIONS(6172), 4, + [85792] = 2, + ACTIONS(6242), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6170), 35, + sym__whitespace, + ACTIONS(6240), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146236,28 +144106,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__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, - [84376] = 2, - ACTIONS(6224), 4, + [85836] = 2, + ACTIONS(6104), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6222), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6102), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146283,23 +144153,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, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [84420] = 2, - ACTIONS(6258), 4, + [85880] = 2, + ACTIONS(6108), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6256), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6106), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146325,23 +144195,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, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [84464] = 2, - ACTIONS(6300), 4, + [85924] = 2, + ACTIONS(6112), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6298), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6110), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146367,23 +144237,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, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [84508] = 2, - ACTIONS(6320), 4, + [85968] = 2, + ACTIONS(6116), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6318), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6114), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146409,23 +144279,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, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [84552] = 2, - ACTIONS(6348), 4, + [86012] = 2, + ACTIONS(6120), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6346), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6118), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146451,23 +144321,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, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, + aux_sym_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [84596] = 2, - ACTIONS(6362), 4, + [86056] = 2, + ACTIONS(6124), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6360), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6122), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146493,23 +144363,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_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [84640] = 2, - ACTIONS(6358), 5, + [86100] = 2, + ACTIONS(6128), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6356), 34, + ACTIONS(6126), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146536,22 +144405,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [84684] = 2, - ACTIONS(6386), 5, + [86144] = 2, + ACTIONS(6132), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6384), 34, + ACTIONS(6130), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146578,22 +144447,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [84728] = 2, - ACTIONS(6398), 5, + [86188] = 2, + ACTIONS(6030), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6396), 34, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146620,22 +144489,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [84772] = 2, - ACTIONS(6164), 5, + [86232] = 2, + ACTIONS(6064), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6162), 34, + ACTIONS(6062), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146662,6 +144531,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -146670,14 +144540,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [84816] = 2, - ACTIONS(6168), 5, + [86276] = 2, + ACTIONS(6262), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, + ACTIONS(6260), 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__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_LBRACE, + anon_sym_PIPE, sym__whitespace, - ACTIONS(6166), 34, + [86320] = 2, + ACTIONS(6298), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6296), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146695,6 +144605,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, @@ -146704,22 +144615,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [84860] = 2, - ACTIONS(6250), 5, + sym__whitespace, + [86364] = 2, + ACTIONS(5950), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6248), 34, + ACTIONS(5948), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146746,22 +144657,63 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [84904] = 2, - ACTIONS(6176), 5, + [86408] = 2, + ACTIONS(6124), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_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__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_LBRACE, + anon_sym_PIPE, sym__whitespace, - ACTIONS(6174), 34, + [86452] = 2, + ACTIONS(6266), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6264), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146771,6 +144723,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, @@ -146788,64 +144741,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [84948] = 2, - ACTIONS(6180), 5, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6178), 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_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, - [84992] = 2, - ACTIONS(6184), 5, + [86496] = 2, + ACTIONS(6136), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6182), 34, + ACTIONS(6134), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146872,22 +144783,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [85036] = 2, - ACTIONS(6192), 5, + [86540] = 2, + ACTIONS(6140), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6190), 34, + ACTIONS(6138), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -146914,22 +144825,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [85080] = 2, - ACTIONS(6372), 4, + [86584] = 2, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6370), 35, - sym__line_ending, + ACTIONS(6256), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146948,6 +144859,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, @@ -146955,7 +144867,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, anon_sym_LBRACK, @@ -146964,14 +144876,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85124] = 2, - ACTIONS(6378), 4, + [86628] = 2, + ACTIONS(6262), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6376), 35, - sym__line_ending, + ACTIONS(6260), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -146990,6 +144901,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, @@ -146997,7 +144909,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, anon_sym_LBRACK, @@ -147006,14 +144918,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85168] = 2, - ACTIONS(6382), 4, + [86672] = 2, + ACTIONS(6298), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6380), 35, - sym__line_ending, + ACTIONS(6296), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -147034,12 +144945,13 @@ 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, @@ -147048,13 +144960,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85212] = 2, - ACTIONS(6394), 4, + [86716] = 2, + ACTIONS(6064), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6392), 35, + ACTIONS(6062), 36, sym__line_ending, sym__code_span_start, sym__html_comment, @@ -147082,6 +144993,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -147090,55 +145002,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85256] = 2, - ACTIONS(6070), 4, + [86760] = 2, + ACTIONS(6298), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 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_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, - [85300] = 2, - ACTIONS(6240), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6238), 35, + ACTIONS(6296), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147160,27 +145030,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__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, - [85344] = 2, - ACTIONS(6288), 4, + [86804] = 2, + ACTIONS(6266), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6286), 35, + ACTIONS(6264), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147199,8 +145068,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, @@ -147208,6 +145077,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -147216,14 +145086,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85388] = 2, - ACTIONS(6108), 4, + [86848] = 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 35, - sym__line_ending, + ACTIONS(6268), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -147242,6 +145111,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, @@ -147249,7 +145119,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, anon_sym_LBRACK, @@ -147258,13 +145128,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85432] = 2, - ACTIONS(6244), 4, + [86892] = 2, + ACTIONS(6144), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6242), 35, + sym__whitespace, + ACTIONS(6142), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147286,27 +145156,27 @@ 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__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, - sym__whitespace, - [85476] = 2, - ACTIONS(6266), 4, + [86936] = 2, + ACTIONS(6148), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6264), 35, + sym__whitespace, + ACTIONS(6146), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147328,28 +145198,27 @@ 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__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, - sym__whitespace, - [85520] = 2, - ACTIONS(6196), 5, + [86980] = 2, + ACTIONS(6152), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6194), 34, + ACTIONS(6150), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147376,22 +145245,21 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [85564] = 2, - ACTIONS(6254), 5, + [87024] = 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6252), 34, + ACTIONS(6268), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147401,6 +145269,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, @@ -147418,22 +145287,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [85608] = 2, - ACTIONS(6200), 5, + sym__whitespace, + [87068] = 2, + ACTIONS(6156), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6198), 34, + ACTIONS(6154), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147460,22 +145329,23 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [85652] = 2, - ACTIONS(6296), 4, + [87112] = 2, + ACTIONS(6160), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6294), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6158), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -147501,23 +145371,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_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [85696] = 2, - ACTIONS(6304), 4, + [87156] = 2, + ACTIONS(6144), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6302), 35, - sym__line_ending, + ACTIONS(6142), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -147527,6 +145396,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, @@ -147543,7 +145413,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, anon_sym_LBRACK, @@ -147552,14 +145422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [85740] = 2, - ACTIONS(6220), 4, + [87200] = 2, + ACTIONS(6288), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6218), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6286), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -147585,23 +145455,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_inline_note_token1, anon_sym_PIPE, - sym__whitespace, - [85784] = 2, - ACTIONS(6204), 5, + [87244] = 2, + ACTIONS(6166), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6202), 34, + ACTIONS(6164), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147628,22 +145497,21 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [85828] = 2, - ACTIONS(6262), 5, + [87288] = 2, + ACTIONS(6148), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6260), 34, + ACTIONS(6146), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147654,6 +145522,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, @@ -147670,22 +145539,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [85872] = 2, - ACTIONS(6208), 5, + sym__whitespace, + [87332] = 2, + ACTIONS(6170), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6206), 34, + ACTIONS(6168), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147712,22 +145581,23 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [85916] = 2, - ACTIONS(6228), 4, + [87376] = 2, + ACTIONS(6174), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6226), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6172), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -147753,22 +145623,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, - sym__whitespace, - [85960] = 2, - ACTIONS(6270), 4, + [87420] = 2, + ACTIONS(6152), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6268), 35, + ACTIONS(6150), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147779,6 +145648,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, @@ -147790,12 +145660,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -147804,14 +145674,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86004] = 2, - ACTIONS(6438), 5, + [87464] = 2, + ACTIONS(6058), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6436), 34, + ACTIONS(6056), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147838,64 +145707,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [86048] = 3, - ACTIONS(6472), 1, - sym_block_continuation, - ACTIONS(3165), 5, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3163), 33, - 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_entity_reference, - 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, - [86094] = 2, - ACTIONS(6282), 4, + [87508] = 2, + ACTIONS(6178), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6280), 35, + sym__whitespace, + ACTIONS(6176), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147905,7 +145732,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, @@ -147923,21 +145749,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [86138] = 2, - ACTIONS(6274), 4, + [87552] = 2, + ACTIONS(6068), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6272), 35, + sym__whitespace, + ACTIONS(6066), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147959,27 +145786,27 @@ 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__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, - [86182] = 2, - ACTIONS(6262), 4, + [87596] = 2, + ACTIONS(6072), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6260), 35, + sym__whitespace, + ACTIONS(6070), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -147997,7 +145824,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, @@ -148007,21 +145833,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [86226] = 2, - ACTIONS(6278), 4, + [87640] = 2, + ACTIONS(6076), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6276), 35, + sym__whitespace, + ACTIONS(6074), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148043,27 +145870,27 @@ 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__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, - [86270] = 2, - ACTIONS(6308), 4, + [87684] = 2, + ACTIONS(6080), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6306), 35, + sym__whitespace, + ACTIONS(6078), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148085,27 +145912,27 @@ 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__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, - [86314] = 2, - ACTIONS(6208), 4, + [87728] = 2, + ACTIONS(6182), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6206), 35, + sym__whitespace, + ACTIONS(6180), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148123,7 +145950,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, @@ -148133,21 +145959,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [86358] = 2, - ACTIONS(6358), 4, + [87772] = 2, + ACTIONS(6186), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6356), 35, + sym__whitespace, + ACTIONS(6184), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148169,27 +145996,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__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, - sym__whitespace, - [86402] = 2, - ACTIONS(6316), 4, + [87816] = 2, + ACTIONS(6128), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6314), 35, + ACTIONS(6126), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148217,6 +146043,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -148225,13 +146052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86446] = 2, - ACTIONS(6332), 4, + [87860] = 2, + ACTIONS(6190), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6330), 35, + sym__whitespace, + ACTIONS(6188), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148241,7 +146068,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, @@ -148259,21 +146085,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [86490] = 2, - ACTIONS(6344), 4, + [87904] = 2, + ACTIONS(6194), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6342), 35, + sym__whitespace, + ACTIONS(6192), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148283,7 +146110,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, @@ -148301,21 +146127,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [86534] = 2, - ACTIONS(6390), 4, + [87948] = 2, + ACTIONS(6156), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6388), 35, + ACTIONS(6154), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148325,8 +146151,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, @@ -148343,6 +146169,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -148351,13 +146178,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [86578] = 2, - ACTIONS(6386), 4, + [87992] = 2, + ACTIONS(6198), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6384), 35, + sym__whitespace, + ACTIONS(6196), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148379,27 +146206,27 @@ 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__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, - sym__whitespace, - [86622] = 2, - ACTIONS(6398), 4, + [88036] = 2, + ACTIONS(6202), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6396), 35, + sym__whitespace, + ACTIONS(6200), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148421,28 +146248,27 @@ 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__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, - sym__whitespace, - [86666] = 2, - ACTIONS(6212), 5, + [88080] = 2, + ACTIONS(6206), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6210), 34, + ACTIONS(6204), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148469,21 +146295,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [86710] = 2, - ACTIONS(6188), 4, + [88124] = 2, + ACTIONS(6210), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6186), 35, + sym__whitespace, + ACTIONS(6208), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148493,7 +146320,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, @@ -148511,22 +146337,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [86754] = 2, - ACTIONS(6216), 5, + [88168] = 2, + ACTIONS(6214), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6214), 34, + ACTIONS(6212), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148553,21 +146379,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym_inline_note_token1, anon_sym_PIPE, - [86798] = 2, - ACTIONS(6164), 4, + [88212] = 2, + ACTIONS(6274), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6162), 35, + sym__whitespace, + ACTIONS(6272), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148589,27 +146416,27 @@ 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__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, - sym__whitespace, - [86842] = 2, - ACTIONS(6288), 4, + [88256] = 2, + ACTIONS(6218), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6286), 35, + sym__whitespace, + ACTIONS(6216), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148619,7 +146446,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, @@ -148637,21 +146463,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [86886] = 2, - ACTIONS(6168), 4, + [88300] = 2, + ACTIONS(6222), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6166), 35, + sym__whitespace, + ACTIONS(6220), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148673,27 +146500,27 @@ 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__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, - sym__whitespace, - [86930] = 2, - ACTIONS(6250), 4, + [88344] = 2, + ACTIONS(6226), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6248), 35, + sym__whitespace, + ACTIONS(6224), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148715,28 +146542,27 @@ 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__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, - sym__whitespace, - [86974] = 2, - ACTIONS(6128), 4, + [88388] = 2, + ACTIONS(6068), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 35, - sym__soft_line_ending, + ACTIONS(6066), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -148745,7 +146571,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, @@ -148763,6 +146588,8 @@ 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, @@ -148771,13 +146598,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87018] = 2, - ACTIONS(6176), 4, + [88432] = 2, + ACTIONS(6230), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6174), 35, + sym__whitespace, + ACTIONS(6228), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148799,27 +146626,27 @@ 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__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, - sym__whitespace, - [87062] = 2, - ACTIONS(6180), 4, + [88476] = 2, + ACTIONS(6234), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6178), 35, + sym__whitespace, + ACTIONS(6232), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148841,28 +146668,27 @@ 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__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, - sym__whitespace, - [87106] = 2, - ACTIONS(6402), 4, + [88520] = 2, + ACTIONS(6072), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6400), 35, - sym__soft_line_ending, + ACTIONS(6070), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -148871,7 +146697,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, @@ -148889,6 +146714,8 @@ 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, @@ -148897,14 +146724,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87150] = 2, - ACTIONS(6184), 4, + [88564] = 2, + ACTIONS(6076), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6182), 35, - sym__soft_line_ending, + ACTIONS(6074), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -148925,12 +146751,13 @@ 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, @@ -148939,14 +146766,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87194] = 2, - ACTIONS(6192), 4, + [88608] = 2, + ACTIONS(6080), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6190), 35, - sym__soft_line_ending, + ACTIONS(6078), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -148967,12 +146793,13 @@ 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, @@ -148981,13 +146808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87238] = 2, - ACTIONS(6336), 4, + [88652] = 2, + ACTIONS(6278), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6334), 35, + sym__whitespace, + ACTIONS(6276), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -148997,7 +146824,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, @@ -149015,21 +146841,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [87282] = 2, - ACTIONS(6196), 4, + [88696] = 2, + ACTIONS(6238), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6194), 35, + sym__whitespace, + ACTIONS(6236), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149051,28 +146878,27 @@ 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__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, - sym__whitespace, - [87326] = 2, - ACTIONS(6254), 4, + [88740] = 2, + ACTIONS(6250), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6252), 35, - sym__soft_line_ending, + ACTIONS(6248), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -149093,12 +146919,13 @@ 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, @@ -149107,13 +146934,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87370] = 2, - ACTIONS(6224), 4, + [88784] = 2, + ACTIONS(6242), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6222), 35, + sym__whitespace, + ACTIONS(6240), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149123,7 +146950,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, @@ -149141,21 +146967,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [87414] = 2, - ACTIONS(6258), 4, + [88828] = 2, + ACTIONS(6282), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6256), 35, + sym__whitespace, + ACTIONS(6280), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149165,7 +146992,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, @@ -149183,22 +147009,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [87458] = 2, - ACTIONS(6300), 4, + [88872] = 2, + ACTIONS(6254), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6298), 35, - sym__soft_line_ending, + ACTIONS(6252), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -149207,7 +147033,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, @@ -149225,6 +147050,8 @@ 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, @@ -149233,13 +147060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87502] = 2, - ACTIONS(6320), 4, + [88916] = 2, + ACTIONS(6246), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6318), 35, + sym__whitespace, + ACTIONS(6244), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149249,7 +147076,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, @@ -149267,21 +147093,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [87546] = 2, - ACTIONS(6348), 4, + [88960] = 2, + ACTIONS(6064), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6346), 35, + ACTIONS(6062), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149291,7 +147117,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, @@ -149304,11 +147129,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -149317,13 +147144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87590] = 2, - ACTIONS(6362), 4, + [89004] = 2, + ACTIONS(6160), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6360), 35, + ACTIONS(6158), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149333,8 +147159,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, @@ -149351,6 +147177,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -149359,13 +147186,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87634] = 2, - ACTIONS(6372), 4, + [89048] = 2, + ACTIONS(6132), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6370), 35, + ACTIONS(6130), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149393,6 +147219,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -149401,13 +147228,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87678] = 2, - ACTIONS(6378), 4, + [89092] = 2, + ACTIONS(6288), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6376), 35, + ACTIONS(6286), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149417,8 +147243,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, @@ -149435,6 +147261,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -149443,13 +147270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87722] = 2, - ACTIONS(6382), 4, + [89136] = 2, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6380), 35, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149459,8 +147285,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, @@ -149477,6 +147303,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -149485,13 +147312,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87766] = 2, - ACTIONS(6394), 4, + [89180] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6392), 35, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149519,6 +147345,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -149527,13 +147354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87810] = 2, - ACTIONS(6070), 4, + [89224] = 2, + ACTIONS(6084), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 35, + sym__whitespace, + ACTIONS(6082), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149543,7 +147370,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, @@ -149561,21 +147387,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [87854] = 2, - ACTIONS(6200), 4, + [89268] = 2, + ACTIONS(6068), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6198), 35, + ACTIONS(6066), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149603,6 +147429,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -149611,13 +147438,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87898] = 2, - ACTIONS(6204), 4, + [89312] = 2, + ACTIONS(6072), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6202), 35, + ACTIONS(6070), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149645,6 +147471,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -149653,13 +147480,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [87942] = 2, - ACTIONS(6108), 4, + [89356] = 2, + ACTIONS(6006), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 35, + sym__whitespace, + ACTIONS(6004), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149669,7 +147496,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, @@ -149687,21 +147513,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [87986] = 2, - ACTIONS(6262), 4, + [89400] = 2, + ACTIONS(6076), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6260), 35, + ACTIONS(6074), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149729,6 +147555,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -149737,13 +147564,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88030] = 2, - ACTIONS(6208), 4, + [89444] = 2, + ACTIONS(6080), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6206), 35, + ACTIONS(6078), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149771,6 +147597,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -149779,13 +147606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88074] = 2, - ACTIONS(6296), 4, + [89488] = 2, + ACTIONS(6088), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6294), 35, + sym__whitespace, + ACTIONS(6086), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149795,7 +147622,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, @@ -149813,21 +147639,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [88118] = 2, - ACTIONS(6304), 4, + [89532] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6302), 35, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149837,8 +147663,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, @@ -149855,6 +147681,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -149863,14 +147690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88162] = 2, - ACTIONS(6220), 5, + [89576] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - sym__whitespace, - ACTIONS(6218), 34, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149881,6 +147706,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, @@ -149897,22 +147723,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - [88206] = 2, - ACTIONS(6228), 5, + sym__whitespace, + [89620] = 2, + ACTIONS(6092), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6226), 34, + ACTIONS(6090), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149939,6 +147765,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -149947,13 +147774,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [88250] = 2, - ACTIONS(6438), 4, + [89664] = 2, + ACTIONS(6250), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6436), 35, + sym__whitespace, + ACTIONS(6248), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -149964,7 +147791,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, @@ -149981,22 +147807,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [88294] = 2, - ACTIONS(6232), 5, + [89708] = 2, + ACTIONS(6096), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6230), 34, + ACTIONS(6094), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150023,6 +147849,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -150031,14 +147858,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [88338] = 2, - ACTIONS(6236), 5, + [89752] = 2, + ACTIONS(6100), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, sym__whitespace, - ACTIONS(6234), 34, + ACTIONS(6098), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150065,6 +147891,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -150073,13 +147900,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [88382] = 2, - ACTIONS(6324), 4, + [89796] = 2, + ACTIONS(6254), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6322), 35, + sym__whitespace, + ACTIONS(6252), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150089,7 +147916,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, @@ -150107,21 +147933,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [88426] = 2, - ACTIONS(6328), 4, + [89840] = 2, + ACTIONS(6068), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6326), 35, + ACTIONS(6066), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150149,6 +147975,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -150157,13 +147984,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88470] = 2, - ACTIONS(6340), 4, + [89884] = 2, + ACTIONS(6104), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6338), 35, + sym__whitespace, + ACTIONS(6102), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150173,7 +148000,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, @@ -150191,21 +148017,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [88514] = 2, - ACTIONS(6128), 4, + [89928] = 2, + ACTIONS(6108), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 35, + sym__whitespace, + ACTIONS(6106), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150224,7 +148051,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, @@ -150233,21 +148059,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [88558] = 2, - ACTIONS(6352), 4, + [89972] = 2, + ACTIONS(6112), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6350), 35, + sym__whitespace, + ACTIONS(6110), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150257,7 +148084,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, @@ -150275,21 +148101,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [88602] = 2, - ACTIONS(6368), 4, + [90016] = 2, + ACTIONS(6116), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6366), 35, + sym__whitespace, + ACTIONS(6114), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150299,7 +148126,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, @@ -150317,21 +148143,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [88646] = 2, - ACTIONS(6282), 4, + [90060] = 2, + ACTIONS(6120), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6280), 35, + sym__whitespace, + ACTIONS(6118), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150354,26 +148181,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__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, - [88690] = 2, - ACTIONS(6292), 4, + [90104] = 2, + ACTIONS(6124), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6290), 35, + sym__whitespace, + ACTIONS(6122), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150383,7 +148210,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, @@ -150401,21 +148227,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [88734] = 2, - ACTIONS(6312), 4, + [90148] = 2, + ACTIONS(6128), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6310), 35, + sym__whitespace, + ACTIONS(6126), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150425,7 +148252,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, @@ -150443,63 +148269,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [88778] = 2, - ACTIONS(6368), 4, + [90192] = 2, + ACTIONS(6132), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6366), 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_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, - [88822] = 2, - ACTIONS(6172), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6170), 35, + ACTIONS(6130), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150509,7 +148294,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, @@ -150527,21 +148311,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [88866] = 2, - ACTIONS(6240), 4, + [90236] = 2, + ACTIONS(6030), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6238), 35, + sym__whitespace, + ACTIONS(6028), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150551,7 +148336,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, @@ -150569,21 +148353,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [88910] = 2, - ACTIONS(3446), 4, + [90280] = 2, + ACTIONS(6084), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3444), 35, + ACTIONS(6082), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150601,16 +148385,17 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -150619,13 +148404,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88954] = 2, - ACTIONS(6244), 4, + [90324] = 2, + ACTIONS(6058), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6242), 35, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150635,8 +148419,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, @@ -150653,6 +148437,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -150661,13 +148446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [88998] = 2, - ACTIONS(6266), 4, + [90368] = 2, + ACTIONS(5950), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6264), 35, + sym__whitespace, + ACTIONS(5948), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150677,7 +148462,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, @@ -150695,21 +148479,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [89042] = 2, - ACTIONS(6270), 4, + [90412] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6268), 35, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150719,8 +148503,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, @@ -150737,6 +148521,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -150745,13 +148530,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89086] = 2, - ACTIONS(6274), 4, + [90456] = 2, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6272), 35, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150761,7 +148545,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, @@ -150774,11 +148557,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -150787,13 +148572,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89130] = 2, - ACTIONS(6316), 4, + [90500] = 2, + ACTIONS(6136), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6314), 35, + sym__whitespace, + ACTIONS(6134), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150813,7 +148598,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, @@ -150821,21 +148605,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [89174] = 2, - ACTIONS(6278), 4, + [90544] = 2, + ACTIONS(6140), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6276), 35, + sym__whitespace, + ACTIONS(6138), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150845,7 +148630,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, @@ -150863,21 +148647,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [89218] = 2, - ACTIONS(6308), 4, + [90588] = 2, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6306), 35, + ACTIONS(6180), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150887,8 +148671,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, @@ -150905,6 +148689,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -150913,13 +148698,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89262] = 2, - ACTIONS(6332), 4, + [90632] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6330), 35, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150930,6 +148714,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, @@ -150939,7 +148724,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, @@ -150947,6 +148731,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -150955,13 +148740,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89306] = 2, - ACTIONS(6358), 4, + [90676] = 2, + ACTIONS(6088), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6356), 35, + ACTIONS(6086), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -150971,7 +148755,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, @@ -150984,11 +148767,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -150997,13 +148782,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89350] = 2, - ACTIONS(6386), 4, + [90720] = 2, + ACTIONS(6072), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6384), 35, + ACTIONS(6070), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151031,6 +148815,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -151039,13 +148824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89394] = 2, - ACTIONS(6398), 4, + [90764] = 2, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6396), 35, + ACTIONS(6188), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151055,8 +148839,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, @@ -151073,6 +148857,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -151081,13 +148866,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89438] = 2, - ACTIONS(6164), 4, + [90808] = 2, + ACTIONS(6298), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6162), 35, + ACTIONS(6296), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151115,6 +148899,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -151123,13 +148908,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89482] = 2, - ACTIONS(6168), 4, + [90852] = 2, + ACTIONS(6092), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6166), 35, + ACTIONS(6090), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151139,7 +148923,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, @@ -151152,11 +148935,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -151165,13 +148950,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89526] = 2, - ACTIONS(6250), 4, + [90896] = 2, + ACTIONS(6194), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6248), 35, + ACTIONS(6192), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151181,8 +148965,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, @@ -151199,6 +148983,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -151207,13 +148992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89570] = 2, - ACTIONS(6176), 4, + [90940] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6174), 35, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151241,6 +149025,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -151249,13 +149034,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89614] = 2, - ACTIONS(6180), 4, + [90984] = 2, + ACTIONS(6096), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6178), 35, + ACTIONS(6094), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151265,7 +149049,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, @@ -151278,11 +149061,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -151291,13 +149076,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89658] = 2, - ACTIONS(6184), 4, + [91028] = 2, + ACTIONS(6100), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6182), 35, + ACTIONS(6098), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151307,7 +149091,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, @@ -151320,11 +149103,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -151333,13 +149118,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89702] = 2, - ACTIONS(6192), 4, + [91072] = 2, + ACTIONS(6104), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6190), 35, + ACTIONS(6102), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151349,7 +149133,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, @@ -151362,11 +149145,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -151375,14 +149160,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89746] = 2, - ACTIONS(6196), 4, + [91116] = 2, + ACTIONS(6266), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6194), 35, - sym__soft_line_ending, + ACTIONS(6264), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -151391,7 +149175,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, @@ -151409,6 +149192,8 @@ 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, @@ -151417,14 +149202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89790] = 2, - ACTIONS(6254), 4, + [91160] = 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6252), 35, - sym__soft_line_ending, + ACTIONS(6268), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -151433,7 +149217,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, @@ -151451,6 +149234,8 @@ 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, @@ -151459,13 +149244,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89834] = 2, - ACTIONS(6200), 4, + [91204] = 2, + ACTIONS(6108), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6198), 35, + ACTIONS(6106), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151475,7 +149259,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, @@ -151488,11 +149271,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -151501,13 +149286,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [89878] = 2, - ACTIONS(6204), 4, + [91248] = 2, + ACTIONS(6144), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6202), 35, + sym__whitespace, + ACTIONS(6142), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151517,7 +149302,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, @@ -151535,21 +149319,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [89922] = 2, - ACTIONS(6262), 4, + [91292] = 2, + ACTIONS(6148), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6260), 35, + sym__whitespace, + ACTIONS(6146), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151559,7 +149344,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, @@ -151577,21 +149361,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [89966] = 2, - ACTIONS(6208), 4, + [91336] = 2, + ACTIONS(6152), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6206), 35, + sym__whitespace, + ACTIONS(6150), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151601,7 +149386,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, @@ -151619,21 +149403,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [90010] = 2, - ACTIONS(6344), 4, + [91380] = 2, + ACTIONS(6112), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6342), 35, + ACTIONS(6110), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151653,14 +149437,15 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -151669,13 +149454,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90054] = 2, - ACTIONS(6282), 4, + [91424] = 2, + ACTIONS(6156), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6280), 35, + sym__whitespace, + ACTIONS(6154), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151686,7 +149471,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, @@ -151703,22 +149487,23 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [90098] = 2, - ACTIONS(3446), 4, + [91468] = 2, + ACTIONS(6160), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3444), 35, - sym__line_ending, + sym__whitespace, + ACTIONS(6158), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -151744,22 +149529,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, - [90142] = 2, - ACTIONS(6390), 4, + [91512] = 2, + ACTIONS(6116), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6388), 35, + ACTIONS(6114), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151779,14 +149563,15 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -151795,13 +149580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90186] = 2, - ACTIONS(6316), 4, + [91556] = 2, + ACTIONS(6288), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6314), 35, + sym__whitespace, + ACTIONS(6286), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151824,26 +149609,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__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, - [90230] = 2, - ACTIONS(6332), 4, + [91600] = 2, + ACTIONS(6166), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6330), 35, + sym__whitespace, + ACTIONS(6164), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151866,26 +149651,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__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, - [90274] = 2, - ACTIONS(6344), 4, + [91644] = 2, + ACTIONS(6120), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6342), 35, + ACTIONS(6118), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151907,12 +149691,13 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -151921,13 +149706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90318] = 2, - ACTIONS(6316), 4, + [91688] = 2, + ACTIONS(6170), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6314), 35, + sym__whitespace, + ACTIONS(6168), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151938,7 +149723,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, @@ -151955,21 +149739,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [90362] = 2, - ACTIONS(6332), 4, + [91732] = 2, + ACTIONS(6174), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6330), 35, + sym__whitespace, + ACTIONS(6172), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -151980,7 +149765,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, @@ -151997,21 +149781,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [90406] = 2, - ACTIONS(6344), 4, + [91776] = 2, + ACTIONS(6124), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6342), 35, + ACTIONS(6122), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152022,7 +149806,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, @@ -152034,11 +149817,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -152047,13 +149832,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90450] = 2, - ACTIONS(6390), 4, + [91820] = 2, + ACTIONS(6058), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6388), 35, + sym__whitespace, + ACTIONS(6056), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152064,7 +149849,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, @@ -152081,21 +149865,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [90494] = 2, - ACTIONS(6390), 4, + [91864] = 2, + ACTIONS(6128), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6388), 35, + ACTIONS(6126), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152117,12 +149901,13 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -152131,13 +149916,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90538] = 2, - ACTIONS(6168), 4, + [91908] = 2, + ACTIONS(6178), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6166), 35, + sym__whitespace, + ACTIONS(6176), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152155,7 +149940,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, @@ -152165,21 +149949,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [90582] = 2, - ACTIONS(6212), 4, + [91952] = 2, + ACTIONS(6182), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6210), 35, + sym__whitespace, + ACTIONS(6180), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152189,7 +149974,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, @@ -152207,21 +149991,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [90626] = 2, - ACTIONS(6188), 4, + [91996] = 2, + ACTIONS(6186), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6186), 35, + sym__whitespace, + ACTIONS(6184), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152232,7 +150017,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, @@ -152249,21 +150033,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [90670] = 2, - ACTIONS(6216), 4, + [92040] = 2, + ACTIONS(6132), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6214), 35, + ACTIONS(6130), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152273,7 +150057,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, @@ -152286,11 +150069,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -152299,13 +150084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90714] = 2, - ACTIONS(6282), 4, + [92084] = 2, + ACTIONS(6190), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6280), 35, + sym__whitespace, + ACTIONS(6188), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152324,7 +150109,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, @@ -152333,21 +150117,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [90758] = 2, - ACTIONS(6288), 4, + [92128] = 2, + ACTIONS(6194), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6286), 35, + sym__whitespace, + ACTIONS(6192), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152358,7 +150143,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, @@ -152375,21 +150159,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [90802] = 2, - ACTIONS(6212), 4, + [92172] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6210), 35, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152417,6 +150201,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -152425,13 +150210,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90846] = 2, - ACTIONS(6188), 4, + [92216] = 2, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6186), 35, + ACTIONS(6196), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152442,6 +150226,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, @@ -152454,11 +150239,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -152467,13 +150252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90890] = 2, - ACTIONS(6128), 4, + [92260] = 2, + ACTIONS(6202), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 35, + ACTIONS(6200), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152501,6 +150285,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -152509,13 +150294,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90934] = 2, - ACTIONS(6212), 4, + [92304] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6210), 35, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152534,15 +150318,16 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -152551,13 +150336,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [90978] = 2, - ACTIONS(6216), 4, + [92348] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6214), 35, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152568,6 +150352,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, @@ -152579,12 +150364,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -152593,13 +150378,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91022] = 2, - ACTIONS(6402), 4, + [92392] = 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6400), 35, + ACTIONS(6208), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152627,6 +150411,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -152635,13 +150420,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91066] = 2, - ACTIONS(6188), 4, + [92436] = 2, + ACTIONS(6136), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6186), 35, + ACTIONS(6134), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152661,14 +150445,15 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -152677,13 +150462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91110] = 2, - ACTIONS(6288), 4, + [92480] = 2, + ACTIONS(6140), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6286), 35, + ACTIONS(6138), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152705,12 +150489,13 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -152719,13 +150504,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91154] = 2, - ACTIONS(6336), 4, + [92524] = 2, + ACTIONS(6258), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6334), 35, + sym__whitespace, + ACTIONS(6256), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152736,7 +150521,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, @@ -152753,21 +150537,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [91198] = 2, - ACTIONS(6402), 4, + [92568] = 2, + ACTIONS(6262), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6400), 35, + sym__whitespace, + ACTIONS(6260), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152786,7 +150571,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, @@ -152795,21 +150579,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [91242] = 2, - ACTIONS(6216), 4, + [92612] = 2, + ACTIONS(6298), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6214), 35, + ACTIONS(6296), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152828,15 +150612,16 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -152845,13 +150630,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91286] = 2, - ACTIONS(6224), 4, + [92656] = 2, + ACTIONS(6266), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6222), 35, + sym__whitespace, + ACTIONS(6264), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152862,7 +150647,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, @@ -152879,21 +150663,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [91330] = 2, - ACTIONS(6258), 4, + [92700] = 2, + ACTIONS(6270), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6256), 35, + sym__whitespace, + ACTIONS(6268), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152904,7 +150689,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, @@ -152921,21 +150705,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [91374] = 2, - ACTIONS(6300), 4, + [92744] = 2, + ACTIONS(6144), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6298), 35, + ACTIONS(6142), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152946,7 +150730,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, @@ -152958,11 +150741,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -152971,13 +150756,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91418] = 2, - ACTIONS(6320), 4, + [92788] = 2, + ACTIONS(6148), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6318), 35, + ACTIONS(6146), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -152988,7 +150772,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, @@ -153000,11 +150783,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -153013,13 +150798,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91462] = 2, - ACTIONS(6348), 4, + [92832] = 2, + ACTIONS(6152), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6346), 35, + ACTIONS(6150), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153030,7 +150814,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, @@ -153042,11 +150825,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -153055,13 +150840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91506] = 2, - ACTIONS(6362), 4, + [92876] = 2, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6360), 35, + ACTIONS(6212), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153089,6 +150873,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -153097,13 +150882,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91550] = 2, - ACTIONS(6372), 4, + [92920] = 2, + ACTIONS(6156), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6370), 35, + ACTIONS(6154), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153114,7 +150898,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, @@ -153126,11 +150909,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -153139,13 +150924,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91594] = 2, - ACTIONS(6378), 4, + [92964] = 2, + ACTIONS(6160), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6376), 35, + ACTIONS(6158), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153156,7 +150940,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, @@ -153168,11 +150951,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -153181,13 +150966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91638] = 2, - ACTIONS(6382), 4, + [93008] = 2, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6380), 35, + ACTIONS(6272), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153215,6 +150999,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -153223,13 +151008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91682] = 2, - ACTIONS(6394), 4, + [93052] = 2, + ACTIONS(6288), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6392), 35, + ACTIONS(6286), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153240,7 +151024,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, @@ -153252,11 +151035,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -153265,13 +151050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91726] = 2, - ACTIONS(6070), 4, + [93096] = 2, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 35, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153282,7 +151066,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, @@ -153294,11 +151077,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -153307,13 +151092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91770] = 2, - ACTIONS(6128), 4, + [93140] = 2, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 35, + ACTIONS(6216), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153324,6 +151108,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, @@ -153336,11 +151121,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -153349,13 +151134,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91814] = 2, - ACTIONS(6108), 4, + [93184] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 35, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153366,7 +151150,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, @@ -153378,11 +151161,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -153391,13 +151176,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [91858] = 2, - ACTIONS(6288), 4, + [93228] = 2, + ACTIONS(6198), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6286), 35, + sym__whitespace, + ACTIONS(6196), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153417,7 +151202,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, @@ -153425,21 +151209,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [91902] = 2, - ACTIONS(6402), 4, + [93272] = 2, + ACTIONS(6202), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6400), 35, + sym__whitespace, + ACTIONS(6200), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153462,26 +151247,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__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, - [91946] = 2, - ACTIONS(6296), 4, + [93316] = 2, + ACTIONS(6206), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6294), 35, + sym__whitespace, + ACTIONS(6204), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153492,7 +151277,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, @@ -153509,21 +151293,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [91990] = 2, - ACTIONS(6304), 4, + [93360] = 2, + ACTIONS(6210), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6302), 35, + sym__whitespace, + ACTIONS(6208), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153534,7 +151319,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, @@ -153551,21 +151335,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [92034] = 2, - ACTIONS(6220), 4, + [93404] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6218), 35, + ACTIONS(6172), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153575,7 +151359,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, @@ -153588,11 +151371,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -153601,13 +151386,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92078] = 2, - ACTIONS(6228), 4, + [93448] = 2, + ACTIONS(6214), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6226), 35, + sym__whitespace, + ACTIONS(6212), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153617,7 +151402,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, @@ -153635,21 +151419,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [92122] = 2, - ACTIONS(6438), 4, + [93492] = 2, + ACTIONS(6274), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6436), 35, + sym__whitespace, + ACTIONS(6272), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153667,7 +151452,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, @@ -153677,21 +151461,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [92166] = 2, - ACTIONS(6232), 4, + [93536] = 2, + ACTIONS(6218), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6230), 35, + sym__whitespace, + ACTIONS(6216), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153701,7 +151486,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, @@ -153719,21 +151503,64 @@ static const uint16_t ts_small_parse_table[] = { 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, + [93580] = 2, + ACTIONS(6222), 4, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, sym__whitespace, - [92210] = 2, - ACTIONS(6236), 4, + ACTIONS(6220), 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, + [93624] = 2, + ACTIONS(6226), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6234), 35, + sym__whitespace, + ACTIONS(6224), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153743,7 +151570,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, @@ -153761,21 +151587,63 @@ static const uint16_t ts_small_parse_table[] = { 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, + [93668] = 2, + ACTIONS(6230), 4, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, sym__whitespace, - [92254] = 2, - ACTIONS(6324), 4, + ACTIONS(6228), 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, + [93712] = 2, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6322), 35, + ACTIONS(6220), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153803,6 +151671,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -153811,13 +151680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92298] = 2, - ACTIONS(6328), 4, + [93756] = 2, + ACTIONS(6058), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6326), 35, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153828,7 +151696,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, @@ -153840,11 +151707,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -153853,13 +151722,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92342] = 2, - ACTIONS(6340), 4, + [93800] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6338), 35, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153870,7 +151738,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, @@ -153882,11 +151749,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -153895,13 +151764,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92386] = 2, - ACTIONS(6250), 4, + [93844] = 2, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6248), 35, + ACTIONS(6180), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153919,16 +151787,17 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -153937,13 +151806,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92430] = 2, - ACTIONS(6352), 4, + [93888] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6350), 35, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -153954,7 +151822,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, @@ -153966,11 +151833,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -153979,13 +151848,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92474] = 2, - ACTIONS(6368), 4, + [93932] = 2, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6366), 35, + ACTIONS(6224), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154013,6 +151881,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -154021,13 +151890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92518] = 2, - ACTIONS(6336), 4, + [93976] = 2, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6334), 35, + ACTIONS(6188), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154046,15 +151914,16 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154063,13 +151932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92562] = 2, - ACTIONS(6292), 4, + [94020] = 2, + ACTIONS(6194), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6290), 35, + ACTIONS(6192), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154080,7 +151948,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, @@ -154092,11 +151959,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154105,13 +151974,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92606] = 2, - ACTIONS(6312), 4, + [94064] = 2, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6310), 35, + ACTIONS(6228), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154139,6 +152007,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -154147,13 +152016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92650] = 2, - ACTIONS(6336), 4, + [94108] = 2, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6334), 35, + ACTIONS(6196), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154175,12 +152043,13 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154189,13 +152058,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92694] = 2, - ACTIONS(6172), 4, + [94152] = 2, + ACTIONS(6202), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6170), 35, + ACTIONS(6200), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154206,7 +152074,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, @@ -154218,11 +152085,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154231,14 +152100,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92738] = 2, - ACTIONS(6240), 4, + [94196] = 2, + ACTIONS(6284), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6238), 35, - sym__soft_line_ending, + ACTIONS(2324), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -154248,7 +152116,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, @@ -154265,6 +152132,8 @@ 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, @@ -154273,13 +152142,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92782] = 2, - ACTIONS(6128), 4, + [94240] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 35, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154299,14 +152167,15 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154315,13 +152184,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92826] = 2, - ACTIONS(6244), 4, + [94284] = 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6242), 35, + ACTIONS(6208), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154332,7 +152200,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, @@ -154344,11 +152211,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154357,13 +152226,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92870] = 2, - ACTIONS(6266), 4, + [94328] = 2, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6264), 35, + ACTIONS(6212), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154374,7 +152242,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, @@ -154386,11 +152253,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154399,13 +152268,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92914] = 2, - ACTIONS(6270), 4, + [94372] = 2, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6268), 35, + ACTIONS(6272), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154416,7 +152284,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, @@ -154428,11 +152295,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154441,13 +152310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [92958] = 2, - ACTIONS(6274), 4, + [94416] = 2, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6272), 35, + ACTIONS(6216), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154458,7 +152326,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, @@ -154470,11 +152337,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154483,13 +152352,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93002] = 2, - ACTIONS(6176), 4, + [94460] = 2, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6174), 35, + ACTIONS(6220), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154507,16 +152375,17 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154525,13 +152394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93046] = 2, - ACTIONS(6278), 4, + [94504] = 2, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6276), 35, + ACTIONS(6224), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154542,7 +152410,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, @@ -154554,11 +152421,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154567,13 +152436,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93090] = 2, - ACTIONS(6308), 4, + [94548] = 2, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6306), 35, + ACTIONS(6228), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154584,7 +152452,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, @@ -154596,11 +152463,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154609,13 +152478,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93134] = 2, - ACTIONS(6224), 4, + [94592] = 2, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6222), 35, + ACTIONS(6232), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154637,12 +152505,13 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154651,13 +152520,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93178] = 2, - ACTIONS(6358), 4, + [94636] = 2, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6356), 35, + ACTIONS(6276), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154668,7 +152536,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, @@ -154680,11 +152547,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154693,13 +152562,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93222] = 2, - ACTIONS(6386), 4, + [94680] = 2, + ACTIONS(6238), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6384), 35, + ACTIONS(6236), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154710,7 +152578,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, @@ -154722,11 +152589,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154735,13 +152604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93266] = 2, - ACTIONS(6398), 4, + [94724] = 2, + ACTIONS(6242), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6396), 35, + ACTIONS(6240), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154752,7 +152620,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, @@ -154764,11 +152631,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154777,13 +152646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93310] = 2, - ACTIONS(6164), 4, + [94768] = 2, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6162), 35, + ACTIONS(6280), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154794,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, @@ -154806,11 +152673,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154819,13 +152688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93354] = 2, - ACTIONS(6168), 4, + [94812] = 2, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6166), 35, + ACTIONS(6244), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154836,7 +152704,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, @@ -154848,11 +152715,13 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154861,13 +152730,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93398] = 2, - ACTIONS(6250), 4, + [94856] = 2, + ACTIONS(6064), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6248), 35, + ACTIONS(6062), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154878,7 +152746,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, @@ -154891,10 +152758,12 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -154903,13 +152772,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93442] = 2, - ACTIONS(6176), 4, + [94900] = 2, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6174), 35, + ACTIONS(6232), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154937,6 +152805,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -154945,13 +152814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93486] = 2, - ACTIONS(6180), 4, + [94944] = 2, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6178), 35, + ACTIONS(6276), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -154979,6 +152847,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -154987,13 +152856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93530] = 2, - ACTIONS(6184), 4, + [94988] = 2, + ACTIONS(6238), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6182), 35, + ACTIONS(6236), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155021,6 +152889,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -155029,13 +152898,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93574] = 2, - ACTIONS(6192), 4, + [95032] = 2, + ACTIONS(6242), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6190), 35, + ACTIONS(6240), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155063,6 +152931,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -155071,13 +152940,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93618] = 2, - ACTIONS(6196), 4, + [95076] = 2, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6194), 35, + ACTIONS(6280), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155105,6 +152973,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -155113,13 +152982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93662] = 2, - ACTIONS(6254), 4, + [95120] = 2, + ACTIONS(6068), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6252), 35, + ACTIONS(6066), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155130,7 +152998,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, @@ -155143,10 +153010,12 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -155155,13 +153024,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93706] = 2, - ACTIONS(6200), 4, + [95164] = 2, + ACTIONS(6072), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6198), 35, + ACTIONS(6070), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155172,7 +153040,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, @@ -155185,10 +153052,12 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -155197,13 +153066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93750] = 2, - ACTIONS(6204), 4, + [95208] = 2, + ACTIONS(6076), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6202), 35, + ACTIONS(6074), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155214,7 +153082,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, @@ -155227,10 +153094,12 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -155239,13 +153108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93794] = 2, - ACTIONS(6262), 4, + [95252] = 2, + ACTIONS(6080), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6260), 35, + ACTIONS(6078), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155256,7 +153124,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, @@ -155269,10 +153136,12 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -155281,13 +153150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93838] = 2, - ACTIONS(6208), 4, + [95296] = 2, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6206), 35, + ACTIONS(6244), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155315,6 +153183,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -155323,14 +153192,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93882] = 2, - ACTIONS(6282), 4, + [95340] = 2, + ACTIONS(6084), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6280), 35, - sym__soft_line_ending, + ACTIONS(6082), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -155347,7 +153215,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, @@ -155357,6 +153224,8 @@ 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, @@ -155365,13 +153234,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93926] = 2, - ACTIONS(6258), 4, + [95384] = 2, + ACTIONS(6064), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6256), 35, + ACTIONS(6062), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155389,16 +153257,17 @@ 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, @@ -155407,13 +153276,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [93970] = 2, - ACTIONS(6300), 4, + [95428] = 2, + ACTIONS(6250), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6298), 35, + ACTIONS(6248), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155435,12 +153303,13 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -155449,13 +153318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94014] = 2, - ACTIONS(6320), 4, + [95472] = 2, + ACTIONS(6076), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6318), 35, + ACTIONS(6074), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155465,6 +153333,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, @@ -155478,11 +153347,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -155491,13 +153360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94058] = 2, - ACTIONS(6348), 4, + [95516] = 2, + ACTIONS(6254), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6346), 35, + ACTIONS(6252), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155519,12 +153387,13 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -155533,13 +153402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94102] = 2, - ACTIONS(6316), 4, + [95560] = 2, + ACTIONS(6080), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6314), 35, + ACTIONS(6078), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155549,6 +153417,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, @@ -155557,7 +153426,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, @@ -155567,6 +153435,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -155575,13 +153444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94146] = 2, - ACTIONS(6332), 4, + [95604] = 2, + ACTIONS(6084), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6330), 35, + ACTIONS(6082), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155599,16 +153467,17 @@ 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, @@ -155617,13 +153486,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94190] = 2, - ACTIONS(6344), 4, + [95648] = 2, + ACTIONS(6136), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6342), 35, + ACTIONS(6134), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155633,6 +153501,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, @@ -155641,7 +153510,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, @@ -155651,6 +153519,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -155659,13 +153528,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94234] = 2, - ACTIONS(6390), 4, + [95692] = 2, + ACTIONS(6140), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6388), 35, + ACTIONS(6138), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155675,6 +153543,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, @@ -155683,7 +153552,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, @@ -155693,6 +153561,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -155701,13 +153570,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94278] = 2, - ACTIONS(6362), 4, + [95736] = 2, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6360), 35, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155735,6 +153603,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -155743,13 +153612,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94322] = 2, - ACTIONS(6372), 4, + [95780] = 2, + ACTIONS(6258), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6370), 35, + sym__whitespace, + ACTIONS(6256), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155772,11 +153641,53 @@ 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__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, + [95824] = 2, + ACTIONS(6068), 3, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + ACTIONS(6066), 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, @@ -155785,13 +153696,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94366] = 2, - ACTIONS(6212), 4, + [95868] = 2, + ACTIONS(6088), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6210), 35, + ACTIONS(6086), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155802,7 +153712,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, @@ -155815,10 +153724,12 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -155827,13 +153738,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94410] = 2, - ACTIONS(6188), 4, + [95912] = 2, + ACTIONS(6072), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6186), 35, + ACTIONS(6070), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155861,6 +153771,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -155869,13 +153780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94454] = 2, - ACTIONS(6216), 4, + [95956] = 2, + ACTIONS(6076), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6214), 35, + ACTIONS(6074), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155886,7 +153796,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, @@ -155894,6 +153803,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, @@ -155903,6 +153813,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -155911,13 +153822,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94498] = 2, - ACTIONS(6378), 4, + [96000] = 2, + ACTIONS(6092), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6376), 35, + ACTIONS(6090), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155945,6 +153855,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -155953,13 +153864,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94542] = 2, - ACTIONS(6288), 4, + [96044] = 2, + ACTIONS(6080), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6286), 35, + ACTIONS(6078), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -155987,6 +153897,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -155995,13 +153906,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94586] = 2, - ACTIONS(6382), 4, + [96088] = 2, + ACTIONS(6262), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6380), 35, + sym__whitespace, + ACTIONS(6260), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156024,26 +153935,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__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, - [94630] = 2, - ACTIONS(6394), 4, + [96132] = 2, + ACTIONS(6096), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6392), 35, + ACTIONS(6094), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156071,6 +153981,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -156079,13 +153990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94674] = 2, - ACTIONS(6128), 4, + [96176] = 2, + ACTIONS(6100), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 35, + ACTIONS(6098), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156103,16 +154013,17 @@ 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, @@ -156121,13 +154032,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94718] = 2, - ACTIONS(6070), 4, + [96220] = 2, + ACTIONS(6104), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 35, + ACTIONS(6102), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156155,6 +154065,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -156163,13 +154074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94762] = 2, - ACTIONS(6180), 4, + [96264] = 2, + ACTIONS(6108), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6178), 35, + ACTIONS(6106), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156187,16 +154097,17 @@ 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, @@ -156205,13 +154116,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94806] = 2, - ACTIONS(6402), 4, + [96308] = 2, + ACTIONS(6112), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6400), 35, + ACTIONS(6110), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156229,16 +154139,17 @@ 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, @@ -156247,13 +154158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94850] = 2, - ACTIONS(6402), 4, + [96352] = 2, + ACTIONS(6116), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6400), 35, + ACTIONS(6114), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156273,14 +154183,15 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -156289,13 +154200,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94894] = 2, - ACTIONS(6108), 4, + [96396] = 2, + ACTIONS(6120), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 35, + ACTIONS(6118), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156323,6 +154233,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -156331,13 +154242,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94938] = 2, - ACTIONS(6336), 4, + [96440] = 2, + ACTIONS(6124), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6334), 35, + ACTIONS(6122), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156355,16 +154265,17 @@ 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, @@ -156373,13 +154284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [94982] = 2, - ACTIONS(6224), 4, + [96484] = 2, + ACTIONS(6128), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6222), 35, + ACTIONS(6126), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156398,15 +154308,16 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -156415,14 +154326,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95026] = 2, - ACTIONS(6258), 4, + [96528] = 2, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6256), 35, - sym__soft_line_ending, + ACTIONS(6004), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156440,7 +154350,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, @@ -156449,6 +154358,8 @@ 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, @@ -156457,13 +154368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95070] = 2, - ACTIONS(6224), 4, + [96572] = 2, + ACTIONS(6132), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6222), 35, + ACTIONS(6130), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156481,16 +154391,17 @@ 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, @@ -156499,13 +154410,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95114] = 2, - ACTIONS(6258), 4, + [96616] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6256), 35, + ACTIONS(6028), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156523,16 +154433,17 @@ 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, @@ -156541,13 +154452,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95158] = 2, - ACTIONS(6300), 4, + [96660] = 2, + ACTIONS(6298), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6298), 35, + ACTIONS(6296), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156558,6 +154468,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, @@ -156565,7 +154476,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, @@ -156575,6 +154485,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -156583,13 +154494,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95202] = 2, - ACTIONS(6320), 4, + [96704] = 2, + ACTIONS(6250), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6318), 35, + ACTIONS(6248), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156600,6 +154510,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, @@ -156607,7 +154518,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, @@ -156617,6 +154527,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -156625,13 +154536,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95246] = 2, - ACTIONS(6348), 4, + [96748] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6346), 35, + ACTIONS(5948), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156649,16 +154559,17 @@ 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, @@ -156667,14 +154578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95290] = 2, - ACTIONS(6362), 4, + [96792] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6360), 35, - sym__soft_line_ending, + ACTIONS(5948), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156691,7 +154601,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, @@ -156701,6 +154610,8 @@ 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, @@ -156709,13 +154620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95334] = 2, - ACTIONS(6372), 4, + [96836] = 2, + ACTIONS(6254), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6370), 35, + ACTIONS(6252), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156726,6 +154636,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, @@ -156733,7 +154644,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, @@ -156743,6 +154653,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -156751,13 +154662,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95378] = 2, - ACTIONS(6378), 4, + [96880] = 2, + ACTIONS(6136), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6376), 35, + ACTIONS(6134), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156775,16 +154685,17 @@ 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, @@ -156793,13 +154704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95422] = 2, - ACTIONS(6382), 4, + [96924] = 2, + ACTIONS(6140), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6380), 35, + ACTIONS(6138), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156817,16 +154727,17 @@ 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, @@ -156835,13 +154746,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95466] = 2, - ACTIONS(6394), 4, + [96968] = 2, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6392), 35, + ACTIONS(6256), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156859,16 +154769,17 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -156877,13 +154788,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95510] = 2, - ACTIONS(6070), 4, + [97012] = 2, + ACTIONS(6262), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 35, + ACTIONS(6260), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156901,16 +154811,17 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -156919,13 +154830,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95554] = 2, - ACTIONS(6296), 4, + [97056] = 2, + ACTIONS(6298), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6294), 35, + ACTIONS(6296), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -156948,11 +154858,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -156961,14 +154872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95598] = 2, - ACTIONS(6304), 4, + [97100] = 2, + ACTIONS(6120), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6302), 35, - sym__soft_line_ending, + ACTIONS(6118), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -156990,11 +154900,12 @@ 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, @@ -157003,13 +154914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95642] = 2, - ACTIONS(6108), 4, + [97144] = 2, + ACTIONS(6266), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 35, + ACTIONS(6264), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157027,16 +154937,17 @@ 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, sym_inline_note_reference, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -157045,13 +154956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95686] = 2, - ACTIONS(6220), 4, + [97188] = 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6218), 35, + ACTIONS(6268), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157079,6 +154989,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -157087,13 +154998,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95730] = 2, - ACTIONS(6228), 4, + [97232] = 2, + ACTIONS(6144), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6226), 35, + ACTIONS(6142), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157115,12 +155025,13 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -157129,13 +155040,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95774] = 2, - ACTIONS(6296), 4, + [97276] = 2, + ACTIONS(6148), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6294), 35, + ACTIONS(6146), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157153,16 +155063,17 @@ 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, @@ -157171,13 +155082,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95818] = 2, - ACTIONS(6304), 4, + [97320] = 2, + ACTIONS(6152), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6302), 35, + ACTIONS(6150), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157195,16 +155105,17 @@ 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, @@ -157213,13 +155124,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95862] = 2, - ACTIONS(6220), 4, + [97364] = 2, + ACTIONS(6084), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6218), 35, + ACTIONS(6082), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157230,7 +155140,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, @@ -157238,6 +155147,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, @@ -157247,6 +155157,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -157255,13 +155166,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95906] = 2, - ACTIONS(6228), 4, + [97408] = 2, + ACTIONS(6156), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6226), 35, + ACTIONS(6154), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157272,7 +155182,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, @@ -157285,10 +155194,12 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -157297,13 +155208,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95950] = 2, - ACTIONS(6438), 4, + [97452] = 2, + ACTIONS(6160), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6436), 35, + ACTIONS(6158), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157322,15 +155232,16 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -157339,13 +155250,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [95994] = 2, - ACTIONS(6438), 4, + [97496] = 2, + ACTIONS(6266), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6436), 35, + sym__whitespace, + ACTIONS(6264), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157369,25 +155280,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__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, - [96038] = 2, - ACTIONS(6232), 4, + [97540] = 2, + ACTIONS(6288), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6230), 35, + ACTIONS(6286), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157398,7 +155308,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, @@ -157411,10 +155320,12 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -157423,13 +155334,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96082] = 2, - ACTIONS(6236), 4, + [97584] = 2, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6234), 35, + ACTIONS(6164), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157440,7 +155350,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, @@ -157453,10 +155362,12 @@ 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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -157465,13 +155376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96126] = 2, - ACTIONS(6324), 4, + [97628] = 2, + ACTIONS(6270), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6322), 35, + sym__whitespace, + ACTIONS(6268), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157489,7 +155400,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, @@ -157499,21 +155409,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [96170] = 2, - ACTIONS(6328), 4, + [97672] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6326), 35, + ACTIONS(6168), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157531,16 +155441,17 @@ 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, @@ -157549,13 +155460,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96214] = 2, - ACTIONS(6340), 4, + [97716] = 2, + ACTIONS(6234), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6338), 35, + sym__whitespace, + ACTIONS(6232), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157573,7 +155484,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, @@ -157583,22 +155493,22 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [96258] = 2, - ACTIONS(6292), 4, + [97760] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6290), 35, - sym__line_ending, + ACTIONS(6172), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -157620,11 +155530,12 @@ 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, @@ -157633,13 +155544,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96302] = 2, - ACTIONS(6352), 4, + [97804] = 2, + ACTIONS(6006), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6350), 35, + ACTIONS(6004), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157667,6 +155577,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -157675,13 +155586,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96346] = 2, - ACTIONS(6368), 4, + [97848] = 2, + ACTIONS(6058), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6366), 35, + ACTIONS(6056), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157699,16 +155609,17 @@ 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, @@ -157717,13 +155628,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96390] = 2, - ACTIONS(6232), 4, + [97892] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6230), 35, + ACTIONS(6176), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157745,12 +155655,13 @@ 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, sym_html_element, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -157759,13 +155670,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96434] = 2, - ACTIONS(6292), 4, + [97936] = 2, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6290), 35, + ACTIONS(6180), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157783,16 +155693,17 @@ 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, @@ -157801,13 +155712,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96478] = 2, - ACTIONS(6312), 4, + [97980] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6310), 35, + ACTIONS(6184), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157825,16 +155735,17 @@ 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, @@ -157843,13 +155754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96522] = 2, - ACTIONS(6236), 4, + [98024] = 2, + ACTIONS(6144), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6234), 35, + ACTIONS(6142), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157859,6 +155769,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, @@ -157871,12 +155782,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__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -157885,13 +155796,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96566] = 2, - ACTIONS(6172), 4, + [98068] = 2, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6170), 35, + ACTIONS(6188), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157909,16 +155819,17 @@ 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, @@ -157927,13 +155838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96610] = 2, - ACTIONS(6240), 4, + [98112] = 2, + ACTIONS(6278), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6238), 35, + sym__whitespace, + ACTIONS(6276), 35, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -157951,7 +155862,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, @@ -157961,21 +155871,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [96654] = 2, - ACTIONS(6324), 4, + [98156] = 2, + ACTIONS(6194), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6322), 35, + ACTIONS(6192), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158003,6 +155913,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -158011,13 +155922,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96698] = 2, - ACTIONS(6244), 4, + [98200] = 2, + ACTIONS(6148), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6242), 35, + ACTIONS(6146), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158027,6 +155937,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, @@ -158035,7 +155946,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, @@ -158045,6 +155955,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -158053,13 +155964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96742] = 2, - ACTIONS(6266), 4, + [98244] = 2, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6264), 35, + ACTIONS(6196), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158077,16 +155987,17 @@ 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, @@ -158095,13 +156006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96786] = 2, - ACTIONS(6270), 4, + [98288] = 2, + ACTIONS(6202), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6268), 35, + ACTIONS(6200), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158119,16 +156029,17 @@ 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, @@ -158137,13 +156048,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96830] = 2, - ACTIONS(6274), 4, + [98332] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6272), 35, + ACTIONS(6204), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158161,16 +156071,17 @@ 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, @@ -158179,13 +156090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96874] = 2, - ACTIONS(6328), 4, + [98376] = 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6326), 35, + ACTIONS(6208), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158213,6 +156123,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -158221,13 +156132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96918] = 2, - ACTIONS(6278), 4, + [98420] = 2, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6276), 35, + ACTIONS(6212), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158245,16 +156155,17 @@ 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, @@ -158263,13 +156174,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [96962] = 2, - ACTIONS(6308), 4, + [98464] = 2, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6306), 35, + ACTIONS(6272), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158287,16 +156197,17 @@ 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, @@ -158305,13 +156216,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97006] = 2, - ACTIONS(6340), 4, + [98508] = 2, + ACTIONS(6238), 4, + anon_sym_DOLLAR, + aux_sym_pandoc_str_token1, + aux_sym__prose_punctuation_token1, + sym__whitespace, + ACTIONS(6236), 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, + [98552] = 2, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6338), 35, + ACTIONS(6216), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158339,6 +156291,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -158347,13 +156300,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97050] = 2, - ACTIONS(6358), 4, + [98596] = 2, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6356), 35, + ACTIONS(6220), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158371,16 +156323,17 @@ 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, @@ -158389,13 +156342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97094] = 2, - ACTIONS(6386), 4, + [98640] = 2, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6384), 35, + ACTIONS(6224), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158413,16 +156365,17 @@ 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, @@ -158431,13 +156384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97138] = 2, - ACTIONS(6382), 4, + [98684] = 2, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6380), 35, + ACTIONS(6228), 36, sym__soft_line_ending, sym__code_span_start, sym__html_comment, @@ -158460,11 +156412,12 @@ 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, + sym__pandoc_line_break, sym_entity_reference, sym_numeric_character_reference, anon_sym_LBRACK, @@ -158473,13 +156426,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97182] = 2, - ACTIONS(6250), 4, + [98728] = 2, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6248), 34, + ACTIONS(6232), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158501,11 +156454,12 @@ 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, @@ -158514,13 +156468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97225] = 2, - ACTIONS(6224), 4, + [98772] = 2, + ACTIONS(6088), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6222), 34, + ACTIONS(6086), 36, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158547,6 +156501,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -158555,13 +156510,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97268] = 2, - ACTIONS(6258), 4, + [98816] = 2, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6256), 34, + ACTIONS(6276), 36, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158583,11 +156538,12 @@ 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, @@ -158596,14 +156552,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97311] = 2, - ACTIONS(6412), 4, + [98860] = 2, + ACTIONS(6100), 4, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6410), 34, - sym__line_ending, + sym__whitespace, + ACTIONS(6098), 35, + sym__soft_line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158629,21 +156585,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__whitespace, - [97354] = 2, - ACTIONS(6300), 4, + [98904] = 2, + ACTIONS(6234), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6298), 34, + ACTIONS(6232), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158670,6 +156626,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -158678,13 +156635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97397] = 2, - ACTIONS(6320), 4, + [98947] = 2, + ACTIONS(6156), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6318), 34, + ACTIONS(6154), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158711,6 +156667,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -158719,13 +156676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97440] = 2, - ACTIONS(6348), 4, + [98990] = 2, + ACTIONS(6160), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6346), 34, + ACTIONS(6158), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158752,6 +156708,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -158760,13 +156717,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97483] = 2, - ACTIONS(6362), 4, + [99033] = 2, + ACTIONS(6080), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6360), 34, + ACTIONS(6078), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158793,6 +156749,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -158801,13 +156758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97526] = 2, - ACTIONS(6372), 4, + [99076] = 2, + ACTIONS(6288), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6370), 34, + ACTIONS(6286), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158834,6 +156790,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -158842,13 +156799,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97569] = 2, - ACTIONS(6378), 4, + [99119] = 2, + ACTIONS(6166), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6376), 34, + ACTIONS(6164), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158875,6 +156831,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -158883,13 +156840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97612] = 2, - ACTIONS(6382), 4, + [99162] = 2, + ACTIONS(6170), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6380), 34, + ACTIONS(6168), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158916,6 +156872,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -158924,13 +156881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97655] = 2, - ACTIONS(6394), 4, + [99205] = 2, + ACTIONS(3083), 4, + aux_sym_pandoc_span_token1, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6392), 34, + ACTIONS(3081), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158956,22 +156913,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, + aux_sym_target_token1, anon_sym_DOLLAR_DOLLAR, anon_sym_LBRACE, anon_sym_PIPE, - sym__whitespace, - [97698] = 2, - ACTIONS(6070), 4, + [99248] = 2, + ACTIONS(6174), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6068), 34, + ACTIONS(6172), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -158998,6 +156954,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159006,13 +156963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97741] = 2, - ACTIONS(6108), 4, + [99291] = 2, + ACTIONS(6092), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6106), 34, + ACTIONS(6090), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159039,6 +156995,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159047,13 +157004,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97784] = 2, - ACTIONS(6296), 4, + [99334] = 2, + ACTIONS(6058), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6294), 34, + ACTIONS(6056), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159080,6 +157036,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159088,13 +157045,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97827] = 2, - ACTIONS(6304), 4, + [99377] = 2, + ACTIONS(6178), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6302), 34, + ACTIONS(6176), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159121,6 +157077,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159129,14 +157086,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97870] = 2, - ACTIONS(6404), 4, + [99420] = 2, + ACTIONS(6182), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2411), 34, - sym__line_ending, + ACTIONS(6180), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159162,6 +157117,8 @@ 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, @@ -159170,13 +157127,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97913] = 2, - ACTIONS(6316), 4, + [99463] = 2, + ACTIONS(6186), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6314), 34, + ACTIONS(6184), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159203,6 +157159,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159211,13 +157168,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97956] = 2, - ACTIONS(6220), 4, + [99506] = 2, + ACTIONS(6064), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6218), 34, + ACTIONS(6062), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159244,6 +157200,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159252,138 +157209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [97999] = 2, - ACTIONS(6228), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6226), 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, - 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_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, - [98042] = 2, - ACTIONS(6232), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6230), 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, - 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_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, - [98085] = 2, - ACTIONS(6236), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6234), 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, - 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_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, - [98128] = 3, - ACTIONS(6474), 1, + [99549] = 3, + ACTIONS(6334), 1, sym_block_continuation, - ACTIONS(3165), 4, + ACTIONS(2707), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3163), 33, + ACTIONS(2705), 34, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159409,6 +157242,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159417,13 +157251,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [98173] = 2, - ACTIONS(6332), 4, + [99594] = 2, + ACTIONS(6190), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6330), 34, + ACTIONS(6188), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159450,6 +157283,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159458,13 +157292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98216] = 2, - ACTIONS(6344), 4, + [99637] = 2, + ACTIONS(6258), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6342), 34, + ACTIONS(6256), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159491,6 +157324,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159499,13 +157333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98259] = 2, - ACTIONS(6324), 4, + [99680] = 2, + ACTIONS(6262), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6322), 34, + ACTIONS(6260), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159532,6 +157365,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159540,13 +157374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98302] = 2, - ACTIONS(6328), 4, + [99723] = 2, + ACTIONS(6266), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6326), 34, + ACTIONS(6264), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159573,6 +157406,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159581,13 +157415,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98345] = 2, - ACTIONS(6340), 4, + [99766] = 2, + ACTIONS(6270), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6338), 34, + ACTIONS(6268), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159614,6 +157447,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159622,13 +157456,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98388] = 2, - ACTIONS(6364), 4, + [99809] = 2, + ACTIONS(6194), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2395), 34, + ACTIONS(6192), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159655,6 +157488,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159663,13 +157497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98431] = 2, - ACTIONS(6390), 4, + [99852] = 2, + ACTIONS(6198), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6388), 34, + ACTIONS(6196), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159696,6 +157529,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159704,13 +157538,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98474] = 2, - ACTIONS(6352), 4, + [99895] = 2, + ACTIONS(6284), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6350), 34, + ACTIONS(2324), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159737,6 +157570,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159745,13 +157579,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98517] = 2, - ACTIONS(6368), 4, + [99938] = 2, + ACTIONS(6202), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6366), 34, + ACTIONS(6200), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159778,6 +157611,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159786,13 +157620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98560] = 2, - ACTIONS(6292), 4, + [99981] = 2, + ACTIONS(6206), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6290), 34, + ACTIONS(6204), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159819,6 +157652,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159827,13 +157661,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98603] = 2, - ACTIONS(6312), 4, + [100024] = 2, + ACTIONS(6210), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6310), 34, + ACTIONS(6208), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159860,6 +157693,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159868,13 +157702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98646] = 2, - ACTIONS(6172), 4, + [100067] = 2, + ACTIONS(6214), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6170), 34, + ACTIONS(6212), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159901,6 +157734,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159909,13 +157743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98689] = 2, - ACTIONS(6240), 4, + [100110] = 2, + ACTIONS(6218), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6238), 34, + ACTIONS(6216), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159942,6 +157775,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159950,13 +157784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98732] = 2, - ACTIONS(6282), 4, + [100153] = 2, + ACTIONS(6222), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6280), 34, + ACTIONS(6220), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -159983,6 +157816,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -159991,13 +157825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98775] = 2, - ACTIONS(6266), 4, + [100196] = 2, + ACTIONS(6226), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6264), 34, + ACTIONS(6224), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160024,6 +157857,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160032,13 +157866,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98818] = 2, - ACTIONS(6270), 4, + [100239] = 2, + ACTIONS(6230), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6268), 34, + ACTIONS(6228), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160065,6 +157898,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160073,13 +157907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98861] = 2, - ACTIONS(6274), 4, + [100282] = 2, + ACTIONS(6152), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6272), 34, + ACTIONS(6150), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160106,6 +157939,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160114,13 +157948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98904] = 2, - ACTIONS(6254), 4, + [100325] = 2, + ACTIONS(6088), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6252), 34, + ACTIONS(6086), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160147,6 +157980,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160155,13 +157989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98947] = 2, - ACTIONS(6188), 4, + [100368] = 2, + ACTIONS(6242), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6186), 34, + ACTIONS(6240), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160188,6 +158021,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160196,13 +158030,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [98990] = 2, - ACTIONS(6278), 4, + [100411] = 2, + ACTIONS(6246), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6276), 34, + ACTIONS(6244), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160229,6 +158062,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160237,13 +158071,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99033] = 2, - ACTIONS(6262), 4, + [100454] = 2, + ACTIONS(6096), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6260), 34, + ACTIONS(6094), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160270,6 +158103,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160278,13 +158112,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99076] = 2, - ACTIONS(6308), 4, + [100497] = 2, + ACTIONS(6100), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6306), 34, + ACTIONS(6098), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160311,6 +158144,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160319,13 +158153,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99119] = 2, - ACTIONS(6358), 4, + [100540] = 2, + ACTIONS(6300), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6356), 34, + ACTIONS(2334), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160351,7 +158185,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, anon_sym_LBRACK, @@ -160360,13 +158194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99162] = 2, - ACTIONS(6386), 4, + [100583] = 2, + ACTIONS(6104), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6384), 34, + ACTIONS(6102), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160393,6 +158226,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160401,13 +158235,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99205] = 2, - ACTIONS(6398), 4, + [100626] = 2, + ACTIONS(6108), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6396), 34, + ACTIONS(6106), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160434,6 +158267,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160442,13 +158276,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99248] = 2, - ACTIONS(6164), 4, + [100669] = 2, + ACTIONS(6112), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6162), 34, + ACTIONS(6110), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160475,6 +158308,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160483,13 +158317,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99291] = 2, - ACTIONS(6168), 4, + [100712] = 2, + ACTIONS(6304), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6166), 34, + ACTIONS(6302), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160515,7 +158349,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, anon_sym_LBRACK, @@ -160524,13 +158358,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99334] = 2, - ACTIONS(6176), 4, + [100755] = 2, + ACTIONS(6116), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6174), 34, + ACTIONS(6114), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160557,6 +158390,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160565,13 +158399,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99377] = 2, - ACTIONS(6180), 4, + [100798] = 2, + ACTIONS(6120), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6178), 34, + ACTIONS(6118), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160598,6 +158431,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160606,13 +158440,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99420] = 2, - ACTIONS(6184), 4, + [100841] = 2, + ACTIONS(6318), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6182), 34, + ACTIONS(2366), 35, + sym__line_ending, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160638,7 +158472,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, anon_sym_LBRACK, @@ -160647,13 +158481,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99463] = 2, - ACTIONS(6192), 4, + [100884] = 2, + ACTIONS(6124), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6190), 34, + ACTIONS(6122), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160680,6 +158513,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160688,13 +158522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99506] = 2, - ACTIONS(6196), 4, + [100927] = 2, + ACTIONS(6128), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6194), 34, + ACTIONS(6126), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160721,6 +158554,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160729,13 +158563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99549] = 2, - ACTIONS(6200), 4, + [100970] = 2, + ACTIONS(6132), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6198), 34, + ACTIONS(6130), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160762,6 +158595,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160770,13 +158604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99592] = 2, - ACTIONS(6204), 4, + [101013] = 2, + ACTIONS(6274), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6202), 34, + ACTIONS(6272), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160803,6 +158636,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160811,13 +158645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99635] = 2, - ACTIONS(6208), 4, + [101056] = 2, + ACTIONS(6030), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6206), 34, + ACTIONS(6028), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160844,6 +158677,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160852,13 +158686,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99678] = 2, - ACTIONS(6288), 4, + [101099] = 2, + ACTIONS(6250), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6286), 34, + ACTIONS(6248), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160885,6 +158718,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160893,13 +158727,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99721] = 2, - ACTIONS(3446), 4, + [101142] = 2, + ACTIONS(6254), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3444), 34, + ACTIONS(6252), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160926,6 +158759,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160934,13 +158768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99764] = 2, - ACTIONS(6128), 4, + [101185] = 2, + ACTIONS(6278), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6126), 34, + ACTIONS(6276), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -160967,6 +158800,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -160975,13 +158809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99807] = 2, - ACTIONS(6402), 4, + [101228] = 2, + ACTIONS(5950), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6400), 34, + ACTIONS(5948), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -161008,6 +158841,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -161016,13 +158850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99850] = 2, - ACTIONS(6212), 4, + [101271] = 2, + ACTIONS(6084), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6210), 34, + ACTIONS(6082), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -161049,6 +158882,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -161057,54 +158891,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99893] = 2, - ACTIONS(6444), 4, + [101314] = 2, + ACTIONS(6282), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6442), 34, - 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_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, - [99936] = 2, - ACTIONS(6216), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6214), 34, + ACTIONS(6280), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -161131,6 +158923,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -161139,95 +158932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [99979] = 2, - ACTIONS(6456), 4, + [101357] = 2, + ACTIONS(6136), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(2320), 34, - 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_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, - [100022] = 2, - ACTIONS(3454), 5, - aux_sym_pandoc_span_token1, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3452), 33, - 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_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, - [100065] = 2, - ACTIONS(6336), 4, - anon_sym_DOLLAR, - aux_sym_pandoc_str_token1, - aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6334), 34, + ACTIONS(6134), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -161254,6 +158964,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -161262,13 +158973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [100108] = 2, - ACTIONS(6244), 4, + [101400] = 2, + ACTIONS(6140), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(6242), 34, + ACTIONS(6138), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -161295,6 +159005,7 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -161303,13 +159014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PIPE, sym__whitespace, - [100151] = 2, - ACTIONS(3454), 4, + [101443] = 2, + ACTIONS(6068), 3, anon_sym_DOLLAR, aux_sym_pandoc_str_token1, aux_sym__prose_punctuation_token1, - aux_sym_pandoc_line_break_token1, - ACTIONS(3452), 33, + ACTIONS(6066), 35, sym__code_span_start, sym__html_comment, sym__autolink, @@ -161335,6 +159045,335 @@ 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, + [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, + 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, + 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, + 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, + 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, + 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, + 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, + 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, + 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, @@ -161343,20284 +159382,20053 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_insert_token1, anon_sym_LBRACE, anon_sym_PIPE, - [100193] = 15, - ACTIONS(6476), 1, - ts_builtin_sym_end, - ACTIONS(6478), 1, + [101829] = 15, + ACTIONS(31), 1, sym_atx_h1_marker, - ACTIONS(6481), 1, + ACTIONS(33), 1, sym_atx_h2_marker, - ACTIONS(6484), 1, + ACTIONS(35), 1, sym_atx_h3_marker, - ACTIONS(6487), 1, + ACTIONS(37), 1, sym_atx_h4_marker, - ACTIONS(6490), 1, + ACTIONS(39), 1, sym_atx_h5_marker, - ACTIONS(6493), 1, + ACTIONS(41), 1, sym_atx_h6_marker, - STATE(78), 1, + ACTIONS(6336), 1, + ts_builtin_sym_end, + STATE(82), 1, sym__atx_heading1, - STATE(86), 1, + STATE(89), 1, sym__atx_heading2, - STATE(100), 1, + STATE(97), 1, sym__atx_heading3, - STATE(106), 1, + STATE(108), 1, sym__atx_heading4, STATE(117), 1, sym__atx_heading5, - STATE(127), 1, + STATE(126), 1, sym__atx_heading6, - STATE(2347), 2, + STATE(2302), 2, sym_section, aux_sym_document_repeat2, - STATE(2536), 6, + STATE(2484), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [100245] = 15, - ACTIONS(33), 1, + [101881] = 15, + ACTIONS(31), 1, sym_atx_h1_marker, - ACTIONS(35), 1, + ACTIONS(33), 1, sym_atx_h2_marker, - ACTIONS(37), 1, + ACTIONS(35), 1, sym_atx_h3_marker, - ACTIONS(39), 1, + ACTIONS(37), 1, sym_atx_h4_marker, - ACTIONS(41), 1, + ACTIONS(39), 1, sym_atx_h5_marker, - ACTIONS(43), 1, + ACTIONS(41), 1, sym_atx_h6_marker, - ACTIONS(6496), 1, + ACTIONS(6338), 1, ts_builtin_sym_end, - STATE(78), 1, + STATE(82), 1, sym__atx_heading1, - STATE(86), 1, + STATE(89), 1, sym__atx_heading2, - STATE(100), 1, + STATE(97), 1, sym__atx_heading3, - STATE(106), 1, + STATE(108), 1, sym__atx_heading4, STATE(117), 1, sym__atx_heading5, - STATE(127), 1, + STATE(126), 1, sym__atx_heading6, - STATE(2347), 2, + STATE(2302), 2, sym_section, aux_sym_document_repeat2, - STATE(2536), 6, + STATE(2484), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [100297] = 15, - ACTIONS(33), 1, + [101933] = 15, + ACTIONS(31), 1, sym_atx_h1_marker, - ACTIONS(35), 1, + ACTIONS(33), 1, sym_atx_h2_marker, - ACTIONS(37), 1, + ACTIONS(35), 1, sym_atx_h3_marker, - ACTIONS(39), 1, + ACTIONS(37), 1, sym_atx_h4_marker, - ACTIONS(41), 1, + ACTIONS(39), 1, sym_atx_h5_marker, - ACTIONS(43), 1, + ACTIONS(41), 1, sym_atx_h6_marker, - ACTIONS(6498), 1, + ACTIONS(6340), 1, ts_builtin_sym_end, - STATE(78), 1, + STATE(82), 1, sym__atx_heading1, - STATE(86), 1, + STATE(89), 1, sym__atx_heading2, - STATE(100), 1, + STATE(97), 1, sym__atx_heading3, - STATE(106), 1, + STATE(108), 1, sym__atx_heading4, STATE(117), 1, sym__atx_heading5, - STATE(127), 1, + STATE(126), 1, sym__atx_heading6, - STATE(2347), 2, + STATE(2302), 2, sym_section, aux_sym_document_repeat2, - STATE(2536), 6, + STATE(2484), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [100349] = 15, - ACTIONS(33), 1, + [101985] = 15, + ACTIONS(6342), 1, + ts_builtin_sym_end, + ACTIONS(6344), 1, sym_atx_h1_marker, - ACTIONS(35), 1, + ACTIONS(6347), 1, sym_atx_h2_marker, - ACTIONS(37), 1, + ACTIONS(6350), 1, sym_atx_h3_marker, - ACTIONS(39), 1, + ACTIONS(6353), 1, sym_atx_h4_marker, - ACTIONS(41), 1, + ACTIONS(6356), 1, sym_atx_h5_marker, - ACTIONS(43), 1, + ACTIONS(6359), 1, sym_atx_h6_marker, - ACTIONS(540), 1, - ts_builtin_sym_end, - STATE(78), 1, + STATE(82), 1, sym__atx_heading1, - STATE(86), 1, + STATE(89), 1, sym__atx_heading2, - STATE(100), 1, + STATE(97), 1, sym__atx_heading3, - STATE(106), 1, + STATE(108), 1, sym__atx_heading4, STATE(117), 1, sym__atx_heading5, - STATE(127), 1, + STATE(126), 1, sym__atx_heading6, - STATE(2347), 2, + STATE(2302), 2, sym_section, aux_sym_document_repeat2, - STATE(2536), 6, + STATE(2484), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [100401] = 15, - ACTIONS(33), 1, + [102037] = 15, + ACTIONS(31), 1, sym_atx_h1_marker, - ACTIONS(35), 1, + ACTIONS(33), 1, sym_atx_h2_marker, - ACTIONS(37), 1, + ACTIONS(35), 1, sym_atx_h3_marker, - ACTIONS(39), 1, + ACTIONS(37), 1, sym_atx_h4_marker, - ACTIONS(41), 1, + ACTIONS(39), 1, sym_atx_h5_marker, - ACTIONS(43), 1, + ACTIONS(41), 1, sym_atx_h6_marker, - ACTIONS(6500), 1, + ACTIONS(471), 1, ts_builtin_sym_end, - STATE(78), 1, + STATE(82), 1, sym__atx_heading1, - STATE(86), 1, + STATE(89), 1, sym__atx_heading2, - STATE(100), 1, + STATE(97), 1, sym__atx_heading3, - STATE(106), 1, + STATE(108), 1, sym__atx_heading4, STATE(117), 1, sym__atx_heading5, - STATE(127), 1, + STATE(126), 1, sym__atx_heading6, - STATE(2347), 2, + STATE(2302), 2, sym_section, aux_sym_document_repeat2, - STATE(2536), 6, + STATE(2484), 6, sym__section1, sym__section2, sym__section3, sym__section4, sym__section5, sym__section6, - [100453] = 13, - ACTIONS(6502), 1, + [102089] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6512), 1, + ACTIONS(6372), 1, sym__whitespace, - ACTIONS(6514), 1, + ACTIONS(6374), 1, sym__soft_line_ending, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - STATE(3476), 1, + STATE(3605), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(2449), 2, + STATE(2410), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [100498] = 13, - ACTIONS(6502), 1, + [102134] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6514), 1, + ACTIONS(6374), 1, sym__soft_line_ending, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6520), 1, + ACTIONS(6380), 1, sym__whitespace, - STATE(3644), 1, + STATE(3234), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(2450), 2, + STATE(2413), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [100543] = 13, - ACTIONS(6502), 1, + [102179] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6524), 1, + ACTIONS(6384), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [100587] = 13, - ACTIONS(6502), 1, + [102223] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6528), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - STATE(3894), 1, + ACTIONS(6386), 1, + sym__shortcode_close, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [100631] = 13, - ACTIONS(6502), 1, + [102267] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6530), 1, + ACTIONS(6390), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [100675] = 13, - ACTIONS(6502), 1, + [102311] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6532), 1, + ACTIONS(6392), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [100719] = 13, - ACTIONS(6502), 1, + [102355] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6534), 1, + ACTIONS(6394), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [100763] = 13, - ACTIONS(6502), 1, + [102399] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6536), 1, + ACTIONS(6396), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [100807] = 13, - ACTIONS(6502), 1, + [102443] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6538), 1, + ACTIONS(6398), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [100851] = 13, - ACTIONS(6502), 1, + [102487] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6540), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - STATE(3894), 1, + ACTIONS(6400), 1, + sym__shortcode_close, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [100895] = 13, - ACTIONS(6502), 1, + [102531] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6542), 1, + ACTIONS(6402), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [100939] = 13, - ACTIONS(6502), 1, + [102575] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6544), 1, + ACTIONS(6404), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [100983] = 13, - ACTIONS(6502), 1, + [102619] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6546), 1, + ACTIONS(6406), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, - aux_sym_shortcode_naked_string_token1, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, + aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101027] = 13, - ACTIONS(6502), 1, + [102663] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6548), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - STATE(3894), 1, + ACTIONS(6408), 1, + sym__shortcode_close, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101071] = 13, - ACTIONS(6502), 1, + [102707] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6550), 1, + ACTIONS(6410), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3762), 1, + sym__shortcode_value, + STATE(3913), 1, sym__shortcode_key_value_specifier, - STATE(3894), 1, + 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, + sym__language_specifier_token, + ACTIONS(6378), 1, + sym__shortcode_open, + ACTIONS(6382), 1, + sym__key_specifier_token, + ACTIONS(6412), 1, + sym__shortcode_close, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101115] = 13, - ACTIONS(6502), 1, + [102795] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6552), 1, + ACTIONS(6414), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101159] = 13, - ACTIONS(6502), 1, + [102839] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6554), 1, + ACTIONS(6416), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101203] = 13, - ACTIONS(6502), 1, + [102883] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6556), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + ACTIONS(6418), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101247] = 13, - ACTIONS(6502), 1, + [102927] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6558), 1, + ACTIONS(6420), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101291] = 13, - ACTIONS(6502), 1, + [102971] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6560), 1, + ACTIONS(6422), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101335] = 13, - ACTIONS(6502), 1, + [103015] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6562), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + ACTIONS(6424), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101379] = 13, - ACTIONS(6502), 1, + [103059] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6564), 1, + ACTIONS(6426), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101423] = 13, - ACTIONS(6502), 1, + [103103] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6566), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + ACTIONS(6428), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101467] = 13, - ACTIONS(6502), 1, + [103147] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6568), 1, + ACTIONS(6430), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101511] = 13, - ACTIONS(6502), 1, + [103191] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6570), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + ACTIONS(6432), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101555] = 13, - ACTIONS(6502), 1, + [103235] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6572), 1, + ACTIONS(6434), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101599] = 13, - ACTIONS(6502), 1, + [103279] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6574), 1, + ACTIONS(6436), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101643] = 13, - ACTIONS(6502), 1, + [103323] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6576), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - STATE(3894), 1, + ACTIONS(6438), 1, + sym__shortcode_close, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101687] = 13, - ACTIONS(6502), 1, + [103367] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6578), 1, + ACTIONS(6440), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101731] = 13, - ACTIONS(6502), 1, + [103411] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6580), 1, + ACTIONS(6442), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101775] = 13, - ACTIONS(6502), 1, + [103455] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6582), 1, + ACTIONS(6444), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101819] = 13, - ACTIONS(6502), 1, + [103499] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6584), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + ACTIONS(6446), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101863] = 13, - ACTIONS(6502), 1, + [103543] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6586), 1, + ACTIONS(6448), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101907] = 13, - ACTIONS(6502), 1, + [103587] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6588), 1, + ACTIONS(6450), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101951] = 13, - ACTIONS(6502), 1, + [103631] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6590), 1, + ACTIONS(6452), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [101995] = 13, - ACTIONS(6502), 1, + [103675] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6592), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - STATE(3894), 1, + ACTIONS(6454), 1, + sym__shortcode_close, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102039] = 13, - ACTIONS(6502), 1, + [103719] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6594), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + ACTIONS(6456), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102083] = 13, - ACTIONS(6502), 1, + [103763] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6596), 1, + ACTIONS(6458), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102127] = 13, - ACTIONS(6502), 1, + [103807] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6598), 1, + ACTIONS(6460), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102171] = 13, - ACTIONS(6502), 1, + [103851] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6600), 1, + ACTIONS(6462), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102215] = 13, - ACTIONS(6502), 1, + [103895] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6602), 1, + ACTIONS(6464), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102259] = 13, - ACTIONS(6502), 1, + [103939] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6604), 1, + ACTIONS(6466), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3762), 1, + sym__shortcode_value, + STATE(3913), 1, sym__shortcode_key_value_specifier, - STATE(3894), 1, + 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, + 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(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102303] = 13, - ACTIONS(6502), 1, + [104027] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6606), 1, + ACTIONS(6470), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102347] = 13, - ACTIONS(6502), 1, + [104071] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6608), 1, + ACTIONS(6472), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102391] = 13, - ACTIONS(6502), 1, + [104115] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6610), 1, + ACTIONS(6474), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102435] = 13, - ACTIONS(6502), 1, + [104159] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6612), 1, + ACTIONS(6476), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102479] = 13, - ACTIONS(6502), 1, + [104203] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6614), 1, + ACTIONS(6478), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102523] = 13, - ACTIONS(6502), 1, + [104247] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6616), 1, + ACTIONS(6480), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, - sym__shortcode_value, - ACTIONS(6508), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3813), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [102567] = 13, - ACTIONS(6502), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, - sym_shortcode_name, - ACTIONS(6510), 1, - sym_shortcode_number, - ACTIONS(6516), 1, - sym__language_specifier_token, - ACTIONS(6518), 1, - sym__shortcode_open, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6618), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102611] = 13, - ACTIONS(6502), 1, + [104291] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6620), 1, + ACTIONS(6482), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102655] = 13, - ACTIONS(6502), 1, + [104335] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6622), 1, + ACTIONS(6484), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102699] = 13, - ACTIONS(6502), 1, + [104379] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6624), 1, + ACTIONS(6486), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102743] = 13, - ACTIONS(6502), 1, + [104423] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6626), 1, + ACTIONS(6488), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102787] = 13, - ACTIONS(6502), 1, + [104467] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6628), 1, + ACTIONS(6490), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102831] = 13, - ACTIONS(6502), 1, + [104511] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6630), 1, + ACTIONS(6492), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102875] = 13, - ACTIONS(6502), 1, + [104555] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6632), 1, + ACTIONS(6494), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102919] = 13, - ACTIONS(6502), 1, + [104599] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6634), 1, + ACTIONS(6496), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [102963] = 13, - ACTIONS(6502), 1, + [104643] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6636), 1, + ACTIONS(6498), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103007] = 13, - ACTIONS(6502), 1, + [104687] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6638), 1, + ACTIONS(6500), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103051] = 13, - ACTIONS(6502), 1, + [104731] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6640), 1, + ACTIONS(6502), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103095] = 13, - ACTIONS(6502), 1, + [104775] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6642), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - STATE(3894), 1, - sym__shortcode_value, - ACTIONS(6508), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3813), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [103139] = 13, - ACTIONS(6502), 1, - aux_sym__commonmark_single_quote_string_token1, ACTIONS(6504), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, - sym_shortcode_name, - ACTIONS(6510), 1, - sym_shortcode_number, - ACTIONS(6516), 1, - sym__language_specifier_token, - ACTIONS(6518), 1, - sym__shortcode_open, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6644), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103183] = 13, - ACTIONS(6502), 1, + [104819] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6646), 1, + ACTIONS(6506), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103227] = 13, - ACTIONS(6502), 1, + [104863] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6648), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - STATE(3894), 1, + ACTIONS(6508), 1, + sym__shortcode_close, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103271] = 13, - ACTIONS(6502), 1, + [104907] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6650), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + ACTIONS(6510), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103315] = 13, - ACTIONS(6502), 1, + [104951] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6652), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - STATE(3894), 1, + ACTIONS(6512), 1, + sym__shortcode_close, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103359] = 13, - ACTIONS(6502), 1, + [104995] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6654), 1, + ACTIONS(6514), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103403] = 13, - ACTIONS(6502), 1, + [105039] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6656), 1, + ACTIONS(6516), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103447] = 13, - ACTIONS(6502), 1, + [105083] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6658), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + ACTIONS(6518), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103491] = 13, - ACTIONS(6502), 1, + [105127] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6660), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - STATE(3894), 1, + ACTIONS(6520), 1, + sym__shortcode_close, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103535] = 13, - ACTIONS(6502), 1, + [105171] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6662), 1, + ACTIONS(6522), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103579] = 13, - ACTIONS(6502), 1, + [105215] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6522), 1, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6664), 1, + ACTIONS(6524), 1, sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103623] = 13, - ACTIONS(6502), 1, + [105259] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6666), 1, + ACTIONS(6526), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103667] = 13, - ACTIONS(6502), 1, + [105303] = 13, + ACTIONS(6362), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, + ACTIONS(6366), 1, sym_shortcode_name, - ACTIONS(6510), 1, + ACTIONS(6370), 1, sym_shortcode_number, - ACTIONS(6516), 1, + ACTIONS(6376), 1, sym__language_specifier_token, - ACTIONS(6518), 1, + ACTIONS(6378), 1, sym__shortcode_open, - ACTIONS(6526), 1, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6668), 1, + ACTIONS(6528), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - STATE(3894), 1, + STATE(3762), 1, sym__shortcode_value, - ACTIONS(6508), 2, + ACTIONS(6368), 2, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, + STATE(3760), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - STATE(3813), 3, + STATE(3716), 3, sym_shortcode, sym_shortcode_naked_string, sym_shortcode_string, - [103711] = 13, - ACTIONS(6670), 1, + [105347] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6672), 1, + ACTIONS(6532), 1, anon_sym_RBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6682), 1, + ACTIONS(6542), 1, sym_raw_specifier, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3899), 2, - sym__soft_line_break, - sym__inline_whitespace, - STATE(3953), 2, + STATE(3391), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3954), 2, + STATE(3392), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [103754] = 13, - ACTIONS(6670), 1, + STATE(3668), 2, + sym__soft_line_break, + sym__inline_whitespace, + [105390] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6688), 1, + ACTIONS(6548), 1, anon_sym_RBRACE, - ACTIONS(6690), 1, + ACTIONS(6550), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3721), 2, + STATE(3668), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3728), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3722), 2, + STATE(3729), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, - sym__soft_line_break, - sym__inline_whitespace, - [103797] = 13, - ACTIONS(6670), 1, + [105433] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6692), 1, + ACTIONS(6552), 1, anon_sym_RBRACE, - ACTIONS(6694), 1, + ACTIONS(6554), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3482), 2, + STATE(3668), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3862), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3483), 2, + STATE(3864), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, - sym__soft_line_break, - sym__inline_whitespace, - [103840] = 13, - ACTIONS(6670), 1, + [105476] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6696), 1, + ACTIONS(6556), 1, anon_sym_RBRACE, - ACTIONS(6698), 1, + ACTIONS(6558), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3881), 2, + STATE(3338), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3896), 2, + STATE(3339), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [103883] = 13, - ACTIONS(6670), 1, + [105519] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6700), 1, + ACTIONS(6560), 1, anon_sym_RBRACE, - ACTIONS(6702), 1, + ACTIONS(6562), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3455), 2, + STATE(3641), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3456), 2, + STATE(3650), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [103926] = 13, - ACTIONS(6670), 1, + [105562] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6704), 1, + ACTIONS(6564), 1, anon_sym_RBRACE, - ACTIONS(6706), 1, + ACTIONS(6566), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3829), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3837), 2, + STATE(3521), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [103969] = 13, - ACTIONS(6670), 1, + STATE(3817), 2, + sym_language_specifier, + sym_commonmark_specifier, + [105605] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6708), 1, + ACTIONS(6568), 1, anon_sym_RBRACE, - ACTIONS(6710), 1, + ACTIONS(6570), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3382), 2, + STATE(3263), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3384), 2, + STATE(3264), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104012] = 13, - ACTIONS(6670), 1, + [105648] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6712), 1, + ACTIONS(6572), 1, anon_sym_RBRACE, - ACTIONS(6714), 1, + ACTIONS(6574), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3890), 2, + STATE(3418), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3891), 2, + STATE(3419), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104055] = 13, - ACTIONS(6670), 1, + [105691] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6716), 1, + ACTIONS(6576), 1, anon_sym_RBRACE, - ACTIONS(6718), 1, + ACTIONS(6578), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3574), 2, + STATE(3327), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3575), 2, + STATE(3328), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104098] = 13, - ACTIONS(6670), 1, + [105734] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6720), 1, + ACTIONS(6580), 1, anon_sym_RBRACE, - ACTIONS(6722), 1, + ACTIONS(6582), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3555), 2, - sym_language_specifier, - sym_commonmark_specifier, - STATE(3556), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104141] = 13, - ACTIONS(6670), 1, + 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(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6724), 1, + ACTIONS(6584), 1, anon_sym_RBRACE, - ACTIONS(6726), 1, + ACTIONS(6586), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3318), 2, + STATE(3668), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3801), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3550), 2, + STATE(3805), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, - sym__soft_line_break, - sym__inline_whitespace, - [104184] = 13, - ACTIONS(6670), 1, + [105820] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6728), 1, + ACTIONS(6588), 1, anon_sym_RBRACE, - ACTIONS(6730), 1, + ACTIONS(6590), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3530), 2, + STATE(3242), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3535), 2, + STATE(3256), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104227] = 13, - ACTIONS(6670), 1, + [105863] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6732), 1, + ACTIONS(6592), 1, anon_sym_RBRACE, - ACTIONS(6734), 1, + ACTIONS(6594), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3663), 2, + STATE(3593), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3664), 2, + STATE(3596), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104270] = 13, - ACTIONS(6670), 1, + [105906] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6736), 1, + ACTIONS(6596), 1, anon_sym_RBRACE, - ACTIONS(6738), 1, + ACTIONS(6598), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3390), 2, + STATE(3668), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3678), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3391), 2, + STATE(3680), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, - sym__soft_line_break, - sym__inline_whitespace, - [104313] = 13, - ACTIONS(6670), 1, + [105949] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6740), 1, + ACTIONS(6600), 1, anon_sym_RBRACE, - ACTIONS(6742), 1, + ACTIONS(6602), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3620), 2, + STATE(3628), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3623), 2, + STATE(3630), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104356] = 13, - ACTIONS(6670), 1, + [105992] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6744), 1, + ACTIONS(6604), 1, anon_sym_RBRACE, - ACTIONS(6746), 1, + ACTIONS(6606), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3413), 2, + STATE(3314), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3414), 2, + STATE(3319), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104399] = 13, - ACTIONS(6670), 1, + [106035] = 13, + ACTIONS(6530), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6684), 1, + ACTIONS(6544), 1, sym__language_specifier_token, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6748), 1, + ACTIONS(6608), 1, anon_sym_RBRACE, - ACTIONS(6750), 1, + ACTIONS(6610), 1, sym_raw_specifier, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3325), 2, + STATE(3479), 2, sym_language_specifier, sym_commonmark_specifier, - STATE(3326), 2, + STATE(3480), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104442] = 11, - ACTIONS(6674), 1, + [106078] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6754), 1, + ACTIONS(6614), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3653), 2, + STATE(3565), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3654), 2, + STATE(3566), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104479] = 11, - ACTIONS(6674), 1, + [106115] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6756), 1, + ACTIONS(6616), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(3951), 2, + STATE(3883), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3952), 2, + STATE(3911), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [104516] = 11, - ACTIONS(6674), 1, + [106152] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6758), 1, + ACTIONS(6618), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3369), 2, + STATE(3668), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3797), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3377), 2, + STATE(3800), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, - sym__soft_line_break, - sym__inline_whitespace, - [104553] = 11, - ACTIONS(6674), 1, + [106189] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6760), 1, + ACTIONS(6620), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3533), 2, + STATE(3233), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3534), 2, + STATE(3238), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104590] = 11, - ACTIONS(6674), 1, + [106226] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6762), 1, + ACTIONS(6622), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3453), 2, + STATE(3476), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3454), 2, + STATE(3477), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104627] = 11, - ACTIONS(6674), 1, + [106263] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6764), 1, + ACTIONS(6624), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3879), 2, + STATE(3416), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3880), 2, + STATE(3417), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104664] = 10, - ACTIONS(6502), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, - sym_shortcode_name, - ACTIONS(6510), 1, - sym_shortcode_number, - ACTIONS(6516), 1, - sym__language_specifier_token, - ACTIONS(6518), 1, - sym__shortcode_open, - STATE(3644), 1, - sym__shortcode_value, - ACTIONS(6508), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3813), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104699] = 10, - ACTIONS(6502), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, - sym_shortcode_name, - ACTIONS(6510), 1, - sym_shortcode_number, - ACTIONS(6516), 1, - sym__language_specifier_token, - ACTIONS(6518), 1, - sym__shortcode_open, - STATE(3666), 1, - sym__shortcode_value, - ACTIONS(6508), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3813), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104734] = 11, - ACTIONS(6674), 1, + [106300] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6766), 1, + ACTIONS(6626), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3544), 2, + STATE(3658), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3545), 2, + STATE(3659), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104771] = 11, - ACTIONS(6674), 1, + [106337] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6768), 1, + ACTIONS(6628), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3865), 2, + STATE(3261), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3868), 2, + STATE(3262), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104808] = 11, - ACTIONS(6674), 1, + [106374] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6770), 1, + ACTIONS(6630), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3528), 2, + STATE(3668), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3841), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3529), 2, + STATE(3842), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, - sym__soft_line_break, - sym__inline_whitespace, - [104845] = 11, - ACTIONS(6674), 1, + [106411] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6772), 1, + ACTIONS(6632), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3388), 2, + STATE(3668), 2, + sym__soft_line_break, + sym__inline_whitespace, + STATE(3707), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3389), 2, + STATE(3726), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, - sym__soft_line_break, - sym__inline_whitespace, - [104882] = 10, - ACTIONS(6502), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6504), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6506), 1, - sym_shortcode_name, - ACTIONS(6510), 1, - sym_shortcode_number, - ACTIONS(6516), 1, - sym__language_specifier_token, - ACTIONS(6518), 1, - sym__shortcode_open, - STATE(3894), 1, - sym__shortcode_value, - ACTIONS(6508), 2, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - STATE(3862), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - STATE(3813), 3, - sym_shortcode, - sym_shortcode_naked_string, - sym_shortcode_string, - [104917] = 11, - ACTIONS(6674), 1, + [106448] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6774), 1, + ACTIONS(6634), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3827), 2, + STATE(3274), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3828), 2, + STATE(3294), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104954] = 11, - ACTIONS(6674), 1, + [106485] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6776), 1, + ACTIONS(6636), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3618), 2, + STATE(3612), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3619), 2, + STATE(3623), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [104991] = 11, - ACTIONS(6674), 1, + [106522] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6778), 1, + ACTIONS(6638), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3323), 2, + STATE(3325), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3324), 2, + STATE(3326), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [105028] = 11, - ACTIONS(6674), 1, + [106559] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6780), 1, + ACTIONS(6640), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3824), 2, + STATE(3638), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3853), 2, + STATE(3639), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [105065] = 11, - ACTIONS(6674), 1, + [106596] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6782), 1, + ACTIONS(6642), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3405), 2, + STATE(3389), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3406), 2, + STATE(3390), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [105102] = 11, - ACTIONS(6674), 1, + [106633] = 10, + 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, + 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, + sym_shortcode, + sym_shortcode_naked_string, + sym_shortcode_string, + [106668] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6784), 1, + ACTIONS(6644), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3480), 2, + STATE(3496), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3481), 2, + STATE(3497), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [105139] = 11, - ACTIONS(6674), 1, + [106705] = 11, + ACTIONS(6534), 1, aux_sym_commonmark_specifier_token1, - ACTIONS(6676), 1, + ACTIONS(6536), 1, aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(6678), 1, + ACTIONS(6538), 1, sym__whitespace, - ACTIONS(6680), 1, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6686), 1, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6752), 1, + ACTIONS(6612), 1, anon_sym_DASH, - ACTIONS(6786), 1, + ACTIONS(6646), 1, anon_sym_RBRACE, - STATE(2524), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(3719), 2, + STATE(3336), 2, sym_unnumbered_specifier, sym_commonmark_specifier, - STATE(3720), 2, + STATE(3337), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - STATE(3899), 2, + STATE(3668), 2, sym__soft_line_break, sym__inline_whitespace, - [105176] = 7, - ACTIONS(6790), 1, + [106742] = 10, + 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, + 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, + 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_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, + 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(6792), 1, + ACTIONS(6652), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6794), 1, + ACTIONS(6654), 1, sym__whitespace, - ACTIONS(6796), 1, + ACTIONS(6656), 1, sym__soft_line_ending, - STATE(2535), 2, + STATE(2501), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(2697), 2, + STATE(2676), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - ACTIONS(6788), 3, + ACTIONS(6648), 3, sym__value_specifier_token, anon_sym_SQUOTE_SQUOTE, anon_sym_DQUOTE_DQUOTE, - [105202] = 7, - ACTIONS(6796), 1, - sym__soft_line_ending, - ACTIONS(6800), 1, + [106838] = 7, + ACTIONS(6650), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6802), 1, + ACTIONS(6652), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6804), 1, + ACTIONS(6656), 1, + sym__soft_line_ending, + ACTIONS(6660), 1, sym__whitespace, - STATE(2547), 2, + STATE(2500), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(3334), 2, + STATE(2631), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - ACTIONS(6798), 3, + ACTIONS(6658), 3, sym__value_specifier_token, anon_sym_SQUOTE_SQUOTE, anon_sym_DQUOTE_DQUOTE, - [105228] = 7, - ACTIONS(6796), 1, + [106864] = 7, + ACTIONS(6656), 1, sym__soft_line_ending, - ACTIONS(6800), 1, + ACTIONS(6664), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6802), 1, + ACTIONS(6666), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6808), 1, + ACTIONS(6668), 1, sym__whitespace, - STATE(2541), 2, + STATE(2488), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(3558), 2, + STATE(3344), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - ACTIONS(6806), 3, + ACTIONS(6662), 3, sym__value_specifier_token, anon_sym_SQUOTE_SQUOTE, anon_sym_DQUOTE_DQUOTE, - [105254] = 7, - ACTIONS(6790), 1, + [106890] = 7, + ACTIONS(6656), 1, + sym__soft_line_ending, + ACTIONS(6664), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6792), 1, + ACTIONS(6666), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(6796), 1, - sym__soft_line_ending, - ACTIONS(6812), 1, + ACTIONS(6672), 1, sym__whitespace, - STATE(2537), 2, + STATE(2495), 2, sym__soft_line_break, sym__inline_whitespace, - STATE(2771), 2, + STATE(3562), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - ACTIONS(6810), 3, + ACTIONS(6670), 3, sym__value_specifier_token, anon_sym_SQUOTE_SQUOTE, anon_sym_DQUOTE_DQUOTE, - [105280] = 8, - ACTIONS(6680), 1, + [106916] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6816), 1, + ACTIONS(6676), 1, anon_sym_RPAREN, - ACTIONS(6818), 1, + ACTIONS(6678), 1, sym__whitespace, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3111), 2, + STATE(3209), 2, sym__soft_line_break, sym__inline_whitespace, - [105306] = 8, - ACTIONS(6680), 1, + [106942] = 7, + ACTIONS(6682), 1, + anon_sym_COLON, + ACTIONS(6684), 1, + anon_sym_DASH, + ACTIONS(6686), 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, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6822), 1, + ACTIONS(6690), 1, anon_sym_RPAREN, - ACTIONS(6824), 1, + ACTIONS(6692), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3250), 2, + STATE(3067), 2, sym__soft_line_break, sym__inline_whitespace, - [105332] = 8, - ACTIONS(6680), 1, + [106992] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6826), 1, + ACTIONS(6694), 1, anon_sym_RPAREN, - ACTIONS(6828), 1, + ACTIONS(6696), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3207), 2, + STATE(3099), 2, sym__soft_line_break, sym__inline_whitespace, - [105358] = 8, - ACTIONS(6680), 1, + [107018] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6830), 1, + ACTIONS(6698), 1, anon_sym_RPAREN, - ACTIONS(6832), 1, + ACTIONS(6700), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3156), 2, + STATE(3129), 2, sym__soft_line_break, sym__inline_whitespace, - [105384] = 7, - ACTIONS(6834), 1, - anon_sym_COLON, - ACTIONS(6836), 1, - anon_sym_DASH, - ACTIONS(6838), 1, - sym__whitespace, - STATE(2497), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2507), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(2662), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(6840), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [105408] = 8, - ACTIONS(6680), 1, + [107044] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6842), 1, + ACTIONS(6702), 1, anon_sym_RPAREN, - ACTIONS(6844), 1, + ACTIONS(6704), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3210), 2, + STATE(3153), 2, sym__soft_line_break, sym__inline_whitespace, - [105434] = 8, - ACTIONS(6680), 1, + [107070] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6846), 1, + ACTIONS(6706), 1, anon_sym_RPAREN, - ACTIONS(6848), 1, + ACTIONS(6708), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3159), 2, + STATE(3188), 2, sym__soft_line_break, sym__inline_whitespace, - [105460] = 8, - ACTIONS(6680), 1, + [107096] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6850), 1, + ACTIONS(6710), 1, anon_sym_RPAREN, - ACTIONS(6852), 1, + ACTIONS(6712), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3264), 2, + STATE(3140), 2, sym__soft_line_break, sym__inline_whitespace, - [105486] = 8, - ACTIONS(6680), 1, + [107122] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6854), 1, + ACTIONS(6714), 1, anon_sym_RPAREN, - ACTIONS(6856), 1, + ACTIONS(6716), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3201), 2, + STATE(3200), 2, sym__soft_line_break, sym__inline_whitespace, - [105512] = 8, - ACTIONS(6680), 1, + [107148] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6858), 1, + ACTIONS(6718), 1, anon_sym_RPAREN, - ACTIONS(6860), 1, + ACTIONS(6720), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3233), 2, + STATE(3166), 2, sym__soft_line_break, sym__inline_whitespace, - [105538] = 8, - ACTIONS(6680), 1, + [107174] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6862), 1, + ACTIONS(6722), 1, anon_sym_RPAREN, - ACTIONS(6864), 1, + ACTIONS(6724), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3140), 2, + STATE(3137), 2, sym__soft_line_break, sym__inline_whitespace, - [105564] = 8, - ACTIONS(6680), 1, + [107200] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6866), 1, + ACTIONS(6726), 1, anon_sym_RPAREN, - ACTIONS(6868), 1, + ACTIONS(6728), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3245), 2, + STATE(3169), 2, sym__soft_line_break, sym__inline_whitespace, - [105590] = 8, - ACTIONS(6680), 1, + [107226] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6870), 1, + ACTIONS(6730), 1, anon_sym_RPAREN, - ACTIONS(6872), 1, + ACTIONS(6732), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3191), 2, + STATE(3212), 2, sym__soft_line_break, sym__inline_whitespace, - [105616] = 8, - ACTIONS(6680), 1, + [107252] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6874), 1, + ACTIONS(6734), 1, anon_sym_RPAREN, - ACTIONS(6876), 1, + ACTIONS(6736), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3165), 2, + STATE(3143), 2, sym__soft_line_break, sym__inline_whitespace, - [105642] = 8, - ACTIONS(6680), 1, + [107278] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6878), 1, + ACTIONS(6738), 1, anon_sym_RPAREN, - ACTIONS(6880), 1, + ACTIONS(6740), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3143), 2, + STATE(3112), 2, sym__soft_line_break, sym__inline_whitespace, - [105668] = 8, - ACTIONS(6680), 1, + [107304] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6882), 1, + ACTIONS(6742), 1, anon_sym_RPAREN, - ACTIONS(6884), 1, + ACTIONS(6744), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3125), 2, + STATE(3115), 2, sym__soft_line_break, sym__inline_whitespace, - [105694] = 8, - ACTIONS(6680), 1, + [107330] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6886), 1, + ACTIONS(6746), 1, anon_sym_RPAREN, - ACTIONS(6888), 1, + ACTIONS(6748), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3218), 2, + STATE(3185), 2, sym__soft_line_break, sym__inline_whitespace, - [105720] = 8, - ACTIONS(6680), 1, + [107356] = 7, + ACTIONS(6750), 1, + anon_sym_COLON, + ACTIONS(6753), 1, + anon_sym_DASH, + ACTIONS(6756), 1, + sym__whitespace, + STATE(2436), 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, + ACTIONS(6759), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [107380] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6890), 1, + ACTIONS(6761), 1, anon_sym_RPAREN, - ACTIONS(6892), 1, + ACTIONS(6763), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3241), 2, + STATE(3203), 2, sym__soft_line_break, sym__inline_whitespace, - [105746] = 8, - ACTIONS(6680), 1, + [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, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [107430] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6894), 1, + ACTIONS(6769), 1, anon_sym_RPAREN, - ACTIONS(6896), 1, + ACTIONS(6771), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3265), 2, + STATE(3126), 2, sym__soft_line_break, sym__inline_whitespace, - [105772] = 8, - ACTIONS(6680), 1, + [107456] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6898), 1, + ACTIONS(6773), 1, anon_sym_RPAREN, - ACTIONS(6900), 1, + ACTIONS(6775), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3229), 2, + STATE(3172), 2, sym__soft_line_break, sym__inline_whitespace, - [105798] = 8, - ACTIONS(6680), 1, + [107482] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6902), 1, + ACTIONS(6777), 1, anon_sym_RPAREN, - ACTIONS(6904), 1, + ACTIONS(6779), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3174), 2, + STATE(3096), 2, sym__soft_line_break, sym__inline_whitespace, - [105824] = 8, + [107508] = 8, + ACTIONS(6540), 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, + sym__whitespace, + STATE(2492), 1, + aux_sym_target_repeat1, + STATE(2560), 1, + sym_shortcode, + STATE(3175), 2, + sym__soft_line_break, + sym__inline_whitespace, + [107534] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6906), 1, + ACTIONS(6785), 1, anon_sym_RPAREN, - ACTIONS(6908), 1, + ACTIONS(6787), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3285), 2, + STATE(3194), 2, sym__soft_line_break, sym__inline_whitespace, - [105850] = 3, - ACTIONS(6910), 1, + [107560] = 3, + ACTIONS(6789), 1, sym_block_continuation, - ACTIONS(3165), 3, + ACTIONS(2707), 3, sym_shortcode_name, aux_sym_shortcode_naked_string_token1, aux_sym_shortcode_naked_string_token2, - ACTIONS(3163), 5, + 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, - [105866] = 8, - ACTIONS(6680), 1, + [107576] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6912), 1, + ACTIONS(6791), 1, anon_sym_RPAREN, - ACTIONS(6914), 1, + ACTIONS(6793), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3177), 2, + STATE(3158), 2, sym__soft_line_break, sym__inline_whitespace, - [105892] = 8, - ACTIONS(6680), 1, + [107602] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6916), 1, + ACTIONS(6795), 1, anon_sym_RPAREN, - ACTIONS(6918), 1, + ACTIONS(6797), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3232), 2, + STATE(3083), 2, sym__soft_line_break, sym__inline_whitespace, - [105918] = 8, - ACTIONS(6680), 1, + [107628] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6920), 1, + ACTIONS(6799), 1, anon_sym_RPAREN, - ACTIONS(6922), 1, + ACTIONS(6801), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3117), 2, + STATE(3161), 2, sym__soft_line_break, sym__inline_whitespace, - [105944] = 8, - ACTIONS(6680), 1, + [107654] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6924), 1, + ACTIONS(6803), 1, anon_sym_RPAREN, - ACTIONS(6926), 1, + ACTIONS(6805), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3167), 2, + STATE(3123), 2, sym__soft_line_break, sym__inline_whitespace, - [105970] = 8, - ACTIONS(6680), 1, + [107680] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6928), 1, + ACTIONS(6807), 1, anon_sym_RPAREN, - ACTIONS(6930), 1, + ACTIONS(6809), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3215), 2, + STATE(3150), 2, sym__soft_line_break, sym__inline_whitespace, - [105996] = 8, - ACTIONS(6680), 1, + [107706] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6932), 1, + ACTIONS(6811), 1, anon_sym_RPAREN, - ACTIONS(6934), 1, + ACTIONS(6813), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3248), 2, + STATE(3179), 2, sym__soft_line_break, sym__inline_whitespace, - [106022] = 8, - ACTIONS(6680), 1, + [107732] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6936), 1, + ACTIONS(6815), 1, anon_sym_RPAREN, - ACTIONS(6938), 1, + ACTIONS(6817), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3154), 2, + STATE(3197), 2, sym__soft_line_break, sym__inline_whitespace, - [106048] = 7, - ACTIONS(6940), 1, - anon_sym_COLON, - ACTIONS(6943), 1, - anon_sym_DASH, - ACTIONS(6946), 1, - sym__whitespace, - STATE(2497), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2626), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3238), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(6949), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [106072] = 7, - ACTIONS(6834), 1, - anon_sym_COLON, - ACTIONS(6836), 1, - anon_sym_DASH, - ACTIONS(6951), 1, + [107758] = 8, + ACTIONS(6540), 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, sym__whitespace, - STATE(2497), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2507), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(2595), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(6953), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [106096] = 8, + STATE(2492), 1, + aux_sym_target_repeat1, + STATE(2560), 1, + sym_shortcode, + STATE(3182), 2, + sym__soft_line_break, + sym__inline_whitespace, + [107784] = 8, + ACTIONS(6540), 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, + sym__whitespace, + STATE(2492), 1, + aux_sym_target_repeat1, + STATE(2560), 1, + sym_shortcode, + STATE(3134), 2, + sym__soft_line_break, + sym__inline_whitespace, + [107810] = 8, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(6814), 1, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6955), 1, + ACTIONS(6827), 1, anon_sym_RPAREN, - ACTIONS(6957), 1, + ACTIONS(6829), 1, sym__whitespace, - STATE(2548), 1, + STATE(2492), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3128), 2, + STATE(3120), 2, sym__soft_line_break, sym__inline_whitespace, - [106122] = 7, - ACTIONS(6834), 1, + [107836] = 7, + ACTIONS(6682), 1, anon_sym_COLON, - ACTIONS(6836), 1, + ACTIONS(6684), 1, anon_sym_DASH, - ACTIONS(6959), 1, + ACTIONS(6831), 1, sym__whitespace, - STATE(2497), 1, + STATE(2436), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2507), 1, + STATE(2465), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(2609), 1, + STATE(2617), 1, sym_pipe_table_delimiter_cell, - ACTIONS(6961), 3, + ACTIONS(6833), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [106146] = 8, - ACTIONS(6680), 1, - sym__soft_line_ending, - ACTIONS(6814), 1, + [107860] = 7, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6963), 1, - anon_sym_RPAREN, - ACTIONS(6965), 1, + ACTIONS(6835), 1, sym__whitespace, - STATE(2548), 1, + ACTIONS(6837), 1, + sym__soft_line_ending, + STATE(2427), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3204), 2, + STATE(2723), 2, sym__soft_line_break, sym__inline_whitespace, - [106172] = 8, - ACTIONS(6680), 1, - sym__soft_line_ending, - ACTIONS(6814), 1, + [107883] = 7, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6967), 1, - anon_sym_RPAREN, - ACTIONS(6969), 1, + ACTIONS(6837), 1, + sym__soft_line_ending, + ACTIONS(6839), 1, sym__whitespace, - STATE(2548), 1, + STATE(2433), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3188), 2, + STATE(2681), 2, sym__soft_line_break, sym__inline_whitespace, - [106198] = 8, - ACTIONS(6680), 1, - sym__soft_line_ending, - ACTIONS(6814), 1, + [107906] = 7, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6971), 1, - anon_sym_RPAREN, - ACTIONS(6973), 1, + ACTIONS(6837), 1, + sym__soft_line_ending, + ACTIONS(6841), 1, sym__whitespace, - STATE(2548), 1, + STATE(2428), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(3261), 2, + STATE(2704), 2, sym__soft_line_break, sym__inline_whitespace, - [106224] = 7, - ACTIONS(6814), 1, + [107929] = 7, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6975), 1, - sym__whitespace, - ACTIONS(6977), 1, + ACTIONS(6837), 1, sym__soft_line_ending, - STATE(2475), 1, + ACTIONS(6843), 1, + sym__whitespace, + STATE(2450), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(2767), 2, + STATE(2621), 2, sym__soft_line_break, sym__inline_whitespace, - [106247] = 4, - ACTIONS(6979), 1, + [107952] = 4, + ACTIONS(6845), 1, anon_sym_COLON, - ACTIONS(6981), 1, + ACTIONS(6847), 1, anon_sym_DASH, - STATE(2523), 1, + STATE(2471), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(6983), 5, + ACTIONS(6849), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, sym__pipe_table_delimiter, sym__whitespace, - [106264] = 7, - ACTIONS(6814), 1, + [107969] = 6, + ACTIONS(6546), 1, + sym__key_specifier_token, + ACTIONS(6851), 1, + anon_sym_RBRACE, + ACTIONS(6853), 1, + sym__whitespace, + ACTIONS(6855), 1, + sym__soft_line_ending, + STATE(2469), 2, + sym__commonmark_key_value_specifier, + aux_sym__commonmark_specifier_start_with_kv_repeat1, + STATE(2581), 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, + sym__soft_line_ending, + ACTIONS(6857), 1, + sym__whitespace, + STATE(2435), 1, + aux_sym_target_repeat1, + STATE(2560), 1, + sym_shortcode, + STATE(2716), 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(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6977), 1, + ACTIONS(6837), 1, sym__soft_line_ending, - ACTIONS(6985), 1, + ACTIONS(6859), 1, sym__whitespace, - STATE(2469), 1, + STATE(2439), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(2745), 2, + STATE(2684), 2, sym__soft_line_break, sym__inline_whitespace, - [106287] = 4, - ACTIONS(6981), 1, + [108049] = 4, + ACTIONS(6847), 1, anon_sym_DASH, - ACTIONS(6987), 1, + ACTIONS(6861), 1, anon_sym_COLON, - STATE(2523), 1, + STATE(2471), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(6989), 5, + ACTIONS(6863), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, sym__pipe_table_delimiter, sym__whitespace, - [106304] = 7, - ACTIONS(6814), 1, + [108066] = 7, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6977), 1, + ACTIONS(6837), 1, sym__soft_line_ending, - ACTIONS(6991), 1, + ACTIONS(6865), 1, sym__whitespace, - STATE(2470), 1, + STATE(2443), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(2758), 2, + STATE(2721), 2, sym__soft_line_break, sym__inline_whitespace, - [106327] = 6, - ACTIONS(6686), 1, - sym__key_specifier_token, - ACTIONS(6993), 1, - anon_sym_RBRACE, - ACTIONS(6995), 1, - sym__whitespace, - ACTIONS(6997), 1, - sym__soft_line_ending, - STATE(2519), 2, - sym__commonmark_key_value_specifier, - aux_sym__commonmark_specifier_start_with_kv_repeat1, - STATE(2630), 2, - sym__soft_line_break, - sym__inline_whitespace, - [106348] = 7, - ACTIONS(6814), 1, + [108089] = 7, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6977), 1, + ACTIONS(6837), 1, sym__soft_line_ending, - ACTIONS(6999), 1, + ACTIONS(6867), 1, sym__whitespace, - STATE(2487), 1, + STATE(2426), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(2763), 2, + STATE(2688), 2, sym__soft_line_break, sym__inline_whitespace, - [106371] = 8, - ACTIONS(7001), 1, + [108112] = 8, + ACTIONS(6869), 1, anon_sym_COLON, - ACTIONS(7003), 1, + ACTIONS(6871), 1, anon_sym_DASH, - ACTIONS(7005), 1, + ACTIONS(6873), 1, sym__whitespace, - ACTIONS(7007), 1, + ACTIONS(6875), 1, sym__pipe_table_delimiter, - STATE(2471), 1, + STATE(2420), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2558), 1, + STATE(2537), 1, sym_pipe_table_delimiter_row, - STATE(2626), 1, + STATE(2552), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3238), 1, + STATE(3222), 1, sym_pipe_table_delimiter_cell, - [106396] = 7, - ACTIONS(6814), 1, - aux_sym_target_token2, - ACTIONS(6820), 1, - sym__shortcode_open, - ACTIONS(6977), 1, - sym__soft_line_ending, - ACTIONS(7009), 1, + [108137] = 6, + ACTIONS(6877), 1, + anon_sym_RBRACE, + ACTIONS(6879), 1, sym__whitespace, - STATE(2484), 1, - aux_sym_target_repeat1, - STATE(2655), 1, - sym_shortcode, - STATE(2748), 2, + ACTIONS(6882), 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, sym__soft_line_break, sym__inline_whitespace, - [106419] = 7, - ACTIONS(6814), 1, - aux_sym_target_token2, - ACTIONS(6820), 1, - sym__shortcode_open, - ACTIONS(6977), 1, - sym__soft_line_ending, - ACTIONS(7011), 1, + [108158] = 6, + ACTIONS(6546), 1, + sym__key_specifier_token, + ACTIONS(6851), 1, + anon_sym_RBRACE, + ACTIONS(6888), 1, sym__whitespace, - STATE(2502), 1, - aux_sym_target_repeat1, - STATE(2655), 1, - sym_shortcode, - STATE(2765), 2, + ACTIONS(6890), 1, + sym__soft_line_ending, + STATE(2469), 2, + sym__commonmark_key_value_specifier, + aux_sym__commonmark_specifier_start_with_kv_repeat1, + STATE(2834), 2, sym__soft_line_break, sym__inline_whitespace, - [106442] = 8, - ACTIONS(7001), 1, - anon_sym_COLON, - ACTIONS(7003), 1, + [108179] = 3, + ACTIONS(6894), 1, anon_sym_DASH, - ACTIONS(7005), 1, - sym__whitespace, - ACTIONS(7007), 1, - sym__pipe_table_delimiter, STATE(2471), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2568), 1, - sym_pipe_table_delimiter_row, - STATE(2626), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3238), 1, - sym_pipe_table_delimiter_cell, - [106467] = 8, - ACTIONS(7001), 1, - anon_sym_COLON, - ACTIONS(7003), 1, - anon_sym_DASH, - ACTIONS(7005), 1, - sym__whitespace, - ACTIONS(7007), 1, + ACTIONS(6892), 6, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, sym__pipe_table_delimiter, - STATE(2471), 1, - aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2575), 1, - sym_pipe_table_delimiter_row, - STATE(2626), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3238), 1, - sym_pipe_table_delimiter_cell, - [106492] = 7, - ACTIONS(6814), 1, - aux_sym_target_token2, - ACTIONS(6820), 1, - sym__shortcode_open, - ACTIONS(6977), 1, - sym__soft_line_ending, - ACTIONS(7013), 1, + anon_sym_COLON, sym__whitespace, - STATE(2492), 1, - aux_sym_target_repeat1, - STATE(2655), 1, - sym_shortcode, - STATE(2742), 2, - sym__soft_line_break, - sym__inline_whitespace, - [106515] = 2, - ACTIONS(3454), 3, - sym_shortcode_name, - aux_sym_shortcode_naked_string_token1, - aux_sym_shortcode_naked_string_token2, - ACTIONS(3452), 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, - [106528] = 7, - ACTIONS(6814), 1, + [108194] = 7, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6977), 1, + ACTIONS(6837), 1, sym__soft_line_ending, - ACTIONS(7015), 1, + ACTIONS(6897), 1, sym__whitespace, - STATE(2496), 1, + STATE(2440), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(2740), 2, + STATE(2707), 2, sym__soft_line_break, sym__inline_whitespace, - [106551] = 6, - ACTIONS(6686), 1, + [108217] = 6, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6997), 1, + ACTIONS(6855), 1, sym__soft_line_ending, - ACTIONS(7017), 1, - anon_sym_RBRACE, - ACTIONS(7019), 1, - sym__whitespace, - STATE(2529), 2, - sym__commonmark_key_value_specifier, - aux_sym__commonmark_specifier_start_with_kv_repeat1, - STATE(2599), 2, - sym__soft_line_break, - sym__inline_whitespace, - [106572] = 6, - ACTIONS(6686), 1, - sym__key_specifier_token, - ACTIONS(7017), 1, + ACTIONS(6899), 1, anon_sym_RBRACE, - ACTIONS(7021), 1, + ACTIONS(6901), 1, sym__whitespace, - ACTIONS(7023), 1, - sym__soft_line_ending, - STATE(2529), 2, + STATE(2461), 2, sym__commonmark_key_value_specifier, aux_sym__commonmark_specifier_start_with_kv_repeat1, - STATE(2882), 2, + STATE(2557), 2, sym__soft_line_break, sym__inline_whitespace, - [106593] = 7, - ACTIONS(6814), 1, + [108238] = 7, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6977), 1, + ACTIONS(6837), 1, sym__soft_line_ending, - ACTIONS(7025), 1, + ACTIONS(6903), 1, sym__whitespace, - STATE(2488), 1, + STATE(2454), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(2751), 2, + STATE(2683), 2, sym__soft_line_break, sym__inline_whitespace, - [106616] = 7, - ACTIONS(6814), 1, + [108261] = 7, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6977), 1, + ACTIONS(6837), 1, sym__soft_line_ending, - ACTIONS(7027), 1, + ACTIONS(6905), 1, sym__whitespace, - STATE(2494), 1, + STATE(2453), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(2768), 2, + STATE(2686), 2, sym__soft_line_break, sym__inline_whitespace, - [106639] = 3, - ACTIONS(7031), 1, + [108284] = 8, + ACTIONS(6869), 1, + anon_sym_COLON, + ACTIONS(6871), 1, anon_sym_DASH, - STATE(2523), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(7029), 6, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, + ACTIONS(6873), 1, + 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, sym__whitespace, - [106654] = 6, - ACTIONS(6686), 1, - sym__key_specifier_token, - ACTIONS(6993), 1, - anon_sym_RBRACE, - ACTIONS(7023), 1, - sym__soft_line_ending, - ACTIONS(7034), 1, - sym__whitespace, - STATE(2520), 2, - sym__commonmark_key_value_specifier, - aux_sym__commonmark_specifier_start_with_kv_repeat1, - STATE(2908), 2, - sym__soft_line_break, - sym__inline_whitespace, - [106675] = 7, - ACTIONS(6814), 1, + ACTIONS(6875), 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(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6977), 1, + ACTIONS(6837), 1, sym__soft_line_ending, - ACTIONS(7036), 1, + ACTIONS(6907), 1, sym__whitespace, - STATE(2482), 1, + STATE(2445), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(2754), 2, + STATE(2700), 2, sym__soft_line_break, sym__inline_whitespace, - [106698] = 7, - ACTIONS(6814), 1, - aux_sym_target_token2, - ACTIONS(6820), 1, - sym__shortcode_open, - ACTIONS(6977), 1, + [108357] = 6, + ACTIONS(6546), 1, + sym__key_specifier_token, + ACTIONS(6890), 1, sym__soft_line_ending, - ACTIONS(7038), 1, + ACTIONS(6899), 1, + anon_sym_RBRACE, + ACTIONS(6909), 1, sym__whitespace, - STATE(2486), 1, - aux_sym_target_repeat1, - STATE(2655), 1, - sym_shortcode, - STATE(2769), 2, + STATE(2470), 2, + sym__commonmark_key_value_specifier, + aux_sym__commonmark_specifier_start_with_kv_repeat1, + STATE(2811), 2, sym__soft_line_break, sym__inline_whitespace, - [106721] = 7, - ACTIONS(6814), 1, + [108378] = 7, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6977), 1, + ACTIONS(6837), 1, sym__soft_line_ending, - ACTIONS(7040), 1, + ACTIONS(6911), 1, sym__whitespace, - STATE(2476), 1, + STATE(2419), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(2732), 2, + STATE(2725), 2, sym__soft_line_break, sym__inline_whitespace, - [106744] = 7, - ACTIONS(6814), 1, + [108401] = 7, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6977), 1, + ACTIONS(6837), 1, sym__soft_line_ending, - ACTIONS(7042), 1, + ACTIONS(6913), 1, sym__whitespace, - STATE(2478), 1, + STATE(2441), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(2772), 2, - sym__soft_line_break, - sym__inline_whitespace, - [106767] = 6, - ACTIONS(7044), 1, - anon_sym_RBRACE, - ACTIONS(7046), 1, - sym__whitespace, - ACTIONS(7049), 1, - sym__soft_line_ending, - ACTIONS(7052), 1, - sym__key_specifier_token, - STATE(2529), 2, - sym__commonmark_key_value_specifier, - aux_sym__commonmark_specifier_start_with_kv_repeat1, - STATE(3181), 2, + STATE(2673), 2, sym__soft_line_break, sym__inline_whitespace, - [106788] = 7, - ACTIONS(6814), 1, + [108424] = 7, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6977), 1, + ACTIONS(6837), 1, sym__soft_line_ending, - ACTIONS(7055), 1, + ACTIONS(6915), 1, sym__whitespace, - STATE(2477), 1, + STATE(2449), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(2756), 2, + STATE(2694), 2, sym__soft_line_break, sym__inline_whitespace, - [106811] = 7, - ACTIONS(6814), 1, + [108447] = 7, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - ACTIONS(6977), 1, + ACTIONS(6837), 1, sym__soft_line_ending, - ACTIONS(7057), 1, + ACTIONS(6917), 1, sym__whitespace, - STATE(2503), 1, + STATE(2446), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - STATE(2773), 2, + STATE(2695), 2, sym__soft_line_break, sym__inline_whitespace, - [106834] = 6, - ACTIONS(7059), 1, + [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(7061), 1, + ACTIONS(6921), 1, sym__line_ending, - ACTIONS(7063), 1, + ACTIONS(6923), 1, sym__block_close, - ACTIONS(7065), 1, + ACTIONS(6925), 1, sym__fenced_code_block_end_backtick, - STATE(3255), 1, + STATE(3047), 1, sym_code_fence_content, - STATE(2573), 2, + STATE(2509), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [106854] = 5, - ACTIONS(6834), 1, + [108500] = 5, + ACTIONS(6682), 1, anon_sym_COLON, - ACTIONS(6836), 1, + ACTIONS(6684), 1, anon_sym_DASH, - STATE(2507), 1, + STATE(2465), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(2608), 1, + STATE(2615), 1, sym_pipe_table_delimiter_cell, - ACTIONS(6961), 3, + ACTIONS(6833), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [106872] = 6, - ACTIONS(7059), 1, - sym__code_line, - ACTIONS(7061), 1, + [108518] = 5, + ACTIONS(6682), 1, + anon_sym_COLON, + ACTIONS(6684), 1, + anon_sym_DASH, + STATE(2465), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(2612), 1, + sym_pipe_table_delimiter_cell, + ACTIONS(6927), 3, sym__line_ending, - ACTIONS(7067), 1, - sym__block_close, - ACTIONS(7069), 1, - sym__fenced_code_block_end_backtick, - STATE(3251), 1, - sym_code_fence_content, - STATE(2573), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [106892] = 4, - ACTIONS(6790), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6792), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(2771), 2, - sym__commonmark_single_quote_string, - sym__commonmark_double_quote_string, - ACTIONS(6810), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [106908] = 1, - ACTIONS(3220), 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, - [106918] = 4, - ACTIONS(6790), 1, + sym__eof, + sym__pipe_table_line_ending, + [108536] = 4, + ACTIONS(6664), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6792), 1, + ACTIONS(6666), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(2677), 2, + STATE(3562), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - ACTIONS(7071), 3, + ACTIONS(6670), 3, sym__value_specifier_token, anon_sym_SQUOTE_SQUOTE, anon_sym_DQUOTE_DQUOTE, - [106934] = 2, - ACTIONS(7073), 1, - sym_block_continuation, - ACTIONS(3163), 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, - [106946] = 6, - ACTIONS(7059), 1, + [108552] = 5, + ACTIONS(6682), 1, + 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(7061), 1, + ACTIONS(6921), 1, sym__line_ending, - ACTIONS(7075), 1, + ACTIONS(6929), 1, sym__block_close, - ACTIONS(7077), 1, + ACTIONS(6931), 1, sym__fenced_code_block_end_backtick, - STATE(3182), 1, + STATE(3189), 1, sym_code_fence_content, - STATE(2573), 2, + STATE(2509), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [106966] = 6, - ACTIONS(7059), 1, + [108590] = 6, + ACTIONS(6919), 1, sym__code_line, - ACTIONS(7061), 1, + ACTIONS(6921), 1, sym__line_ending, - ACTIONS(7079), 1, + ACTIONS(6933), 1, sym__block_close, - ACTIONS(7081), 1, + 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(3120), 1, + STATE(3130), 1, sym_code_fence_content, - STATE(2573), 2, + STATE(2509), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [106986] = 4, - ACTIONS(6800), 1, + [108668] = 4, + ACTIONS(6664), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(6802), 1, + ACTIONS(6666), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3334), 2, + STATE(3770), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - ACTIONS(6798), 3, + ACTIONS(6953), 3, sym__value_specifier_token, anon_sym_SQUOTE_SQUOTE, anon_sym_DQUOTE_DQUOTE, - [107002] = 6, - ACTIONS(7059), 1, + [108684] = 6, + ACTIONS(6919), 1, sym__code_line, - ACTIONS(7061), 1, + ACTIONS(6921), 1, sym__line_ending, - ACTIONS(7083), 1, + ACTIONS(6955), 1, sym__block_close, - ACTIONS(7085), 1, + ACTIONS(6957), 1, sym__fenced_code_block_end_backtick, - STATE(3221), 1, + STATE(3154), 1, sym_code_fence_content, - STATE(2573), 2, + STATE(2509), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [107022] = 6, - ACTIONS(7059), 1, + [108704] = 6, + ACTIONS(6919), 1, sym__code_line, - ACTIONS(7061), 1, + ACTIONS(6921), 1, sym__line_ending, - ACTIONS(7087), 1, + ACTIONS(6959), 1, sym__block_close, - ACTIONS(7089), 1, + ACTIONS(6961), 1, sym__fenced_code_block_end_backtick, - STATE(3192), 1, + STATE(3101), 1, sym_code_fence_content, - STATE(2573), 2, + STATE(2509), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [107042] = 5, - ACTIONS(6834), 1, - anon_sym_COLON, - ACTIONS(6836), 1, - anon_sym_DASH, - STATE(2507), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(2598), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(6953), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [107060] = 6, - ACTIONS(7059), 1, + [108724] = 6, + ACTIONS(6919), 1, sym__code_line, - ACTIONS(7061), 1, + ACTIONS(6921), 1, sym__line_ending, - ACTIONS(7091), 1, + ACTIONS(6963), 1, sym__block_close, - ACTIONS(7093), 1, + ACTIONS(6965), 1, sym__fenced_code_block_end_backtick, - STATE(3178), 1, + STATE(3063), 1, sym_code_fence_content, - STATE(2573), 2, + STATE(2509), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [107080] = 5, - ACTIONS(6834), 1, - anon_sym_COLON, - ACTIONS(6836), 1, - anon_sym_DASH, - STATE(2507), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(2618), 1, - sym_pipe_table_delimiter_cell, - ACTIONS(7095), 3, + [108744] = 6, + ACTIONS(6919), 1, + sym__code_line, + ACTIONS(6921), 1, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [107098] = 4, - ACTIONS(6800), 1, + 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(6802), 1, + ACTIONS(6652), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3549), 2, + STATE(2699), 2, sym__commonmark_single_quote_string, sym__commonmark_double_quote_string, - ACTIONS(7097), 3, + ACTIONS(6971), 3, sym__value_specifier_token, anon_sym_SQUOTE_SQUOTE, anon_sym_DQUOTE_DQUOTE, - [107114] = 5, - ACTIONS(7099), 1, - aux_sym_target_token2, - ACTIONS(7104), 1, - sym__shortcode_open, - STATE(2548), 1, - aux_sym_target_repeat1, - STATE(2655), 1, - sym_shortcode, - ACTIONS(7102), 3, - sym__soft_line_ending, - anon_sym_RPAREN, - sym__whitespace, - [107132] = 6, - ACTIONS(7059), 1, - sym__code_line, - ACTIONS(7061), 1, + [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, + 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, + [108808] = 6, + ACTIONS(6921), 1, sym__line_ending, - ACTIONS(7107), 1, - sym__block_close, - ACTIONS(7109), 1, - sym__fenced_code_block_end_backtick, - STATE(3116), 1, - sym_code_fence_content, - STATE(2573), 2, + ACTIONS(6975), 1, + anon_sym_LBRACE, + ACTIONS(6977), 1, + sym__commonmark_naked_value, + ACTIONS(6979), 1, + sym__whitespace, + STATE(2493), 1, sym__newline, - aux_sym_code_fence_content_repeat1, - [107152] = 6, - ACTIONS(7059), 1, + 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(7061), 1, + ACTIONS(6995), 1, sym__line_ending, - ACTIONS(7111), 1, + ACTIONS(6998), 2, sym__block_close, - ACTIONS(7113), 1, sym__fenced_code_block_end_backtick, - STATE(3147), 1, - sym_code_fence_content, - STATE(2573), 2, + STATE(2505), 2, sym__newline, aux_sym_code_fence_content_repeat1, - [107172] = 6, - ACTIONS(7001), 1, + [108859] = 6, + ACTIONS(6869), 1, anon_sym_COLON, - ACTIONS(7003), 1, + ACTIONS(6871), 1, anon_sym_DASH, - ACTIONS(7115), 1, + ACTIONS(7000), 1, sym__whitespace, - STATE(2500), 1, + STATE(2438), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2626), 1, + STATE(2552), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3238), 1, + STATE(3222), 1, sym_pipe_table_delimiter_cell, - [107191] = 5, - ACTIONS(7117), 1, + [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, + 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(7119), 1, + ACTIONS(7014), 1, sym__whitespace, - ACTIONS(7121), 1, - sym__soft_line_ending, - STATE(2555), 1, - aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(2749), 2, - sym__soft_line_break, - sym__inline_whitespace, - [107208] = 5, - ACTIONS(7117), 1, - anon_sym_RBRACE, - ACTIONS(7121), 1, + ACTIONS(7016), 1, sym__soft_line_ending, - ACTIONS(7123), 1, - sym__whitespace, - STATE(2555), 1, + STATE(2523), 1, aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(2703), 2, + STATE(2639), 2, sym__soft_line_break, sym__inline_whitespace, - [107225] = 5, - ACTIONS(7125), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(7127), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7130), 1, - aux_sym__commonmark_double_quote_string_token4, - ACTIONS(7133), 1, - sym__shortcode_open, - STATE(2554), 2, - sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [107242] = 5, - ACTIONS(7136), 1, + [108942] = 5, + ACTIONS(7018), 1, anon_sym_RBRACE, - ACTIONS(7138), 1, + ACTIONS(7020), 1, sym__whitespace, - ACTIONS(7141), 1, + ACTIONS(7023), 1, sym__soft_line_ending, - STATE(2555), 1, + STATE(2511), 1, aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(3943), 2, + STATE(3290), 2, sym__soft_line_break, sym__inline_whitespace, - [107259] = 5, - ACTIONS(6686), 1, + [108959] = 5, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(7144), 1, + ACTIONS(7026), 1, anon_sym_RBRACE, - ACTIONS(7146), 1, + ACTIONS(7028), 1, aux_sym__commonmark_specifier_start_with_class_token1, - STATE(2509), 1, + STATE(2473), 1, sym__commonmark_key_value_specifier, - STATE(2587), 2, + STATE(2575), 2, sym__commonmark_specifier_start_with_class, sym__commonmark_specifier_start_with_kv, - [107276] = 5, - ACTIONS(7121), 1, - sym__soft_line_ending, - ACTIONS(7148), 1, - anon_sym_RBRACE, - ACTIONS(7150), 1, - sym__whitespace, - STATE(2553), 1, - aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(2761), 2, - sym__soft_line_break, - sym__inline_whitespace, - [107293] = 6, - ACTIONS(113), 1, + [108976] = 6, + ACTIONS(181), 1, sym__line_ending, - ACTIONS(7152), 1, - sym__eof, - ACTIONS(7154), 1, + ACTIONS(7004), 1, sym__pipe_table_line_ending, - STATE(131), 1, + ACTIONS(7030), 1, + sym__eof, + STATE(132), 1, sym__pipe_table_newline, - STATE(633), 1, + STATE(321), 1, sym__newline, - STATE(2584), 1, + STATE(2518), 1, aux_sym_pipe_table_repeat1, - [107312] = 1, - ACTIONS(3452), 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, - [107321] = 6, - ACTIONS(7001), 1, + [108995] = 6, + ACTIONS(6869), 1, anon_sym_COLON, - ACTIONS(7003), 1, + ACTIONS(6871), 1, anon_sym_DASH, - ACTIONS(7115), 1, + ACTIONS(7000), 1, sym__whitespace, - STATE(2498), 1, + STATE(2455), 1, aux_sym_pipe_table_delimiter_row_repeat1, - STATE(2626), 1, + STATE(2552), 1, aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3238), 1, + STATE(3222), 1, sym_pipe_table_delimiter_cell, - [107340] = 5, - ACTIONS(6686), 1, - sym__key_specifier_token, - ACTIONS(7146), 1, - aux_sym__commonmark_specifier_start_with_class_token1, - ACTIONS(7156), 1, - anon_sym_RBRACE, - STATE(2509), 1, - sym__commonmark_key_value_specifier, - STATE(2640), 2, - sym__commonmark_specifier_start_with_class, - sym__commonmark_specifier_start_with_kv, - [107357] = 6, - ACTIONS(7061), 1, + [109014] = 6, + ACTIONS(6921), 1, sym__line_ending, - ACTIONS(7158), 1, + ACTIONS(6975), 1, anon_sym_LBRACE, - ACTIONS(7160), 1, + ACTIONS(7032), 1, sym__commonmark_naked_value, - ACTIONS(7162), 1, + ACTIONS(7034), 1, sym__whitespace, - STATE(2542), 1, + STATE(2498), 1, sym__newline, - STATE(3119), 1, + STATE(3068), 1, sym_attribute_specifier, - [107376] = 6, - ACTIONS(183), 1, + [109033] = 6, + ACTIONS(25), 1, sym__line_ending, - ACTIONS(7154), 1, + ACTIONS(7004), 1, sym__pipe_table_line_ending, - ACTIONS(7164), 1, + ACTIONS(7036), 1, sym__eof, - STATE(128), 1, + STATE(131), 1, sym__pipe_table_newline, - STATE(385), 1, + STATE(521), 1, sym__newline, - STATE(2597), 1, + STATE(2591), 1, aux_sym_pipe_table_repeat1, - [107395] = 1, - ACTIONS(6949), 6, + [109052] = 1, + ACTIONS(6759), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, anon_sym_COLON, anon_sym_DASH, sym__whitespace, - [107404] = 4, - ACTIONS(7166), 1, - sym__code_line, - ACTIONS(7169), 1, + [109061] = 6, + ACTIONS(181), 1, sym__line_ending, - ACTIONS(7172), 2, - sym__block_close, - sym__fenced_code_block_end_backtick, - STATE(2565), 2, + 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, - aux_sym_code_fence_content_repeat1, - [107419] = 5, - ACTIONS(7121), 1, - sym__soft_line_ending, - ACTIONS(7148), 1, - anon_sym_RBRACE, - ACTIONS(7174), 1, - sym__whitespace, - STATE(2552), 1, - aux_sym__commonmark_specifier_start_with_class_repeat1, - STATE(2741), 2, - sym__soft_line_break, - sym__inline_whitespace, - [107436] = 3, - ACTIONS(7176), 1, - sym_block_continuation, - ACTIONS(3165), 2, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(3163), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [107449] = 6, - ACTIONS(183), 1, - sym__line_ending, - ACTIONS(7154), 1, - sym__pipe_table_line_ending, - ACTIONS(7178), 1, - sym__eof, - STATE(133), 1, - sym__pipe_table_newline, - STATE(375), 1, - sym__newline, - STATE(2563), 1, + STATE(2591), 1, aux_sym_pipe_table_repeat1, - [107468] = 5, - ACTIONS(7180), 1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(7182), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7184), 1, - aux_sym__commonmark_double_quote_string_token4, - ACTIONS(7186), 1, + [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(2554), 2, + STATE(2519), 2, sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [107485] = 5, - ACTIONS(7188), 1, + aux_sym__commonmark_single_quote_string_repeat1, + [109097] = 5, + ACTIONS(7051), 1, aux_sym__commonmark_single_quote_string_token1, - ACTIONS(7190), 1, + ACTIONS(7053), 1, aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7192), 1, + ACTIONS(7055), 1, aux_sym__commonmark_single_quote_string_token4, - ACTIONS(7194), 1, + ACTIONS(7057), 1, sym__shortcode_open, - STATE(2577), 2, + STATE(2529), 2, sym_shortcode, aux_sym__commonmark_single_quote_string_repeat1, - [107502] = 5, - ACTIONS(7186), 1, - sym__shortcode_open, - ACTIONS(7196), 1, + [109114] = 5, + ACTIONS(7059), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(7198), 1, + ACTIONS(7061), 1, aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7200), 1, + ACTIONS(7063), 1, aux_sym__commonmark_double_quote_string_token4, - STATE(2578), 2, - sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [107519] = 5, - ACTIONS(7194), 1, + ACTIONS(7065), 1, sym__shortcode_open, - ACTIONS(7202), 1, - aux_sym__commonmark_single_quote_string_token1, - ACTIONS(7204), 1, - aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7206), 1, - aux_sym__commonmark_single_quote_string_token4, - STATE(2580), 2, + STATE(2530), 2, sym_shortcode, - aux_sym__commonmark_single_quote_string_repeat1, - [107536] = 4, - ACTIONS(7061), 1, - sym__line_ending, - ACTIONS(7208), 1, - sym__code_line, - ACTIONS(7210), 2, - sym__block_close, - sym__fenced_code_block_end_backtick, - STATE(2565), 2, - sym__newline, - aux_sym_code_fence_content_repeat1, - [107551] = 1, - ACTIONS(7212), 6, + aux_sym__commonmark_double_quote_string_repeat1, + [109131] = 5, + ACTIONS(6546), 1, + sym__key_specifier_token, + ACTIONS(7028), 1, + aux_sym__commonmark_specifier_start_with_class_token1, + ACTIONS(7067), 1, + anon_sym_RBRACE, + STATE(2473), 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, + 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, + sym__soft_line_break, + sym__inline_whitespace, + [109165] = 1, + ACTIONS(7073), 6, sym__line_ending, sym__eof, sym__pipe_table_line_ending, anon_sym_COLON, anon_sym_DASH, sym__whitespace, - [107560] = 6, - ACTIONS(27), 1, + [109174] = 6, + ACTIONS(6921), 1, sym__line_ending, - ACTIONS(7154), 1, + ACTIONS(6975), 1, + anon_sym_LBRACE, + ACTIONS(7075), 1, + sym__commonmark_naked_value, + ACTIONS(7077), 1, + sym__whitespace, + STATE(2494), 1, + sym__newline, + STATE(3087), 1, + sym_attribute_specifier, + [109193] = 6, + ACTIONS(111), 1, + sym__line_ending, + ACTIONS(7004), 1, sym__pipe_table_line_ending, - ACTIONS(7214), 1, + ACTIONS(7079), 1, sym__eof, - STATE(130), 1, + STATE(129), 1, sym__pipe_table_newline, - STATE(516), 1, + STATE(541), 1, sym__newline, - STATE(2581), 1, + STATE(2591), 1, aux_sym_pipe_table_repeat1, - [107579] = 5, - ACTIONS(7216), 1, + [109212] = 5, + ACTIONS(7012), 1, + anon_sym_RBRACE, + ACTIONS(7016), 1, + sym__soft_line_ending, + ACTIONS(7081), 1, + sym__whitespace, + STATE(2528), 1, + aux_sym__commonmark_specifier_start_with_class_repeat1, + STATE(2687), 2, + sym__soft_line_break, + sym__inline_whitespace, + [109229] = 5, + ACTIONS(7016), 1, + sym__soft_line_ending, + ACTIONS(7069), 1, + anon_sym_RBRACE, + ACTIONS(7083), 1, + sym__whitespace, + STATE(2511), 1, + aux_sym__commonmark_specifier_start_with_class_repeat1, + STATE(2697), 2, + 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(7218), 1, + ACTIONS(7087), 1, aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7221), 1, + ACTIONS(7089), 1, aux_sym__commonmark_single_quote_string_token4, - ACTIONS(7224), 1, - sym__shortcode_open, - STATE(2576), 2, + STATE(2519), 2, sym_shortcode, aux_sym__commonmark_single_quote_string_repeat1, - [107596] = 5, - ACTIONS(7194), 1, + [109263] = 5, + ACTIONS(7065), 1, sym__shortcode_open, - ACTIONS(7227), 1, + 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(7229), 1, + ACTIONS(7099), 1, aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7231), 1, + ACTIONS(7101), 1, aux_sym__commonmark_single_quote_string_token4, - STATE(2576), 2, + STATE(2533), 2, sym_shortcode, aux_sym__commonmark_single_quote_string_repeat1, - [107613] = 5, - ACTIONS(7182), 1, - aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7184), 1, - aux_sym__commonmark_double_quote_string_token4, - ACTIONS(7186), 1, - sym__shortcode_open, - ACTIONS(7233), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(2554), 2, - sym_shortcode, - aux_sym__commonmark_double_quote_string_repeat1, - [107630] = 5, - ACTIONS(7186), 1, + [109297] = 5, + ACTIONS(7065), 1, sym__shortcode_open, - ACTIONS(7235), 1, + ACTIONS(7103), 1, aux_sym__commonmark_double_quote_string_token1, - ACTIONS(7237), 1, + ACTIONS(7105), 1, aux_sym__commonmark_double_quote_string_token3, - ACTIONS(7239), 1, + ACTIONS(7107), 1, aux_sym__commonmark_double_quote_string_token4, - STATE(2569), 2, + STATE(2534), 2, sym_shortcode, aux_sym__commonmark_double_quote_string_repeat1, - [107647] = 5, - ACTIONS(7194), 1, + [109314] = 5, + ACTIONS(7057), 1, sym__shortcode_open, - ACTIONS(7229), 1, + ACTIONS(7087), 1, aux_sym__commonmark_single_quote_string_token3, - ACTIONS(7231), 1, + ACTIONS(7089), 1, aux_sym__commonmark_single_quote_string_token4, - ACTIONS(7241), 1, + ACTIONS(7109), 1, aux_sym__commonmark_single_quote_string_token1, - STATE(2576), 2, + STATE(2519), 2, sym_shortcode, aux_sym__commonmark_single_quote_string_repeat1, - [107664] = 6, - ACTIONS(27), 1, + [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, sym__line_ending, - ACTIONS(7154), 1, + sym__eof, sym__pipe_table_line_ending, - ACTIONS(7243), 1, + anon_sym_COLON, + anon_sym_DASH, + sym__whitespace, + [109366] = 6, + ACTIONS(111), 1, + sym__line_ending, + ACTIONS(7004), 1, + sym__pipe_table_line_ending, + ACTIONS(7115), 1, sym__eof, - STATE(129), 1, + STATE(128), 1, sym__pipe_table_newline, - STATE(643), 1, + STATE(520), 1, sym__newline, - STATE(2597), 1, + STATE(2526), 1, aux_sym_pipe_table_repeat1, - [107683] = 6, - ACTIONS(7061), 1, - sym__line_ending, - ACTIONS(7158), 1, - anon_sym_LBRACE, - ACTIONS(7245), 1, - sym__commonmark_naked_value, - ACTIONS(7247), 1, + [109385] = 1, + ACTIONS(6280), 5, + sym__soft_line_ending, + sym__shortcode_open, + aux_sym_target_token2, + anon_sym_RPAREN, sym__whitespace, - STATE(2549), 1, - sym__newline, - STATE(3151), 1, - sym_attribute_specifier, - [107702] = 6, - ACTIONS(7061), 1, - sym__line_ending, - ACTIONS(7158), 1, - anon_sym_LBRACE, - ACTIONS(7249), 1, - sym__commonmark_naked_value, - ACTIONS(7251), 1, + [109393] = 4, + ACTIONS(6540), 1, + sym__soft_line_ending, + ACTIONS(7117), 1, + aux_sym_inline_note_token1, + ACTIONS(7119), 1, sym__whitespace, - STATE(2550), 1, - sym__newline, - STATE(3240), 1, - sym_attribute_specifier, - [107721] = 6, - ACTIONS(113), 1, + STATE(3834), 2, + sym__soft_line_break, + sym__inline_whitespace, + [109407] = 3, + ACTIONS(7121), 1, + sym__whitespace, + ACTIONS(7123), 1, + sym__pipe_table_delimiter, + ACTIONS(2330), 3, sym__line_ending, - ACTIONS(7154), 1, - sym__pipe_table_line_ending, - ACTIONS(7253), 1, sym__eof, - STATE(132), 1, - sym__pipe_table_newline, - STATE(640), 1, - sym__newline, - STATE(2597), 1, - aux_sym_pipe_table_repeat1, - [107740] = 1, - ACTIONS(7255), 6, + sym__pipe_table_line_ending, + [109419] = 3, + ACTIONS(7125), 1, + sym__whitespace, + ACTIONS(7127), 1, + sym__pipe_table_delimiter, + ACTIONS(2330), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - anon_sym_COLON, - anon_sym_DASH, + [109431] = 4, + ACTIONS(6540), 1, + sym__soft_line_ending, + ACTIONS(7129), 1, + aux_sym_inline_note_token1, + ACTIONS(7131), 1, sym__whitespace, - [107749] = 4, - ACTIONS(7023), 1, + STATE(3811), 2, + sym__soft_line_break, + sym__inline_whitespace, + [109445] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7156), 1, - anon_sym_RBRACE, - ACTIONS(7257), 1, + ACTIONS(7133), 1, + aux_sym_inline_note_token1, + ACTIONS(7135), 1, sym__whitespace, - STATE(2556), 2, + STATE(3833), 2, sym__soft_line_break, sym__inline_whitespace, - [107763] = 4, - ACTIONS(6680), 1, + [109459] = 2, + ACTIONS(7137), 1, + sym_block_continuation, + ACTIONS(2705), 4, sym__soft_line_ending, - ACTIONS(7259), 1, + sym__key_specifier_token, anon_sym_RBRACE, - ACTIONS(7261), 1, sym__whitespace, - STATE(3974), 2, + [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, + sym__whitespace, + [109483] = 5, + ACTIONS(7143), 1, + aux_sym_pandoc_span_token1, + ACTIONS(7145), 1, + aux_sym_target_token1, + ACTIONS(7147), 1, + sym__soft_line_ending, + STATE(893), 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, + sym__whitespace, + STATE(3352), 2, sym__soft_line_break, sym__inline_whitespace, - [107777] = 4, - ACTIONS(6680), 1, + [109513] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7263), 1, + ACTIONS(7154), 1, aux_sym_inline_note_token1, - ACTIONS(7265), 1, + ACTIONS(7156), 1, sym__whitespace, - STATE(3587), 2, + STATE(3406), 2, sym__soft_line_break, sym__inline_whitespace, - [107791] = 4, - ACTIONS(7269), 1, + [109527] = 4, + ACTIONS(2465), 1, sym__soft_line_ending, - STATE(885), 1, + STATE(889), 1, sym__soft_line_break, - STATE(2589), 1, + STATE(2600), 1, aux_sym__inlines_repeat1, - ACTIONS(7267), 2, + ACTIONS(7158), 2, sym__line_ending, sym__eof, - [107805] = 3, - ACTIONS(7272), 1, - sym__whitespace, - ACTIONS(7274), 1, + [109541] = 5, + ACTIONS(6869), 1, + anon_sym_COLON, + ACTIONS(6871), 1, + anon_sym_DASH, + ACTIONS(7160), 1, sym__pipe_table_delimiter, - ACTIONS(2399), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [107817] = 4, - ACTIONS(6680), 1, + STATE(2552), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + STATE(3142), 1, + sym_pipe_table_delimiter_cell, + [109557] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7276), 1, + ACTIONS(7162), 1, aux_sym_inline_note_token1, - ACTIONS(7278), 1, + ACTIONS(7164), 1, sym__whitespace, - STATE(3677), 2, + STATE(3355), 2, sym__soft_line_break, sym__inline_whitespace, - [107831] = 3, - ACTIONS(7280), 1, + [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, - ACTIONS(7282), 1, + [109585] = 3, + ACTIONS(7168), 1, + sym__whitespace, + ACTIONS(7170), 1, sym__pipe_table_delimiter, - ACTIONS(2399), 3, + ACTIONS(6767), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [107843] = 4, - ACTIONS(6680), 1, - sym__soft_line_ending, - ACTIONS(7284), 1, - aux_sym_inline_note_token1, - ACTIONS(7286), 1, - sym__whitespace, - STATE(3425), 2, - sym__soft_line_break, - sym__inline_whitespace, - [107857] = 4, - ACTIONS(6680), 1, + [109597] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7288), 1, + ACTIONS(7172), 1, aux_sym_inline_note_token1, - ACTIONS(7290), 1, + ACTIONS(7174), 1, sym__whitespace, - STATE(3462), 2, + STATE(3422), 2, sym__soft_line_break, sym__inline_whitespace, - [107871] = 3, - ACTIONS(7292), 1, - sym__whitespace, - ACTIONS(7294), 1, + [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, - ACTIONS(6961), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [107883] = 4, - ACTIONS(6680), 1, + anon_sym_COLON, + sym__whitespace, + [109623] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7296), 1, + ACTIONS(7179), 1, aux_sym_inline_note_token1, - ACTIONS(7298), 1, + ACTIONS(7181), 1, sym__whitespace, - STATE(3423), 2, + STATE(3697), 2, sym__soft_line_break, sym__inline_whitespace, - [107897] = 4, - ACTIONS(7302), 1, - sym__pipe_table_line_ending, - STATE(134), 1, - sym__pipe_table_newline, - STATE(2597), 1, - aux_sym_pipe_table_repeat1, - ACTIONS(7300), 2, - sym__line_ending, - sym__eof, - [107911] = 3, - ACTIONS(7305), 1, - sym__whitespace, - ACTIONS(7307), 1, - sym__pipe_table_delimiter, - ACTIONS(6961), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [107923] = 3, - ACTIONS(6686), 1, + [109637] = 3, + ACTIONS(6546), 1, sym__key_specifier_token, - STATE(2704), 1, + STATE(2714), 1, sym__commonmark_key_value_specifier, - ACTIONS(7309), 3, + ACTIONS(6851), 3, sym__soft_line_ending, anon_sym_RBRACE, sym__whitespace, - [107935] = 2, - ACTIONS(7311), 1, - sym_block_continuation, - ACTIONS(3163), 4, + [109649] = 1, + ACTIONS(6272), 5, sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, + sym__shortcode_open, + aux_sym_target_token2, + anon_sym_RPAREN, sym__whitespace, - [107945] = 4, - ACTIONS(6680), 1, + [109657] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7313), 1, + ACTIONS(7183), 1, aux_sym_inline_note_token1, - ACTIONS(7315), 1, + ACTIONS(7185), 1, sym__whitespace, - STATE(3672), 2, + STATE(3654), 2, sym__soft_line_break, sym__inline_whitespace, - [107959] = 4, - ACTIONS(6680), 1, + [109671] = 1, + ACTIONS(7187), 5, sym__soft_line_ending, - ACTIONS(7317), 1, + sym__shortcode_open, + aux_sym_target_token2, + anon_sym_RPAREN, + sym__whitespace, + [109679] = 4, + ACTIONS(6540), 1, + sym__soft_line_ending, + ACTIONS(7189), 1, aux_sym_inline_note_token1, - ACTIONS(7319), 1, + ACTIONS(7191), 1, sym__whitespace, - STATE(3689), 2, + STATE(3667), 2, sym__soft_line_break, sym__inline_whitespace, - [107973] = 3, - ACTIONS(7274), 1, - sym__pipe_table_delimiter, - ACTIONS(7321), 1, + [109693] = 1, + ACTIONS(6276), 5, + sym__soft_line_ending, + sym__shortcode_open, + aux_sym_target_token2, + anon_sym_RPAREN, sym__whitespace, - ACTIONS(2403), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [107985] = 4, - ACTIONS(6680), 1, + [109701] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7323), 1, + ACTIONS(7193), 1, aux_sym_inline_note_token1, - ACTIONS(7325), 1, + ACTIONS(7195), 1, sym__whitespace, - STATE(3904), 2, + STATE(3370), 2, sym__soft_line_break, sym__inline_whitespace, - [107999] = 3, - ACTIONS(7282), 1, - sym__pipe_table_delimiter, - ACTIONS(7327), 1, + [109715] = 4, + ACTIONS(6540), 1, + sym__soft_line_ending, + ACTIONS(7197), 1, + aux_sym_inline_note_token1, + ACTIONS(7199), 1, sym__whitespace, - ACTIONS(2403), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [108011] = 4, - ACTIONS(6680), 1, + STATE(3874), 2, + sym__soft_line_break, + sym__inline_whitespace, + [109729] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7329), 1, + ACTIONS(7201), 1, aux_sym_inline_note_token1, - ACTIONS(7331), 1, + ACTIONS(7203), 1, sym__whitespace, - STATE(3948), 2, + STATE(3893), 2, sym__soft_line_break, sym__inline_whitespace, - [108025] = 1, - ACTIONS(7333), 5, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__pipe_table_delimiter, + [109743] = 4, + ACTIONS(6540), 1, + sym__soft_line_ending, + ACTIONS(7205), 1, + anon_sym_EQ, + ACTIONS(7207), 1, sym__whitespace, - [108033] = 3, - ACTIONS(7307), 1, + STATE(3597), 2, + sym__soft_line_break, + sym__inline_whitespace, + [109757] = 3, + ACTIONS(7127), 1, sym__pipe_table_delimiter, - ACTIONS(7335), 1, + ACTIONS(7209), 1, sym__whitespace, - ACTIONS(7095), 3, + ACTIONS(2433), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [108045] = 3, - ACTIONS(7294), 1, + [109769] = 3, + ACTIONS(7123), 1, sym__pipe_table_delimiter, - ACTIONS(7337), 1, + ACTIONS(7211), 1, sym__whitespace, - ACTIONS(7095), 3, + ACTIONS(2433), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [108057] = 4, - ACTIONS(6680), 1, + [109781] = 2, + ACTIONS(7213), 1, + sym_block_continuation, + ACTIONS(2699), 4, + sym__pipe_table_delimiter, + anon_sym_COLON, + anon_sym_DASH, + sym__whitespace, + [109791] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7339), 1, + ACTIONS(7215), 1, aux_sym_inline_note_token1, - ACTIONS(7341), 1, + ACTIONS(7217), 1, sym__whitespace, - STATE(3400), 2, + STATE(3825), 2, sym__soft_line_break, sym__inline_whitespace, - [108071] = 4, - ACTIONS(6680), 1, + [109805] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7343), 1, + ACTIONS(7219), 1, aux_sym_inline_note_token1, - ACTIONS(7345), 1, + ACTIONS(7221), 1, sym__whitespace, - STATE(3411), 2, + STATE(3269), 2, sym__soft_line_break, sym__inline_whitespace, - [108085] = 3, - ACTIONS(7274), 1, - sym__pipe_table_delimiter, - ACTIONS(7347), 1, - sym__whitespace, - ACTIONS(7349), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [108097] = 5, - ACTIONS(2505), 1, + [109819] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7351), 1, + ACTIONS(7223), 1, aux_sym_inline_note_token1, - ACTIONS(7353), 1, + ACTIONS(7225), 1, sym__whitespace, - STATE(891), 1, + STATE(3276), 2, sym__soft_line_break, - STATE(2617), 1, - aux_sym__inlines_repeat1, - [108113] = 1, - ACTIONS(7355), 5, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - sym__pipe_table_delimiter, - sym__whitespace, - [108121] = 4, - ACTIONS(6680), 1, + sym__inline_whitespace, + [109833] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7357), 1, + ACTIONS(7227), 1, aux_sym_inline_note_token1, - ACTIONS(7359), 1, + ACTIONS(7229), 1, sym__whitespace, - STATE(3540), 2, + STATE(3399), 2, sym__soft_line_break, sym__inline_whitespace, - [108135] = 4, - ACTIONS(6680), 1, + [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, sym__soft_line_ending, - ACTIONS(7361), 1, - aux_sym_inline_note_token1, - ACTIONS(7363), 1, + ACTIONS(7231), 1, + anon_sym_RBRACE, + ACTIONS(7233), 1, sym__whitespace, - STATE(3548), 2, + STATE(3700), 2, sym__soft_line_break, sym__inline_whitespace, - [108149] = 5, - ACTIONS(2505), 1, + [109871] = 5, + ACTIONS(2465), 1, sym__soft_line_ending, - ACTIONS(7365), 1, + ACTIONS(7235), 1, aux_sym_inline_note_token1, - ACTIONS(7367), 1, + ACTIONS(7237), 1, sym__whitespace, - STATE(891), 1, + STATE(887), 1, sym__soft_line_break, - STATE(2629), 1, + STATE(2620), 1, aux_sym__inlines_repeat1, - [108165] = 3, - ACTIONS(7307), 1, - sym__pipe_table_delimiter, - ACTIONS(7369), 1, - sym__whitespace, - ACTIONS(7371), 3, + [109887] = 1, + ACTIONS(7239), 5, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [108177] = 1, - ACTIONS(6248), 5, - sym__soft_line_ending, - sym__shortcode_open, - aux_sym_target_token2, - anon_sym_RPAREN, + sym__pipe_table_delimiter, sym__whitespace, - [108185] = 4, - ACTIONS(6680), 1, + [109895] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7373), 1, + ACTIONS(7241), 1, aux_sym_inline_note_token1, - ACTIONS(7375), 1, + ACTIONS(7243), 1, sym__whitespace, - STATE(3636), 2, + STATE(3333), 2, sym__soft_line_break, sym__inline_whitespace, - [108199] = 1, - ACTIONS(6252), 5, - sym__soft_line_ending, - sym__shortcode_open, - aux_sym_target_token2, - anon_sym_RPAREN, - sym__whitespace, - [108207] = 4, - ACTIONS(6680), 1, + [109909] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7377), 1, + ACTIONS(7245), 1, aux_sym_inline_note_token1, - ACTIONS(7379), 1, + ACTIONS(7247), 1, sym__whitespace, - STATE(3643), 2, + STATE(3340), 2, sym__soft_line_break, sym__inline_whitespace, - [108221] = 2, - ACTIONS(7381), 1, - sym_block_continuation, - ACTIONS(3157), 4, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, - sym__code_line, - [108231] = 1, - ACTIONS(6260), 5, - sym__soft_line_ending, - sym__shortcode_open, - aux_sym_target_token2, - anon_sym_RPAREN, - sym__whitespace, - [108239] = 5, - ACTIONS(7001), 1, - anon_sym_COLON, - ACTIONS(7003), 1, - anon_sym_DASH, - ACTIONS(7383), 1, - sym__pipe_table_delimiter, - STATE(2626), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3219), 1, - sym_pipe_table_delimiter_cell, - [108255] = 4, - ACTIONS(7385), 1, - anon_sym_COLON, - ACTIONS(7387), 1, - anon_sym_DASH, - STATE(2663), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(6989), 2, - sym__pipe_table_delimiter, - sym__whitespace, - [108269] = 5, - ACTIONS(7061), 1, - sym__line_ending, - ACTIONS(7158), 1, - anon_sym_LBRACE, - ACTIONS(7389), 1, - sym__commonmark_naked_value, - STATE(2545), 1, - sym__newline, - STATE(3169), 1, - sym_attribute_specifier, - [108285] = 4, - ACTIONS(6680), 1, + [109923] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7391), 1, + ACTIONS(7249), 1, aux_sym_inline_note_token1, - ACTIONS(7393), 1, + ACTIONS(7251), 1, sym__whitespace, - STATE(3738), 2, + STATE(3350), 2, sym__soft_line_break, sym__inline_whitespace, - [108299] = 5, - ACTIONS(7267), 1, - aux_sym_inline_note_token1, - ACTIONS(7269), 1, - sym__soft_line_ending, - ACTIONS(7395), 1, - sym__whitespace, - STATE(891), 1, - sym__soft_line_break, - STATE(2629), 1, - aux_sym__inlines_repeat1, - [108315] = 3, - ACTIONS(6686), 1, + [109937] = 3, + ACTIONS(6546), 1, sym__key_specifier_token, - STATE(2704), 1, + STATE(2714), 1, sym__commonmark_key_value_specifier, - ACTIONS(7017), 3, + ACTIONS(7253), 3, sym__soft_line_ending, anon_sym_RBRACE, sym__whitespace, - [108327] = 4, - ACTIONS(6680), 1, + [109949] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7397), 1, - anon_sym_EQ, - ACTIONS(7399), 1, + ACTIONS(7255), 1, + aux_sym_inline_note_token1, + ACTIONS(7257), 1, sym__whitespace, - STATE(3782), 2, + STATE(3781), 2, sym__soft_line_break, sym__inline_whitespace, - [108341] = 4, - ACTIONS(7023), 1, + [109963] = 3, + ACTIONS(7170), 1, + sym__pipe_table_delimiter, + ACTIONS(7259), 1, + sym__whitespace, + ACTIONS(6833), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [109975] = 4, + ACTIONS(6890), 1, sym__soft_line_ending, - ACTIONS(7401), 1, + ACTIONS(7067), 1, anon_sym_RBRACE, - ACTIONS(7403), 1, + ACTIONS(7261), 1, sym__whitespace, - STATE(2561), 2, + STATE(2512), 2, sym__soft_line_break, sym__inline_whitespace, - [108355] = 4, - ACTIONS(2505), 1, - sym__soft_line_ending, - STATE(885), 1, - sym__soft_line_break, - STATE(2646), 1, - aux_sym__inlines_repeat1, - ACTIONS(7351), 2, + [109989] = 3, + ACTIONS(7123), 1, + sym__pipe_table_delimiter, + ACTIONS(7263), 1, + sym__whitespace, + ACTIONS(2439), 3, sym__line_ending, sym__eof, - [108369] = 4, - ACTIONS(6680), 1, + sym__pipe_table_line_ending, + [110001] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7405), 1, + ACTIONS(7265), 1, aux_sym_inline_note_token1, - ACTIONS(7407), 1, + ACTIONS(7267), 1, sym__whitespace, - STATE(3848), 2, + STATE(3397), 2, sym__soft_line_break, sym__inline_whitespace, - [108383] = 4, - ACTIONS(6680), 1, + [110015] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7409), 1, + ACTIONS(7269), 1, aux_sym_inline_note_token1, - ACTIONS(7411), 1, + ACTIONS(7271), 1, sym__whitespace, - STATE(3855), 2, + STATE(3404), 2, sym__soft_line_break, sym__inline_whitespace, - [108397] = 1, - ACTIONS(7413), 5, + [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, sym__whitespace, - [108405] = 4, - ACTIONS(6680), 1, + ACTIONS(2435), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [110053] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7415), 1, + ACTIONS(7277), 1, aux_sym_inline_note_token1, - ACTIONS(7417), 1, + ACTIONS(7279), 1, sym__whitespace, - STATE(3959), 2, + STATE(3364), 2, sym__soft_line_break, sym__inline_whitespace, - [108419] = 4, - ACTIONS(6680), 1, - sym__soft_line_ending, - ACTIONS(7419), 1, - aux_sym_inline_note_token1, - ACTIONS(7421), 1, + [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, - STATE(3966), 2, - sym__soft_line_break, - sym__inline_whitespace, - [108433] = 3, - ACTIONS(7282), 1, + ACTIONS(7288), 1, sym__pipe_table_delimiter, - ACTIONS(7423), 1, - sym__whitespace, - ACTIONS(2463), 3, + ACTIONS(6833), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [108445] = 4, - ACTIONS(6680), 1, + [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, + 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, sym__soft_line_ending, - ACTIONS(7144), 1, - anon_sym_RBRACE, - ACTIONS(7425), 1, + ACTIONS(7296), 1, + anon_sym_EQ, + ACTIONS(7298), 1, sym__whitespace, - STATE(3772), 2, + STATE(3478), 2, sym__soft_line_break, sym__inline_whitespace, - [108459] = 4, - ACTIONS(6680), 1, + [110147] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7427), 1, - aux_sym_inline_note_token1, - ACTIONS(7429), 1, + ACTIONS(7300), 1, + anon_sym_EQ, + ACTIONS(7302), 1, sym__whitespace, - STATE(3331), 2, + STATE(3295), 2, sym__soft_line_break, sym__inline_whitespace, - [108473] = 4, - ACTIONS(6680), 1, + [110161] = 4, + ACTIONS(6890), 1, sym__soft_line_ending, - ACTIONS(7431), 1, - aux_sym_inline_note_token1, - ACTIONS(7433), 1, + ACTIONS(7304), 1, + anon_sym_RBRACE, + ACTIONS(7306), 1, sym__whitespace, - STATE(3338), 2, + STATE(2522), 2, sym__soft_line_break, sym__inline_whitespace, - [108487] = 5, - ACTIONS(2505), 1, + [110175] = 5, + ACTIONS(7143), 1, + sym__whitespace, + ACTIONS(7145), 1, + aux_sym_inline_note_token1, + ACTIONS(7147), 1, + sym__soft_line_ending, + STATE(887), 1, + sym__soft_line_break, + STATE(2599), 1, + aux_sym__inlines_repeat1, + [110191] = 4, + ACTIONS(7147), 1, sym__soft_line_ending, - ACTIONS(7351), 1, - aux_sym_target_token1, - ACTIONS(7353), 1, - aux_sym_pandoc_span_token1, STATE(889), 1, sym__soft_line_break, - STATE(2648), 1, + STATE(2600), 1, aux_sym__inlines_repeat1, - [108503] = 4, - ACTIONS(6680), 1, + ACTIONS(7145), 2, + sym__line_ending, + sym__eof, + [110205] = 5, + ACTIONS(6921), 1, + sym__line_ending, + ACTIONS(6975), 1, + anon_sym_LBRACE, + ACTIONS(7308), 1, + sym__commonmark_naked_value, + STATE(2485), 1, + sym__newline, + STATE(3106), 1, + sym_attribute_specifier, + [110221] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7435), 1, + ACTIONS(7310), 1, aux_sym_inline_note_token1, - ACTIONS(7437), 1, + ACTIONS(7312), 1, sym__whitespace, - STATE(3396), 2, + STATE(3619), 2, sym__soft_line_break, sym__inline_whitespace, - [108517] = 4, - ACTIONS(6680), 1, + [110235] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7439), 1, + ACTIONS(7314), 1, aux_sym_inline_note_token1, - ACTIONS(7441), 1, + ACTIONS(7316), 1, sym__whitespace, - STATE(3403), 2, + STATE(3675), 2, sym__soft_line_break, sym__inline_whitespace, - [108531] = 4, - ACTIONS(2505), 1, - sym__soft_line_ending, - STATE(885), 1, - sym__soft_line_break, - STATE(2589), 1, - aux_sym__inlines_repeat1, - ACTIONS(7365), 2, + [110249] = 3, + ACTIONS(7127), 1, + sym__pipe_table_delimiter, + ACTIONS(7318), 1, + sym__whitespace, + ACTIONS(7320), 3, sym__line_ending, sym__eof, - [108545] = 4, - ACTIONS(6680), 1, + sym__pipe_table_line_ending, + [110261] = 1, + ACTIONS(7322), 5, + 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(7443), 1, + ACTIONS(7324), 1, aux_sym_inline_note_token1, - ACTIONS(7445), 1, + ACTIONS(7326), 1, sym__whitespace, - STATE(3895), 2, + STATE(3488), 2, sym__soft_line_break, sym__inline_whitespace, - [108559] = 5, - ACTIONS(2505), 1, - sym__soft_line_ending, - ACTIONS(7365), 1, - aux_sym_target_token1, - ACTIONS(7367), 1, - aux_sym_pandoc_span_token1, - STATE(889), 1, - sym__soft_line_break, - STATE(2661), 1, - aux_sym__inlines_repeat1, - [108575] = 4, - ACTIONS(6680), 1, + [110283] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7447), 1, + ACTIONS(7328), 1, aux_sym_inline_note_token1, - ACTIONS(7449), 1, + ACTIONS(7330), 1, sym__whitespace, - STATE(3461), 2, + STATE(3498), 2, sym__soft_line_break, sym__inline_whitespace, - [108589] = 2, - ACTIONS(7451), 1, - sym_block_continuation, - ACTIONS(3157), 4, - sym__pipe_table_delimiter, - anon_sym_COLON, - anon_sym_DASH, - sym__whitespace, - [108599] = 4, - ACTIONS(6680), 1, + [110297] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7453), 1, + ACTIONS(7332), 1, aux_sym_inline_note_token1, - ACTIONS(7455), 1, + ACTIONS(7334), 1, sym__whitespace, - STATE(3468), 2, + STATE(3430), 2, sym__soft_line_break, sym__inline_whitespace, - [108613] = 4, - ACTIONS(6680), 1, + [110311] = 4, + ACTIONS(2465), 1, sym__soft_line_ending, - ACTIONS(7457), 1, - aux_sym_inline_note_token1, - ACTIONS(7459), 1, - sym__whitespace, - STATE(3591), 2, + STATE(889), 1, sym__soft_line_break, - sym__inline_whitespace, - [108627] = 5, - ACTIONS(7061), 1, + STATE(2549), 1, + aux_sym__inlines_repeat1, + ACTIONS(7235), 2, sym__line_ending, - ACTIONS(7158), 1, - anon_sym_LBRACE, - ACTIONS(7461), 1, - sym__commonmark_naked_value, - STATE(2543), 1, - sym__newline, - STATE(3184), 1, - sym_attribute_specifier, - [108643] = 4, - ACTIONS(6680), 1, + sym__eof, + [110325] = 5, + ACTIONS(2465), 1, sym__soft_line_ending, - ACTIONS(7463), 1, - anon_sym_EQ, - ACTIONS(7465), 1, + ACTIONS(7235), 1, + aux_sym_target_token1, + ACTIONS(7237), 1, + aux_sym_pandoc_span_token1, + STATE(893), 1, + sym__soft_line_break, + STATE(2616), 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(3542), 2, + STATE(3286), 2, sym__soft_line_break, sym__inline_whitespace, - [108657] = 1, - ACTIONS(7467), 5, - sym__soft_line_ending, - sym__shortcode_open, - aux_sym_target_token2, - anon_sym_RPAREN, + [110355] = 3, + ACTIONS(7288), 1, + sym__pipe_table_delimiter, + ACTIONS(7338), 1, sym__whitespace, - [108665] = 5, - ACTIONS(7061), 1, + ACTIONS(7340), 3, sym__line_ending, - ACTIONS(7158), 1, - anon_sym_LBRACE, - ACTIONS(7469), 1, - sym__commonmark_naked_value, - STATE(2534), 1, - sym__newline, - STATE(3136), 1, - sym_attribute_specifier, - [108681] = 4, - ACTIONS(6680), 1, + sym__eof, + sym__pipe_table_line_ending, + [110367] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7471), 1, + ACTIONS(7342), 1, aux_sym_inline_note_token1, - ACTIONS(7473), 1, + ACTIONS(7344), 1, sym__whitespace, - STATE(3656), 2, + STATE(3661), 2, sym__soft_line_break, sym__inline_whitespace, - [108695] = 4, - ACTIONS(7387), 1, - anon_sym_DASH, - ACTIONS(7475), 1, - anon_sym_COLON, - STATE(2663), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(6983), 2, - sym__pipe_table_delimiter, - sym__whitespace, - [108709] = 3, - ACTIONS(7282), 1, - sym__pipe_table_delimiter, - ACTIONS(7477), 1, - sym__whitespace, - ACTIONS(2407), 3, + [110381] = 2, + ACTIONS(7346), 1, + sym_block_continuation, + ACTIONS(2699), 4, sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [108721] = 3, - ACTIONS(7274), 1, + sym__block_close, + sym__fenced_code_block_end_backtick, + sym__code_line, + [110391] = 3, + ACTIONS(7288), 1, sym__pipe_table_delimiter, - ACTIONS(7479), 1, + ACTIONS(7348), 1, sym__whitespace, - ACTIONS(2407), 3, + ACTIONS(6927), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [108733] = 5, - ACTIONS(7267), 1, - aux_sym_target_token1, - ACTIONS(7269), 1, + [110403] = 5, + ACTIONS(2465), 1, sym__soft_line_ending, - ACTIONS(7395), 1, + ACTIONS(7158), 1, + aux_sym_target_token1, + ACTIONS(7350), 1, aux_sym_pandoc_span_token1, - STATE(889), 1, + STATE(893), 1, sym__soft_line_break, - STATE(2661), 1, + STATE(2546), 1, aux_sym__inlines_repeat1, - [108749] = 3, - ACTIONS(7294), 1, + [110419] = 3, + ACTIONS(7170), 1, sym__pipe_table_delimiter, - ACTIONS(7481), 1, + ACTIONS(7352), 1, sym__whitespace, - ACTIONS(6953), 3, + ACTIONS(6927), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [108761] = 3, - ACTIONS(7483), 1, - anon_sym_DASH, - STATE(2663), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - ACTIONS(7029), 3, - sym__pipe_table_delimiter, - anon_sym_COLON, - sym__whitespace, - [108773] = 2, - ACTIONS(3454), 2, - aux_sym__commonmark_single_quote_string_token1, - aux_sym__commonmark_double_quote_string_token1, - ACTIONS(3452), 3, - sym__value_specifier_token, - anon_sym_SQUOTE_SQUOTE, - anon_sym_DQUOTE_DQUOTE, - [108783] = 4, - ACTIONS(6680), 1, + [110431] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7486), 1, + ACTIONS(7354), 1, aux_sym_inline_note_token1, - ACTIONS(7488), 1, + ACTIONS(7356), 1, sym__whitespace, - STATE(3916), 2, + STATE(3676), 2, sym__soft_line_break, sym__inline_whitespace, - [108797] = 4, - ACTIONS(6680), 1, + [110445] = 4, + ACTIONS(6540), 1, sym__soft_line_ending, - ACTIONS(7490), 1, + ACTIONS(7358), 1, aux_sym_inline_note_token1, - ACTIONS(7492), 1, + ACTIONS(7360), 1, sym__whitespace, - STATE(3852), 2, + STATE(3495), 2, sym__soft_line_break, sym__inline_whitespace, - [108811] = 4, - ACTIONS(6680), 1, - sym__soft_line_ending, - ACTIONS(7494), 1, - anon_sym_EQ, - ACTIONS(7496), 1, - sym__whitespace, - STATE(3749), 2, - sym__soft_line_break, - sym__inline_whitespace, - [108825] = 4, - ACTIONS(6680), 1, + [110459] = 5, + ACTIONS(2465), 1, sym__soft_line_ending, - ACTIONS(7498), 1, + ACTIONS(7158), 1, aux_sym_inline_note_token1, - ACTIONS(7500), 1, + ACTIONS(7350), 1, sym__whitespace, - STATE(3745), 2, - sym__soft_line_break, - sym__inline_whitespace, - [108839] = 4, - ACTIONS(7502), 1, - anon_sym_LBRACE, - ACTIONS(7504), 1, - sym__commonmark_naked_value, - ACTIONS(7506), 1, - sym_fenced_div_note_id, - STATE(3194), 1, - sym__pandoc_attr_specifier, - [108852] = 3, - ACTIONS(7510), 1, - sym__code_span_close, - STATE(2687), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [108863] = 3, - ACTIONS(2505), 1, - sym__soft_line_ending, - ACTIONS(7512), 1, - sym__whitespace, - STATE(760), 2, - sym__soft_line_break, - sym__inline_whitespace, - [108874] = 4, - ACTIONS(2505), 1, - sym__soft_line_ending, - ACTIONS(7365), 1, - sym__emphasis_close_underscore, - STATE(888), 1, + STATE(887), 1, sym__soft_line_break, - STATE(2688), 1, + STATE(2599), 1, aux_sym__inlines_repeat1, - [108887] = 1, - ACTIONS(7514), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [108894] = 1, - ACTIONS(7516), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [108901] = 2, - ACTIONS(7518), 1, - sym_block_continuation, - ACTIONS(3163), 3, - sym__key_specifier_token, - anon_sym_RBRACE, - aux_sym__commonmark_specifier_start_with_class_token1, - [108910] = 4, - ACTIONS(2505), 1, + [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, sym__soft_line_ending, - ACTIONS(7351), 1, - sym__single_quote_span_close, - STATE(890), 1, + ACTIONS(7158), 1, + sym__strong_emphasis_close_star, + STATE(888), 1, sym__soft_line_break, - STATE(2695), 1, + STATE(2712), 1, aux_sym__inlines_repeat1, - [108923] = 1, - ACTIONS(7520), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [108930] = 4, - ACTIONS(2505), 1, + [110501] = 4, + ACTIONS(2465), 1, sym__soft_line_ending, - ACTIONS(7365), 1, - sym__strikeout_close, - STATE(882), 1, + ACTIONS(7235), 1, + sym__double_quote_span_close, + STATE(883), 1, sym__soft_line_break, - STATE(2693), 1, + STATE(2632), 1, aux_sym__inlines_repeat1, - [108943] = 1, - ACTIONS(3444), 4, - sym__line_ending, - sym__block_close, - sym__fenced_code_block_end_backtick, - sym__code_line, - [108950] = 3, - ACTIONS(7522), 1, + [110514] = 3, + ACTIONS(7364), 1, sym__code_span_close, - STATE(2687), 1, + STATE(2671), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [108961] = 4, - ACTIONS(2505), 1, + [110525] = 1, + ACTIONS(3073), 4, + sym__pipe_table_delimiter, + anon_sym_COLON, + anon_sym_DASH, + sym__whitespace, + [110532] = 4, + ACTIONS(2465), 1, sym__soft_line_ending, - ACTIONS(7351), 1, - aux_sym_insert_token1, - STATE(892), 1, + ACTIONS(7158), 1, + sym__subscript_close, + STATE(885), 1, sym__soft_line_break, - STATE(2717), 1, + STATE(2679), 1, aux_sym__inlines_repeat1, - [108974] = 2, - ACTIONS(7307), 1, - sym__pipe_table_delimiter, - ACTIONS(7095), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [108983] = 3, - ACTIONS(7524), 1, + [110545] = 3, + ACTIONS(7366), 1, sym__code_span_close, - STATE(2687), 1, + STATE(2671), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [108994] = 2, - ACTIONS(7307), 1, + [110556] = 4, + ACTIONS(7368), 1, + anon_sym_LBRACE, + ACTIONS(7370), 1, + sym__commonmark_naked_value, + ACTIONS(7372), 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(6961), 3, + ACTIONS(2330), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [109003] = 3, - ACTIONS(7526), 1, + [110591] = 1, + ACTIONS(7378), 4, + sym__soft_line_ending, + sym__key_specifier_token, + anon_sym_RBRACE, + sym__whitespace, + [110598] = 4, + ACTIONS(2465), 1, + sym__soft_line_ending, + ACTIONS(7158), 1, + sym__double_quote_span_close, + STATE(883), 1, + sym__soft_line_break, + STATE(2655), 1, + aux_sym__inlines_repeat1, + [110611] = 4, + ACTIONS(2465), 1, + sym__soft_line_ending, + ACTIONS(7235), 1, + sym__emphasis_close_underscore, + STATE(892), 1, + sym__soft_line_break, + STATE(2641), 1, + aux_sym__inlines_repeat1, + [110624] = 3, + ACTIONS(7380), 1, sym__code_span_close, - STATE(2687), 1, + STATE(2671), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [109014] = 3, - ACTIONS(7528), 1, + [110635] = 3, + ACTIONS(7382), 1, sym__code_span_close, - STATE(2687), 1, + STATE(2671), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [109025] = 3, - ACTIONS(7533), 1, + [110646] = 3, + ACTIONS(7384), 1, sym__code_span_close, - STATE(2687), 1, + STATE(2671), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7530), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [109036] = 4, - ACTIONS(7267), 1, - sym__emphasis_close_underscore, - ACTIONS(7269), 1, + [110657] = 4, + ACTIONS(2465), 1, sym__soft_line_ending, - STATE(888), 1, + ACTIONS(7158), 1, + sym__strong_emphasis_close_underscore, + STATE(890), 1, sym__soft_line_break, - STATE(2688), 1, + STATE(2685), 1, aux_sym__inlines_repeat1, - [109049] = 3, - ACTIONS(7535), 1, - sym__code_span_close, - STATE(2687), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [109060] = 2, - ACTIONS(7537), 1, - sym__pipe_table_delimiter, - ACTIONS(7095), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [109069] = 4, - ACTIONS(2505), 1, + [110670] = 1, + ACTIONS(7386), 4, sym__soft_line_ending, - ACTIONS(7351), 1, - sym__strong_emphasis_close_star, - STATE(884), 1, - sym__soft_line_break, - STATE(2698), 1, - aux_sym__inlines_repeat1, - [109082] = 4, - ACTIONS(2505), 1, + sym__key_specifier_token, + anon_sym_RBRACE, + 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, sym__soft_line_ending, - ACTIONS(7351), 1, - sym__double_quote_span_close, - STATE(893), 1, + ACTIONS(7158), 1, + sym__emphasis_close_underscore, + STATE(892), 1, sym__soft_line_break, - STATE(2739), 1, + STATE(2668), 1, aux_sym__inlines_repeat1, - [109095] = 4, - ACTIONS(7267), 1, - sym__strikeout_close, - ACTIONS(7269), 1, + [110712] = 4, + ACTIONS(2465), 1, sym__soft_line_ending, - STATE(882), 1, - sym__soft_line_break, - STATE(2693), 1, - aux_sym__inlines_repeat1, - [109108] = 4, - ACTIONS(7267), 1, + ACTIONS(7235), 1, sym__emphasis_close_star, - ACTIONS(7269), 1, - sym__soft_line_ending, - STATE(883), 1, - sym__soft_line_break, - STATE(2694), 1, - aux_sym__inlines_repeat1, - [109121] = 4, - ACTIONS(2505), 1, - sym__soft_line_ending, - ACTIONS(7365), 1, - sym__single_quote_span_close, - STATE(890), 1, + STATE(891), 1, sym__soft_line_break, - STATE(2752), 1, + STATE(2649), 1, aux_sym__inlines_repeat1, - [109134] = 4, - ACTIONS(7502), 1, - anon_sym_LBRACE, - ACTIONS(7539), 1, - sym__commonmark_naked_value, - ACTIONS(7541), 1, - sym_fenced_div_note_id, - STATE(3266), 1, - sym__pandoc_attr_specifier, - [109147] = 1, - ACTIONS(7543), 4, + [110725] = 1, + ACTIONS(3081), 4, sym__soft_line_ending, sym__key_specifier_token, anon_sym_RBRACE, sym__whitespace, - [109154] = 4, - ACTIONS(2505), 1, + [110732] = 4, + ACTIONS(2465), 1, sym__soft_line_ending, - ACTIONS(7365), 1, - sym__strong_emphasis_close_star, - STATE(884), 1, + ACTIONS(7235), 1, + sym__superscript_close, + STATE(886), 1, sym__soft_line_break, - STATE(2726), 1, + STATE(2660), 1, aux_sym__inlines_repeat1, - [109167] = 3, - ACTIONS(7545), 1, + [110745] = 3, + ACTIONS(7392), 1, sym__code_span_close, - STATE(2687), 1, + STATE(2671), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [109178] = 4, - ACTIONS(7267), 1, - sym__double_quote_span_close, - ACTIONS(7269), 1, + [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, sym__soft_line_ending, - STATE(893), 1, + ACTIONS(7158), 1, + sym__emphasis_close_star, + STATE(891), 1, sym__soft_line_break, - STATE(2700), 1, + STATE(2703), 1, aux_sym__inlines_repeat1, - [109191] = 2, - ACTIONS(7547), 1, + [110804] = 2, + ACTIONS(7288), 1, sym__pipe_table_delimiter, - ACTIONS(7349), 3, + ACTIONS(7340), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [109200] = 4, - ACTIONS(2505), 1, - sym__soft_line_ending, - ACTIONS(7351), 1, - sym__superscript_close, - STATE(881), 1, - sym__soft_line_break, - STATE(2720), 1, - aux_sym__inlines_repeat1, - [109213] = 4, - ACTIONS(6686), 1, - sym__key_specifier_token, - ACTIONS(7549), 1, - aux_sym__commonmark_specifier_start_with_class_token2, - STATE(2524), 1, - sym__commonmark_key_value_specifier, - STATE(3874), 1, - sym__commonmark_specifier_start_with_kv, - [109226] = 1, - ACTIONS(7044), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [109233] = 3, - ACTIONS(7551), 1, + [110813] = 2, + ACTIONS(7398), 1, + sym__pipe_table_delimiter, + ACTIONS(2435), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [110822] = 3, + ACTIONS(7400), 1, sym__code_span_close, - STATE(2687), 1, + STATE(2671), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [109244] = 2, - ACTIONS(7274), 1, + [110833] = 2, + ACTIONS(7127), 1, sym__pipe_table_delimiter, - ACTIONS(7349), 3, + ACTIONS(2435), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [109253] = 2, - ACTIONS(6250), 1, + [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(6248), 3, + ACTIONS(6272), 3, sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_single_quote_string_token4, - [109262] = 2, - ACTIONS(6254), 1, + [110871] = 2, + ACTIONS(6278), 1, aux_sym__commonmark_single_quote_string_token3, - ACTIONS(6252), 3, + ACTIONS(6276), 3, sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_single_quote_string_token4, - [109271] = 2, - ACTIONS(6262), 1, + [110880] = 2, + ACTIONS(6282), 1, aux_sym__commonmark_single_quote_string_token3, - ACTIONS(6260), 3, + ACTIONS(6280), 3, sym__shortcode_open, aux_sym__commonmark_single_quote_string_token1, aux_sym__commonmark_single_quote_string_token4, - [109280] = 3, - ACTIONS(7553), 1, - sym__code_span_close, - STATE(2687), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [109291] = 2, - ACTIONS(6250), 1, + [110889] = 2, + ACTIONS(6274), 1, aux_sym__commonmark_double_quote_string_token3, - ACTIONS(6248), 3, + ACTIONS(6272), 3, sym__shortcode_open, aux_sym__commonmark_double_quote_string_token1, aux_sym__commonmark_double_quote_string_token4, - [109300] = 2, - ACTIONS(6254), 1, + [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(6252), 3, + ACTIONS(6276), 3, sym__shortcode_open, aux_sym__commonmark_double_quote_string_token1, aux_sym__commonmark_double_quote_string_token4, - [109309] = 2, - ACTIONS(6262), 1, + [110920] = 2, + ACTIONS(6282), 1, aux_sym__commonmark_double_quote_string_token3, - ACTIONS(6260), 3, + ACTIONS(6280), 3, sym__shortcode_open, aux_sym__commonmark_double_quote_string_token1, aux_sym__commonmark_double_quote_string_token4, - [109318] = 2, - ACTIONS(7547), 1, - sym__pipe_table_delimiter, - ACTIONS(2399), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [109327] = 3, - ACTIONS(7555), 1, - sym__code_span_close, - STATE(2687), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [109338] = 3, - ACTIONS(7557), 1, - sym__code_span_close, - STATE(2687), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [109349] = 4, - ACTIONS(2505), 1, + [110929] = 3, + ACTIONS(2465), 1, sym__soft_line_ending, - ACTIONS(7365), 1, - aux_sym_insert_token1, - STATE(892), 1, + ACTIONS(7402), 1, + sym__whitespace, + STATE(755), 2, sym__soft_line_break, - STATE(2750), 1, - aux_sym__inlines_repeat1, - [109362] = 4, - ACTIONS(2505), 1, + sym__inline_whitespace, + [110940] = 4, + ACTIONS(2465), 1, sym__soft_line_ending, - ACTIONS(7351), 1, - sym__emphasis_close_star, - STATE(883), 1, + ACTIONS(7235), 1, + aux_sym_insert_token1, + STATE(881), 1, sym__soft_line_break, - STATE(2735), 1, + STATE(2680), 1, aux_sym__inlines_repeat1, - [109375] = 3, - ACTIONS(7559), 1, + [110953] = 3, + ACTIONS(7404), 1, sym__code_span_close, - STATE(2687), 1, + STATE(2671), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [109386] = 4, - ACTIONS(2505), 1, - sym__soft_line_ending, - ACTIONS(7365), 1, - sym__superscript_close, - STATE(881), 1, - sym__soft_line_break, - STATE(2731), 1, - aux_sym__inlines_repeat1, - [109399] = 1, - ACTIONS(7561), 4, + [110964] = 1, + ACTIONS(7406), 4, sym__soft_line_ending, sym__key_specifier_token, anon_sym_RBRACE, sym__whitespace, - [109406] = 1, - ACTIONS(3452), 4, + [110971] = 3, + ACTIONS(2465), 1, sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, + ACTIONS(7408), 1, sym__whitespace, - [109413] = 2, - ACTIONS(7547), 1, + 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, sym__pipe_table_delimiter, - ACTIONS(7563), 3, + ACTIONS(6833), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [109422] = 4, - ACTIONS(2505), 1, + [111004] = 4, + ACTIONS(7145), 1, + sym__strikeout_close, + ACTIONS(7147), 1, sym__soft_line_ending, - ACTIONS(7351), 1, - sym__subscript_close, - STATE(886), 1, + STATE(884), 1, sym__soft_line_break, - STATE(2738), 1, + STATE(2670), 1, aux_sym__inlines_repeat1, - [109435] = 4, - ACTIONS(7267), 1, - sym__strong_emphasis_close_underscore, - ACTIONS(7269), 1, + [111017] = 3, + ACTIONS(7413), 1, + sym__code_span_close, + STATE(2671), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7410), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [111028] = 4, + ACTIONS(2465), 1, sym__soft_line_ending, - STATE(887), 1, + ACTIONS(7235), 1, + sym__single_quote_span_close, + STATE(882), 1, sym__soft_line_break, - STATE(2725), 1, + STATE(2674), 1, aux_sym__inlines_repeat1, - [109448] = 4, - ACTIONS(7267), 1, - sym__strong_emphasis_close_star, - ACTIONS(7269), 1, + [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, sym__soft_line_ending, - STATE(884), 1, + ACTIONS(7158), 1, + sym__single_quote_span_close, + STATE(882), 1, sym__soft_line_break, - STATE(2726), 1, + STATE(2709), 1, aux_sym__inlines_repeat1, - [109461] = 3, - ACTIONS(7565), 1, + [111067] = 3, + ACTIONS(7415), 1, sym__code_span_close, - STATE(2687), 1, + STATE(2671), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [109472] = 3, - ACTIONS(2505), 1, + [111078] = 1, + ACTIONS(7417), 4, sym__soft_line_ending, - ACTIONS(7567), 1, + sym__key_specifier_token, + anon_sym_RBRACE, sym__whitespace, - STATE(753), 2, + [111085] = 4, + ACTIONS(2465), 1, + sym__soft_line_ending, + ACTIONS(7235), 1, + sym__strong_emphasis_close_underscore, + STATE(890), 1, sym__soft_line_break, - sym__inline_whitespace, - [109483] = 1, - ACTIONS(7569), 4, + STATE(2637), 1, + aux_sym__inlines_repeat1, + [111098] = 3, + ACTIONS(2465), 1, sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, + ACTIONS(7419), 1, sym__whitespace, - [109490] = 2, - ACTIONS(7537), 1, - sym__pipe_table_delimiter, - ACTIONS(7371), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [109499] = 4, - ACTIONS(7267), 1, - sym__superscript_close, - ACTIONS(7269), 1, + STATE(751), 2, + sym__soft_line_break, + sym__inline_whitespace, + [111109] = 4, + ACTIONS(7145), 1, + sym__subscript_close, + ACTIONS(7147), 1, + sym__soft_line_ending, + STATE(885), 1, + sym__soft_line_break, + STATE(2679), 1, + aux_sym__inlines_repeat1, + [111122] = 4, + ACTIONS(2465), 1, sym__soft_line_ending, + ACTIONS(7158), 1, + aux_sym_insert_token1, STATE(881), 1, sym__soft_line_break, - STATE(2731), 1, + STATE(2701), 1, aux_sym__inlines_repeat1, - [109512] = 4, - ACTIONS(6814), 1, + [111135] = 4, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - STATE(2485), 1, + STATE(2434), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - [109525] = 3, - ACTIONS(2505), 1, + [111148] = 3, + ACTIONS(2465), 1, sym__soft_line_ending, - ACTIONS(7571), 1, + ACTIONS(7421), 1, sym__whitespace, - STATE(761), 2, + STATE(752), 2, sym__soft_line_break, sym__inline_whitespace, - [109536] = 4, - ACTIONS(7001), 1, - anon_sym_COLON, - ACTIONS(7003), 1, - anon_sym_DASH, - STATE(2626), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - STATE(3219), 1, - sym_pipe_table_delimiter_cell, - [109549] = 4, - ACTIONS(2505), 1, + [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, sym__soft_line_ending, - ACTIONS(7365), 1, - sym__emphasis_close_star, - STATE(883), 1, + STATE(890), 1, sym__soft_line_break, - STATE(2694), 1, + STATE(2685), 1, aux_sym__inlines_repeat1, - [109562] = 3, - ACTIONS(7573), 1, + [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(2687), 1, + STATE(2671), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [109573] = 2, - ACTIONS(7307), 1, + [111257] = 2, + ACTIONS(7127), 1, sym__pipe_table_delimiter, - ACTIONS(7371), 3, + ACTIONS(7320), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [109582] = 4, - ACTIONS(2505), 1, + [111266] = 4, + ACTIONS(2465), 1, sym__soft_line_ending, - ACTIONS(7365), 1, + ACTIONS(7235), 1, sym__subscript_close, - STATE(886), 1, + STATE(885), 1, sym__soft_line_break, - STATE(2764), 1, + STATE(2626), 1, aux_sym__inlines_repeat1, - [109595] = 4, - ACTIONS(2505), 1, + [111279] = 1, + ACTIONS(7425), 4, sym__soft_line_ending, - ACTIONS(7365), 1, - sym__double_quote_span_close, - STATE(893), 1, - sym__soft_line_break, - STATE(2700), 1, - aux_sym__inlines_repeat1, - [109608] = 4, - ACTIONS(6814), 1, + sym__key_specifier_token, + anon_sym_RBRACE, + sym__whitespace, + [111286] = 4, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - STATE(2480), 1, + STATE(2424), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - [109621] = 4, - ACTIONS(6686), 1, - sym__key_specifier_token, - ACTIONS(7549), 1, - aux_sym__commonmark_specifier_start_with_class_token2, - STATE(2509), 1, - sym__commonmark_key_value_specifier, - STATE(3084), 1, - sym__commonmark_specifier_start_with_kv, - [109634] = 4, - ACTIONS(6814), 1, + [111299] = 4, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - STATE(2493), 1, + STATE(2421), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - [109647] = 3, - ACTIONS(2505), 1, + [111312] = 1, + ACTIONS(7427), 4, sym__soft_line_ending, - ACTIONS(7575), 1, + sym__key_specifier_token, + anon_sym_RBRACE, sym__whitespace, - STATE(762), 2, - sym__soft_line_break, - sym__inline_whitespace, - [109658] = 3, - ACTIONS(7577), 1, + [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(2687), 1, + STATE(2671), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [109669] = 4, - ACTIONS(6814), 1, - aux_sym_target_token2, - ACTIONS(6820), 1, - sym__shortcode_open, - STATE(2472), 1, - aux_sym_target_repeat1, - STATE(2655), 1, - sym_shortcode, - [109682] = 2, - ACTIONS(7547), 1, - sym__pipe_table_delimiter, - ACTIONS(2403), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [109691] = 2, - ACTIONS(7274), 1, - sym__pipe_table_delimiter, - ACTIONS(2407), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [109700] = 4, - ACTIONS(6814), 1, + [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(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - STATE(2468), 1, + STATE(2447), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - [109713] = 4, - ACTIONS(6686), 1, + [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(7549), 1, + ACTIONS(7388), 1, aux_sym__commonmark_specifier_start_with_class_token2, - STATE(2509), 1, + STATE(2479), 1, sym__commonmark_key_value_specifier, - STATE(2894), 1, + STATE(3289), 1, sym__commonmark_specifier_start_with_kv, - [109726] = 4, - ACTIONS(7267), 1, - aux_sym_insert_token1, - ACTIONS(7269), 1, + [111389] = 4, + ACTIONS(7145), 1, + sym__emphasis_close_star, + ACTIONS(7147), 1, sym__soft_line_ending, - STATE(892), 1, + STATE(891), 1, sym__soft_line_break, - STATE(2750), 1, + STATE(2703), 1, aux_sym__inlines_repeat1, - [109739] = 4, - ACTIONS(6814), 1, + [111402] = 4, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - STATE(2467), 1, + STATE(2430), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - [109752] = 4, - ACTIONS(7267), 1, + [111415] = 4, + ACTIONS(7145), 1, + sym__superscript_close, + ACTIONS(7147), 1, + sym__soft_line_ending, + STATE(886), 1, + sym__soft_line_break, + STATE(2705), 1, + aux_sym__inlines_repeat1, + [111428] = 3, + ACTIONS(7433), 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, + [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, + sym__soft_line_ending, + ACTIONS(7235), 1, + sym__strikeout_close, + STATE(884), 1, + sym__soft_line_break, + STATE(2720), 1, + aux_sym__inlines_repeat1, + [111465] = 4, + ACTIONS(7145), 1, sym__single_quote_span_close, - ACTIONS(7269), 1, + ACTIONS(7147), 1, sym__soft_line_ending, - STATE(890), 1, + STATE(882), 1, sym__soft_line_break, - STATE(2752), 1, + STATE(2709), 1, aux_sym__inlines_repeat1, - [109765] = 2, - ACTIONS(7274), 1, + [111478] = 2, + ACTIONS(7398), 1, sym__pipe_table_delimiter, - ACTIONS(2403), 3, + ACTIONS(7435), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [109774] = 4, - ACTIONS(6814), 1, - aux_sym_target_token2, - ACTIONS(6820), 1, - sym__shortcode_open, - STATE(2499), 1, - aux_sym_target_repeat1, - STATE(2655), 1, - sym_shortcode, - [109787] = 4, - ACTIONS(2505), 1, + [111487] = 2, + ACTIONS(7439), 1, + sym__pipe_table_delimiter, + ACTIONS(7437), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [111496] = 4, + ACTIONS(7145), 1, + sym__strong_emphasis_close_star, + ACTIONS(7147), 1, sym__soft_line_ending, - ACTIONS(7351), 1, - sym__emphasis_close_underscore, STATE(888), 1, sym__soft_line_break, - STATE(2672), 1, + STATE(2712), 1, aux_sym__inlines_repeat1, - [109800] = 4, - ACTIONS(6814), 1, - aux_sym_target_token2, - ACTIONS(6820), 1, - sym__shortcode_open, - STATE(2481), 1, - aux_sym_target_repeat1, - STATE(2655), 1, - sym_shortcode, - [109813] = 4, - ACTIONS(7502), 1, - anon_sym_LBRACE, - ACTIONS(7579), 1, - sym__commonmark_naked_value, - ACTIONS(7581), 1, + [111509] = 2, + ACTIONS(7288), 1, + sym__pipe_table_delimiter, + ACTIONS(6927), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [111518] = 1, + ACTIONS(6877), 4, + sym__soft_line_ending, + sym__key_specifier_token, + anon_sym_RBRACE, sym__whitespace, - STATE(3129), 1, - sym__pandoc_attr_specifier, - [109826] = 4, - ACTIONS(6814), 1, + [111525] = 2, + ACTIONS(7127), 1, + sym__pipe_table_delimiter, + ACTIONS(2433), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [111534] = 4, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - STATE(2473), 1, + STATE(2425), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - [109839] = 4, - ACTIONS(2505), 1, + [111547] = 4, + ACTIONS(2465), 1, sym__soft_line_ending, - ACTIONS(7351), 1, - sym__strong_emphasis_close_underscore, - STATE(887), 1, + ACTIONS(7235), 1, + sym__strong_emphasis_close_star, + STATE(888), 1, sym__soft_line_break, - STATE(2770), 1, + STATE(2622), 1, aux_sym__inlines_repeat1, - [109852] = 2, - ACTIONS(7274), 1, - sym__pipe_table_delimiter, - ACTIONS(2399), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [109861] = 4, - ACTIONS(6686), 1, - sym__key_specifier_token, - ACTIONS(7549), 1, - aux_sym__commonmark_specifier_start_with_class_token2, - STATE(2524), 1, - sym__commonmark_key_value_specifier, - STATE(3320), 1, - sym__commonmark_specifier_start_with_kv, - [109874] = 3, - ACTIONS(7583), 1, + [111560] = 3, + ACTIONS(7441), 1, sym__code_span_close, - STATE(2687), 1, + STATE(2671), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [109885] = 4, - ACTIONS(6814), 1, - aux_sym_target_token2, - ACTIONS(6820), 1, - sym__shortcode_open, - STATE(2490), 1, - aux_sym_target_repeat1, - STATE(2655), 1, - sym_shortcode, - [109898] = 4, - ACTIONS(7267), 1, - sym__subscript_close, - ACTIONS(7269), 1, + [111571] = 2, + ACTIONS(7439), 1, + sym__pipe_table_delimiter, + ACTIONS(7340), 3, + sym__line_ending, + sym__eof, + sym__pipe_table_line_ending, + [111580] = 4, + ACTIONS(2465), 1, sym__soft_line_ending, - STATE(886), 1, + ACTIONS(7158), 1, + sym__strikeout_close, + STATE(884), 1, sym__soft_line_break, - STATE(2764), 1, + STATE(2670), 1, aux_sym__inlines_repeat1, - [109911] = 4, - ACTIONS(6814), 1, + [111593] = 4, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - STATE(2479), 1, + STATE(2451), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - [109924] = 2, - ACTIONS(7537), 1, + [111606] = 2, + ACTIONS(7398), 1, sym__pipe_table_delimiter, - ACTIONS(7585), 3, + ACTIONS(2433), 3, sym__line_ending, sym__eof, sym__pipe_table_line_ending, - [109933] = 4, - ACTIONS(6814), 1, - aux_sym_target_token2, - ACTIONS(6820), 1, - sym__shortcode_open, - STATE(2501), 1, - aux_sym_target_repeat1, - STATE(2655), 1, - sym_shortcode, - [109946] = 4, - ACTIONS(6814), 1, - aux_sym_target_token2, - ACTIONS(6820), 1, - sym__shortcode_open, - STATE(2483), 1, - aux_sym_target_repeat1, - STATE(2655), 1, - sym_shortcode, - [109959] = 4, - ACTIONS(6814), 1, - aux_sym_target_token2, - ACTIONS(6820), 1, - sym__shortcode_open, - STATE(2491), 1, - aux_sym_target_repeat1, - STATE(2655), 1, - sym_shortcode, - [109972] = 4, - ACTIONS(2505), 1, - sym__soft_line_ending, - ACTIONS(7365), 1, - sym__strong_emphasis_close_underscore, - STATE(887), 1, - sym__soft_line_break, - STATE(2725), 1, - aux_sym__inlines_repeat1, - [109985] = 1, - ACTIONS(7587), 4, - sym__soft_line_ending, - sym__key_specifier_token, - anon_sym_RBRACE, - sym__whitespace, - [109992] = 4, - ACTIONS(6814), 1, + [111615] = 4, + ACTIONS(6674), 1, aux_sym_target_token2, - ACTIONS(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - STATE(2495), 1, + STATE(2437), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - [110005] = 4, - ACTIONS(6814), 1, + [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(6820), 1, + ACTIONS(6680), 1, sym__shortcode_open, - STATE(2474), 1, + STATE(2431), 1, aux_sym_target_repeat1, - STATE(2655), 1, + STATE(2560), 1, sym_shortcode, - [110018] = 4, - ACTIONS(7502), 1, + [111650] = 4, + ACTIONS(7368), 1, anon_sym_LBRACE, - ACTIONS(7589), 1, + ACTIONS(7443), 1, sym__commonmark_naked_value, - ACTIONS(7591), 1, + 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(3166), 1, + STATE(3089), 1, sym__pandoc_attr_specifier, - [110031] = 4, - ACTIONS(7502), 1, + [111676] = 4, + ACTIONS(7368), 1, anon_sym_LBRACE, - ACTIONS(7593), 1, + ACTIONS(7451), 1, sym__commonmark_naked_value, - ACTIONS(7595), 1, + ACTIONS(7453), 1, sym_fenced_div_note_id, - STATE(3144), 1, + STATE(3093), 1, sym__pandoc_attr_specifier, - [110044] = 4, - ACTIONS(2505), 1, - sym__soft_line_ending, - ACTIONS(7351), 1, - sym__strikeout_close, - STATE(882), 1, - sym__soft_line_break, - STATE(2678), 1, - aux_sym__inlines_repeat1, - [110057] = 4, - ACTIONS(7502), 1, + [111689] = 4, + ACTIONS(7368), 1, anon_sym_LBRACE, - ACTIONS(7597), 1, + ACTIONS(7455), 1, sym__commonmark_naked_value, - ACTIONS(7599), 1, + ACTIONS(7457), 1, sym__whitespace, - STATE(3123), 1, + STATE(3105), 1, sym__pandoc_attr_specifier, - [110070] = 1, - ACTIONS(3444), 4, - sym__pipe_table_delimiter, - anon_sym_COLON, - anon_sym_DASH, + [111702] = 3, + ACTIONS(7459), 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, + [111713] = 3, + ACTIONS(7461), 1, sym__whitespace, - [110077] = 3, - ACTIONS(27), 1, + STATE(3057), 1, + aux_sym_shortcode_escaped_repeat1, + STATE(3215), 1, + aux_sym_shortcode_repeat1, + [111723] = 3, + ACTIONS(181), 1, sym__line_ending, - ACTIONS(7601), 1, + ACTIONS(7463), 1, sym__eof, - STATE(565), 1, + STATE(384), 1, sym__newline, - [110087] = 3, - ACTIONS(2217), 1, + [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(7603), 1, + ACTIONS(7467), 1, aux_sym_pandoc_span_token1, - STATE(1162), 1, + STATE(1146), 1, sym_target, - [110097] = 3, - ACTIONS(2217), 1, + [111753] = 3, + ACTIONS(2227), 1, aux_sym_target_token1, - ACTIONS(7605), 1, + ACTIONS(7469), 1, aux_sym_pandoc_span_token1, - STATE(1163), 1, + STATE(1147), 1, sym_target, - [110107] = 3, - ACTIONS(2177), 1, + [111763] = 3, + ACTIONS(2175), 1, aux_sym_target_token1, - ACTIONS(7607), 1, + ACTIONS(7471), 1, aux_sym_pandoc_span_token1, - STATE(1483), 1, + STATE(1384), 1, sym_target, - [110117] = 3, - ACTIONS(7609), 1, - sym__line_ending, - ACTIONS(7611), 1, - sym__eof, - STATE(3410), 1, - sym__newline, - [110127] = 3, - ACTIONS(6526), 1, - sym__key_specifier_token, - ACTIONS(6656), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [110137] = 3, - ACTIONS(2177), 1, + [111773] = 3, + ACTIONS(2175), 1, aux_sym_target_token1, - ACTIONS(7613), 1, + ACTIONS(7473), 1, aux_sym_pandoc_span_token1, - STATE(1485), 1, + STATE(1385), 1, sym_target, - [110147] = 3, + [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(6658), 1, + ACTIONS(6524), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [110157] = 3, - ACTIONS(6526), 1, + [111803] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(7615), 1, + ACTIONS(7475), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - [110167] = 3, - ACTIONS(6522), 1, + [111813] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(7617), 1, + ACTIONS(7477), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [110177] = 3, - ACTIONS(27), 1, + [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(7619), 1, + ACTIONS(7481), 1, sym__eof, - STATE(571), 1, + STATE(399), 1, sym__newline, - [110187] = 3, - ACTIONS(183), 1, + [111843] = 3, + ACTIONS(181), 1, sym__line_ending, - ACTIONS(7621), 1, + ACTIONS(7483), 1, sym__eof, - STATE(418), 1, + STATE(335), 1, sym__newline, - [110197] = 3, - ACTIONS(6522), 1, + [111853] = 3, + ACTIONS(2330), 1, + sym__line_ending, + ACTIONS(7485), 1, + sym__whitespace, + ACTIONS(7487), 1, + sym__pipe_table_delimiter, + [111863] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6598), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - [110207] = 3, - ACTIONS(2067), 1, - aux_sym_target_token1, - ACTIONS(7623), 1, - aux_sym_pandoc_span_token1, - STATE(972), 1, - sym_target, - [110217] = 3, - ACTIONS(2177), 1, - aux_sym_target_token1, - ACTIONS(7625), 1, - aux_sym_pandoc_span_token1, - STATE(1492), 1, - sym_target, - [110227] = 3, - ACTIONS(2177), 1, + 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(7627), 1, + ACTIONS(7489), 1, aux_sym_pandoc_span_token1, - STATE(1296), 1, + STATE(1041), 1, sym_target, - [110237] = 3, - ACTIONS(7629), 1, - sym__line_ending, - ACTIONS(7631), 1, - sym__eof, - STATE(2133), 1, - sym__newline, - [110247] = 3, - ACTIONS(6526), 1, - sym__key_specifier_token, - ACTIONS(6540), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [110257] = 3, - ACTIONS(6526), 1, - sym__key_specifier_token, - ACTIONS(6602), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [110267] = 3, - ACTIONS(2407), 1, - sym__line_ending, - ACTIONS(7633), 1, - sym__whitespace, - ACTIONS(7635), 1, - sym__pipe_table_delimiter, - [110277] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6604), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - [110287] = 3, - ACTIONS(2067), 1, + [111883] = 3, + ACTIONS(2042), 1, aux_sym_target_token1, - ACTIONS(7637), 1, + ACTIONS(7491), 1, aux_sym_pandoc_span_token1, - STATE(974), 1, + STATE(1031), 1, sym_target, - [110297] = 3, - ACTIONS(6526), 1, - sym__key_specifier_token, - ACTIONS(7639), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [110307] = 3, - ACTIONS(2227), 1, + [111893] = 3, + ACTIONS(2237), 1, aux_sym_target_token1, - ACTIONS(7641), 1, + ACTIONS(7493), 1, aux_sym_pandoc_span_token1, - STATE(1181), 1, + STATE(1172), 1, sym_target, - [110317] = 2, - ACTIONS(7645), 1, - sym__whitespace, - ACTIONS(7643), 2, - sym__soft_line_ending, - aux_sym_inline_note_token1, - [110325] = 3, - ACTIONS(2227), 1, + [111903] = 3, + ACTIONS(2237), 1, aux_sym_target_token1, - ACTIONS(7647), 1, + ACTIONS(7495), 1, aux_sym_pandoc_span_token1, - STATE(1183), 1, + STATE(1174), 1, sym_target, - [110335] = 3, - ACTIONS(6522), 1, + [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(7649), 1, + ACTIONS(6430), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [110345] = 3, - ACTIONS(6526), 1, + [111933] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(7651), 1, + ACTIONS(6528), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - [110355] = 3, - ACTIONS(113), 1, - sym__line_ending, - ACTIONS(7653), 1, - sym__eof, - STATE(543), 1, - sym__newline, - [110365] = 3, - ACTIONS(2227), 1, + [111943] = 3, + ACTIONS(2237), 1, aux_sym_target_token1, - ACTIONS(7655), 1, + ACTIONS(7499), 1, aux_sym_pandoc_span_token1, - STATE(1189), 1, + STATE(1182), 1, sym_target, - [110375] = 3, - ACTIONS(2227), 1, + [111953] = 3, + ACTIONS(2237), 1, aux_sym_target_token1, - ACTIONS(7657), 1, + ACTIONS(7501), 1, aux_sym_pandoc_span_token1, - STATE(1190), 1, + STATE(1183), 1, sym_target, - [110385] = 3, - ACTIONS(183), 1, - sym__line_ending, - ACTIONS(7659), 1, - sym__eof, - STATE(471), 1, - sym__newline, - [110395] = 3, - ACTIONS(6526), 1, - sym__key_specifier_token, - ACTIONS(6666), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [110405] = 3, - ACTIONS(2407), 1, - sym__line_ending, - ACTIONS(7661), 1, - sym__whitespace, - ACTIONS(7663), 1, - sym__pipe_table_delimiter, - [110415] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6546), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - [110425] = 3, - ACTIONS(6526), 1, + [111963] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(7665), 1, + ACTIONS(7503), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - [110435] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(7667), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - [110445] = 1, - ACTIONS(7643), 3, - sym__line_ending, - sym__soft_line_ending, - sym__eof, - [110451] = 3, - ACTIONS(27), 1, - sym__line_ending, - ACTIONS(7669), 1, - sym__eof, - STATE(514), 1, - sym__newline, - [110461] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(7671), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - [110471] = 3, - ACTIONS(6522), 1, + [111973] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6542), 1, + ACTIONS(7505), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [110481] = 3, - ACTIONS(113), 1, - sym__line_ending, - ACTIONS(7673), 1, - sym__eof, - STATE(563), 1, - sym__newline, - [110491] = 3, - ACTIONS(183), 1, - sym__line_ending, - ACTIONS(7675), 1, - sym__eof, - STATE(481), 1, - sym__newline, - [110501] = 3, - ACTIONS(7677), 1, - sym__line_ending, - ACTIONS(7679), 1, - sym__eof, - STATE(1544), 1, - sym__newline, - [110511] = 3, - ACTIONS(7681), 1, + [111983] = 3, + ACTIONS(181), 1, sym__line_ending, - ACTIONS(7683), 1, + ACTIONS(7507), 1, sym__eof, - STATE(1864), 1, + STATE(375), 1, sym__newline, - [110521] = 3, - ACTIONS(6526), 1, + [111993] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(7685), 1, + ACTIONS(6480), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - [110531] = 3, - ACTIONS(183), 1, - sym__line_ending, - ACTIONS(7687), 1, - sym__eof, - STATE(482), 1, - sym__newline, - [110541] = 3, - ACTIONS(183), 1, - sym__line_ending, - ACTIONS(7689), 1, - sym__eof, - STATE(483), 1, - sym__newline, - [110551] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(7691), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - [110561] = 3, - ACTIONS(2237), 1, - aux_sym_target_token1, - ACTIONS(7693), 1, - aux_sym_pandoc_span_token1, - STATE(1208), 1, - sym_target, - [110571] = 3, - ACTIONS(183), 1, - sym__line_ending, - ACTIONS(7695), 1, - sym__eof, - STATE(484), 1, - sym__newline, - [110581] = 3, - ACTIONS(2237), 1, - aux_sym_target_token1, - ACTIONS(7697), 1, - aux_sym_pandoc_span_token1, - STATE(1210), 1, - sym_target, - [110591] = 1, - ACTIONS(3452), 3, - sym__key_specifier_token, - anon_sym_RBRACE, - aux_sym__commonmark_specifier_start_with_class_token1, - [110597] = 3, - ACTIONS(183), 1, - sym__line_ending, - ACTIONS(7699), 1, - sym__eof, - STATE(485), 1, - sym__newline, - [110607] = 3, - ACTIONS(2237), 1, - aux_sym_target_token1, - ACTIONS(7701), 1, - aux_sym_pandoc_span_token1, - STATE(1216), 1, - sym_target, - [110617] = 3, - ACTIONS(2237), 1, - aux_sym_target_token1, - ACTIONS(7703), 1, - aux_sym_pandoc_span_token1, - STATE(1217), 1, - sym_target, - [110627] = 3, - ACTIONS(183), 1, - sym__line_ending, - ACTIONS(7705), 1, - sym__eof, - STATE(486), 1, - sym__newline, - [110637] = 3, - ACTIONS(7707), 1, - sym__whitespace, - STATE(3236), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3252), 1, - aux_sym_shortcode_escaped_repeat2, - [110647] = 3, - ACTIONS(7709), 1, + [112003] = 3, + ACTIONS(25), 1, sym__line_ending, - ACTIONS(7711), 1, + ACTIONS(7509), 1, sym__eof, - STATE(2039), 1, + STATE(476), 1, sym__newline, - [110657] = 3, - ACTIONS(6526), 1, - sym__key_specifier_token, - ACTIONS(6608), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [110667] = 3, - ACTIONS(6522), 1, + [112013] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6610), 1, + ACTIONS(6514), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [110677] = 3, - ACTIONS(6526), 1, + [112023] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(7713), 1, + ACTIONS(7511), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - [110687] = 3, - ACTIONS(6522), 1, + [112033] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(7715), 1, + ACTIONS(7513), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [110697] = 3, - ACTIONS(7717), 1, + [112043] = 3, + ACTIONS(7515), 1, sym__whitespace, - STATE(3224), 1, - aux_sym_shortcode_repeat1, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [110707] = 3, - ACTIONS(7609), 1, - sym__line_ending, - ACTIONS(7719), 1, - sym__eof, - STATE(3977), 1, - sym__newline, - [110717] = 3, - ACTIONS(113), 1, - sym__line_ending, - ACTIONS(7721), 1, - sym__eof, - STATE(579), 1, - sym__newline, - [110727] = 3, - ACTIONS(113), 1, - sym__line_ending, - ACTIONS(7723), 1, - sym__eof, - STATE(580), 1, - sym__newline, - [110737] = 3, - ACTIONS(7725), 1, - sym__line_ending, - ACTIONS(7727), 1, - sym__eof, - STATE(1635), 1, - sym__newline, - [110747] = 3, - ACTIONS(113), 1, + 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(7729), 1, + ACTIONS(7519), 1, sym__eof, STATE(581), 1, sym__newline, - [110757] = 3, - ACTIONS(2187), 1, + [112073] = 3, + ACTIONS(2116), 1, aux_sym_target_token1, - ACTIONS(7731), 1, + ACTIONS(7521), 1, aux_sym_pandoc_span_token1, - STATE(1071), 1, + STATE(1336), 1, sym_target, - [110767] = 3, - ACTIONS(113), 1, + [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(7733), 1, + ACTIONS(7523), 1, sym__eof, - STATE(582), 1, + STATE(594), 1, sym__newline, - [110777] = 3, - ACTIONS(7735), 1, + [112103] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7737), 1, + ACTIONS(7527), 1, sym__eof, - STATE(2128), 1, + STATE(3843), 1, sym__newline, - [110787] = 3, - ACTIONS(2247), 1, + [112113] = 2, + ACTIONS(7529), 1, + aux_sym_pandoc_span_token1, + ACTIONS(7531), 2, + sym__soft_line_ending, aux_sym_target_token1, - ACTIONS(7739), 1, + [112121] = 3, + ACTIONS(2042), 1, + aux_sym_target_token1, + ACTIONS(7533), 1, aux_sym_pandoc_span_token1, - STATE(1235), 1, + STATE(1042), 1, sym_target, - [110797] = 3, - ACTIONS(2187), 1, + [112131] = 3, + ACTIONS(2185), 1, aux_sym_target_token1, - ACTIONS(7741), 1, + ACTIONS(7535), 1, aux_sym_pandoc_span_token1, - STATE(1073), 1, + STATE(1402), 1, sym_target, - [110807] = 3, + [112141] = 3, ACTIONS(2247), 1, aux_sym_target_token1, - ACTIONS(7743), 1, + 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(1237), 1, + STATE(955), 1, sym_target, - [110817] = 3, - ACTIONS(113), 1, + [112161] = 3, + ACTIONS(25), 1, sym__line_ending, - ACTIONS(7745), 1, + ACTIONS(7541), 1, sym__eof, - STATE(585), 1, + STATE(582), 1, sym__newline, - [110827] = 3, + [112171] = 3, ACTIONS(2247), 1, aux_sym_target_token1, - ACTIONS(7747), 1, + ACTIONS(7543), 1, aux_sym_pandoc_span_token1, - STATE(1244), 1, + STATE(961), 1, sym_target, - [110837] = 3, + [112181] = 3, ACTIONS(2247), 1, aux_sym_target_token1, - ACTIONS(7749), 1, + ACTIONS(7545), 1, aux_sym_pandoc_span_token1, - STATE(1245), 1, + STATE(962), 1, sym_target, - [110847] = 3, - ACTIONS(183), 1, - sym__line_ending, - ACTIONS(7751), 1, - sym__eof, - STATE(389), 1, - sym__newline, - [110857] = 3, - ACTIONS(2463), 1, - sym__line_ending, - ACTIONS(7635), 1, - sym__pipe_table_delimiter, - ACTIONS(7753), 1, - sym__whitespace, - [110867] = 3, - ACTIONS(113), 1, + [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__line_ending, - ACTIONS(7755), 1, + ACTIONS(7549), 1, sym__eof, - STATE(586), 1, + STATE(420), 1, sym__newline, - [110877] = 1, - ACTIONS(7413), 3, + [112211] = 3, + ACTIONS(2433), 1, sym__line_ending, + ACTIONS(7487), 1, sym__pipe_table_delimiter, + ACTIONS(7551), 1, sym__whitespace, - [110883] = 3, - ACTIONS(6526), 1, + [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(6588), 1, + ACTIONS(6444), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - [110893] = 3, - ACTIONS(6522), 1, + [112241] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6590), 1, + ACTIONS(6454), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [110903] = 3, - ACTIONS(6526), 1, + [112251] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(7757), 1, + ACTIONS(7555), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - [110913] = 3, - ACTIONS(6522), 1, + [112261] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(7759), 1, + ACTIONS(7557), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [110923] = 3, - ACTIONS(2187), 1, + [112271] = 3, + ACTIONS(2185), 1, aux_sym_target_token1, - ACTIONS(7761), 1, + ACTIONS(7559), 1, aux_sym_pandoc_span_token1, - STATE(1080), 1, + STATE(1411), 1, sym_target, - [110933] = 3, - ACTIONS(2187), 1, + [112281] = 3, + ACTIONS(2185), 1, aux_sym_target_token1, - ACTIONS(7763), 1, + ACTIONS(7561), 1, aux_sym_pandoc_span_token1, - STATE(1081), 1, + STATE(1412), 1, sym_target, - [110943] = 3, - ACTIONS(7349), 1, - sym__line_ending, - ACTIONS(7663), 1, - sym__pipe_table_delimiter, - ACTIONS(7765), 1, - sym__whitespace, - [110953] = 3, - ACTIONS(6526), 1, + [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, - ACTIONS(6624), 1, + 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(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - [110963] = 3, - ACTIONS(7767), 1, + [112319] = 3, + ACTIONS(111), 1, sym__line_ending, - ACTIONS(7769), 1, + ACTIONS(7567), 1, sym__eof, - STATE(1253), 1, + STATE(502), 1, sym__newline, - [110973] = 3, - ACTIONS(7194), 1, - sym__shortcode_open, - ACTIONS(7771), 1, - aux_sym__commonmark_single_quote_string_token2, - STATE(2572), 1, - sym_shortcode, - [110983] = 3, - ACTIONS(7186), 1, - sym__shortcode_open, - ACTIONS(7773), 1, - aux_sym__commonmark_double_quote_string_token2, - STATE(2579), 1, - sym_shortcode, - [110993] = 3, - ACTIONS(6522), 1, + [112329] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6626), 1, + ACTIONS(6452), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111003] = 3, - ACTIONS(6526), 1, + [112339] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(7775), 1, + ACTIONS(7569), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - [111013] = 3, + [112349] = 3, ACTIONS(2257), 1, aux_sym_target_token1, - ACTIONS(7777), 1, + ACTIONS(7571), 1, aux_sym_pandoc_span_token1, - STATE(1046), 1, + STATE(1755), 1, sym_target, - [111023] = 1, - ACTIONS(7136), 3, - sym__soft_line_ending, - anon_sym_RBRACE, - sym__whitespace, - [111029] = 3, + [112359] = 3, ACTIONS(2257), 1, aux_sym_target_token1, - ACTIONS(7779), 1, + ACTIONS(7573), 1, aux_sym_pandoc_span_token1, - STATE(1048), 1, + STATE(1757), 1, sym_target, - [111039] = 3, - ACTIONS(6522), 1, + [112369] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(7781), 1, + ACTIONS(7575), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111049] = 3, + [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, + sym__key_specifier_token, + ACTIONS(6500), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + [112399] = 3, ACTIONS(2257), 1, aux_sym_target_token1, - ACTIONS(7783), 1, + ACTIONS(7579), 1, aux_sym_pandoc_span_token1, - STATE(975), 1, + STATE(1767), 1, sym_target, - [111059] = 3, + [112409] = 3, ACTIONS(2257), 1, aux_sym_target_token1, - ACTIONS(7785), 1, + ACTIONS(7581), 1, aux_sym_pandoc_span_token1, - STATE(939), 1, + STATE(1768), 1, sym_target, - [111069] = 1, - ACTIONS(7787), 3, - sym__code_span_close, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [111075] = 3, - ACTIONS(7609), 1, + [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, sym__line_ending, - ACTIONS(7789), 1, + ACTIONS(7585), 1, sym__eof, - STATE(3573), 1, + STATE(518), 1, sym__newline, - [111085] = 3, - ACTIONS(6686), 1, - sym__key_specifier_token, - ACTIONS(7309), 1, - anon_sym_RBRACE, - STATE(2704), 1, - sym__commonmark_key_value_specifier, - [111095] = 3, - ACTIONS(6526), 1, + [112439] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6616), 1, + ACTIONS(6498), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - [111105] = 3, - ACTIONS(6522), 1, + [112449] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6618), 1, + ACTIONS(6504), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111115] = 3, - ACTIONS(6526), 1, + [112459] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(7791), 1, + ACTIONS(7587), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - [111125] = 3, - ACTIONS(6522), 1, + [112469] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(7793), 1, + ACTIONS(7589), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111135] = 2, - STATE(2705), 1, - aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, - aux_sym_pandoc_code_span_token1, - aux_sym_pandoc_code_span_token2, - [111143] = 3, - ACTIONS(6526), 1, + [112479] = 1, + ACTIONS(7591), 3, + sym__soft_line_ending, + 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, + sym__line_ending, + ACTIONS(7595), 1, + sym__eof, + STATE(3772), 1, + sym__newline, + [112505] = 3, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(6592), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, + ACTIONS(6851), 1, + anon_sym_RBRACE, + STATE(2714), 1, sym__commonmark_key_value_specifier, - [111153] = 3, - ACTIONS(2167), 1, + [112515] = 3, + ACTIONS(2155), 1, aux_sym_target_token1, - ACTIONS(7795), 1, + ACTIONS(7597), 1, aux_sym_pandoc_span_token1, - STATE(1458), 1, + STATE(1279), 1, sym_target, - [111163] = 3, - ACTIONS(7797), 1, - sym__line_ending, - ACTIONS(7799), 1, - sym__eof, - STATE(2138), 1, - sym__newline, - [111173] = 3, - ACTIONS(7801), 1, + [112525] = 3, + ACTIONS(7320), 1, sym__line_ending, - ACTIONS(7803), 1, - sym__eof, - STATE(2318), 1, - sym__newline, - [111183] = 3, - ACTIONS(2167), 1, + ACTIONS(7487), 1, + sym__pipe_table_delimiter, + ACTIONS(7599), 1, + sym__whitespace, + [112535] = 3, + ACTIONS(2155), 1, aux_sym_target_token1, - ACTIONS(7805), 1, + ACTIONS(7601), 1, aux_sym_pandoc_span_token1, - STATE(1460), 1, + STATE(1281), 1, sym_target, - [111193] = 3, - ACTIONS(27), 1, - sym__line_ending, - ACTIONS(7807), 1, - sym__eof, - STATE(498), 1, - sym__newline, - [111203] = 1, - ACTIONS(7809), 3, + [112545] = 1, + ACTIONS(7018), 3, sym__soft_line_ending, anon_sym_RBRACE, sym__whitespace, - [111209] = 3, - ACTIONS(6522), 1, + [112551] = 3, + ACTIONS(2433), 1, + sym__line_ending, + ACTIONS(7603), 1, + sym__whitespace, + ACTIONS(7605), 1, + sym__pipe_table_delimiter, + [112561] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6594), 1, + ACTIONS(6464), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + [112571] = 3, + ACTIONS(6382), 1, + sym__key_specifier_token, + ACTIONS(6466), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111219] = 3, + [112581] = 3, ACTIONS(2267), 1, aux_sym_target_token1, - ACTIONS(7811), 1, + ACTIONS(7607), 1, aux_sym_pandoc_span_token1, - STATE(1805), 1, + STATE(927), 1, sym_target, - [111229] = 3, + [112591] = 3, ACTIONS(2267), 1, aux_sym_target_token1, - ACTIONS(7813), 1, - aux_sym_pandoc_span_token1, - STATE(1807), 1, - sym_target, - [111239] = 3, - ACTIONS(7815), 1, - sym__whitespace, - STATE(2836), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3112), 1, - aux_sym_shortcode_escaped_repeat2, - [111249] = 3, - ACTIONS(2197), 1, - aux_sym_target_token1, - ACTIONS(7817), 1, + ACTIONS(7609), 1, aux_sym_pandoc_span_token1, - STATE(1100), 1, + STATE(929), 1, sym_target, - [111259] = 3, - ACTIONS(7819), 1, - sym__whitespace, - STATE(2842), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3225), 1, - aux_sym_shortcode_repeat1, - [111269] = 3, - ACTIONS(2267), 1, - aux_sym_target_token1, - ACTIONS(7821), 1, + [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, + aux_sym_target_token1, + ACTIONS(7615), 1, aux_sym_pandoc_span_token1, - STATE(1817), 1, + STATE(930), 1, sym_target, - [111279] = 3, + [112631] = 3, ACTIONS(2267), 1, aux_sym_target_token1, - ACTIONS(7823), 1, + ACTIONS(7617), 1, aux_sym_pandoc_span_token1, - STATE(1818), 1, + STATE(914), 1, sym_target, - [111289] = 3, - ACTIONS(7825), 1, - sym__line_ending, - ACTIONS(7827), 1, - sym__eof, - STATE(1319), 1, - sym__newline, - [111299] = 3, - ACTIONS(6526), 1, - sym__key_specifier_token, - ACTIONS(6534), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [111309] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6536), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - [111319] = 3, - ACTIONS(6526), 1, - sym__key_specifier_token, - ACTIONS(7829), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [111329] = 3, - ACTIONS(6522), 1, + [112641] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(7831), 1, + ACTIONS(7619), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111339] = 3, - ACTIONS(6686), 1, - sym__key_specifier_token, - ACTIONS(7017), 1, - anon_sym_RBRACE, - STATE(2704), 1, - sym__commonmark_key_value_specifier, - [111349] = 3, - ACTIONS(7609), 1, - sym__line_ending, - ACTIONS(7833), 1, - sym__eof, - STATE(3497), 1, - sym__newline, - [111359] = 3, - ACTIONS(2197), 1, + [112651] = 3, + ACTIONS(2201), 1, aux_sym_target_token1, - ACTIONS(7835), 1, + ACTIONS(7621), 1, aux_sym_pandoc_span_token1, - STATE(1102), 1, + STATE(1434), 1, sym_target, - [111369] = 2, - ACTIONS(7837), 1, - sym_block_continuation, - ACTIONS(3157), 2, - sym__line_ending, - sym__eof, - [111377] = 3, - ACTIONS(27), 1, + [112661] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7839), 1, + ACTIONS(7623), 1, sym__eof, - STATE(566), 1, + STATE(3409), 1, sym__newline, - [111387] = 3, - ACTIONS(7841), 1, + [112671] = 1, + ACTIONS(7281), 3, sym__line_ending, - ACTIONS(7843), 1, sym__eof, - STATE(944), 1, - sym__newline, - [111397] = 3, - ACTIONS(6526), 1, + sym__pipe_table_line_ending, + [112677] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(7845), 1, + ACTIONS(6394), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - [111407] = 3, - ACTIONS(2167), 1, - aux_sym_target_token1, - ACTIONS(7847), 1, - aux_sym_pandoc_span_token1, - STATE(1466), 1, - sym_target, - [111417] = 3, - ACTIONS(7849), 1, - sym__line_ending, - ACTIONS(7851), 1, - sym__eof, - STATE(3775), 1, - sym__newline, - [111427] = 3, - ACTIONS(2197), 1, - aux_sym_target_token1, - ACTIONS(7853), 1, - aux_sym_pandoc_span_token1, - STATE(1108), 1, - sym_target, - [111437] = 3, - ACTIONS(2197), 1, - aux_sym_target_token1, - ACTIONS(7855), 1, - aux_sym_pandoc_span_token1, - STATE(1109), 1, - sym_target, - [111447] = 3, - ACTIONS(2131), 1, - aux_sym_target_token1, - ACTIONS(7857), 1, - aux_sym_pandoc_span_token1, - STATE(929), 1, - sym_target, - [111457] = 3, - ACTIONS(2131), 1, - aux_sym_target_token1, - ACTIONS(7859), 1, - aux_sym_pandoc_span_token1, - STATE(921), 1, - sym_target, - [111467] = 3, - ACTIONS(2167), 1, - aux_sym_target_token1, - ACTIONS(7861), 1, - aux_sym_pandoc_span_token1, - STATE(1467), 1, - sym_target, - [111477] = 2, - ACTIONS(7863), 1, - sym_block_continuation, - ACTIONS(3163), 2, - sym__shortcode_open, - aux_sym_target_token2, - [111485] = 3, - ACTIONS(2131), 1, - aux_sym_target_token1, - ACTIONS(7865), 1, - aux_sym_pandoc_span_token1, - STATE(919), 1, - sym_target, - [111495] = 3, - ACTIONS(2131), 1, + [112687] = 3, + ACTIONS(2201), 1, aux_sym_target_token1, - ACTIONS(7867), 1, + ACTIONS(7625), 1, aux_sym_pandoc_span_token1, - STATE(930), 1, + STATE(1436), 1, sym_target, - [111505] = 3, - ACTIONS(7609), 1, - sym__line_ending, - ACTIONS(7869), 1, - sym__eof, - STATE(3781), 1, - sym__newline, - [111515] = 3, - ACTIONS(7871), 1, - sym__line_ending, - ACTIONS(7873), 1, - sym__eof, - STATE(1895), 1, - sym__newline, - [111525] = 3, - ACTIONS(6526), 1, + [112697] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6632), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [111535] = 3, - ACTIONS(6526), 1, + ACTIONS(6396), 1, + sym__shortcode_close, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + [112707] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(6552), 1, + ACTIONS(7627), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - [111545] = 3, - ACTIONS(7609), 1, - sym__line_ending, - ACTIONS(7875), 1, - sym__eof, - STATE(3613), 1, - sym__newline, - [111555] = 3, - ACTIONS(6522), 1, + [112717] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6554), 1, + ACTIONS(7629), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111565] = 3, - ACTIONS(6526), 1, + [112727] = 3, + ACTIONS(6546), 1, sym__key_specifier_token, - ACTIONS(7877), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, + ACTIONS(7253), 1, + anon_sym_RBRACE, + STATE(2714), 1, sym__commonmark_key_value_specifier, - [111575] = 3, - ACTIONS(6522), 1, + [112737] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(7879), 1, + ACTIONS(6400), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111585] = 3, - ACTIONS(6522), 1, + [112747] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6634), 1, + ACTIONS(7631), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111595] = 3, - ACTIONS(6526), 1, + [112757] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(7881), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [111605] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6558), 1, + ACTIONS(6404), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111615] = 3, - ACTIONS(6522), 1, + [112767] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(7883), 1, + ACTIONS(7633), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111625] = 3, - ACTIONS(6522), 1, + [112777] = 3, + ACTIONS(111), 1, + sym__line_ending, + ACTIONS(7635), 1, + sym__eof, + STATE(603), 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, sym__key_specifier_token, - ACTIONS(6562), 1, + ACTIONS(6408), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111635] = 3, - ACTIONS(6522), 1, + [112807] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(7885), 1, + ACTIONS(7639), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111645] = 3, - ACTIONS(6522), 1, + [112817] = 3, + ACTIONS(2201), 1, + aux_sym_target_token1, + ACTIONS(7641), 1, + aux_sym_pandoc_span_token1, + STATE(1444), 1, + sym_target, + [112827] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6566), 1, + ACTIONS(6502), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111655] = 3, - ACTIONS(6522), 1, + [112837] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(7887), 1, + ACTIONS(6412), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111665] = 3, - ACTIONS(6522), 1, + [112847] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6570), 1, + ACTIONS(7643), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111675] = 3, - ACTIONS(6522), 1, + [112857] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(7889), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - [111685] = 2, - STATE(2727), 1, + ACTIONS(6472), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + [112867] = 2, + STATE(2675), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [111693] = 3, - ACTIONS(6522), 1, + [112875] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(7891), 1, + ACTIONS(6474), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [111703] = 3, - ACTIONS(7609), 1, + [112885] = 3, + ACTIONS(6388), 1, + sym__key_specifier_token, + ACTIONS(7645), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + [112895] = 3, + ACTIONS(25), 1, sym__line_ending, - ACTIONS(7893), 1, + ACTIONS(7647), 1, sym__eof, - STATE(3638), 1, + STATE(580), 1, sym__newline, - [111713] = 3, - ACTIONS(2403), 1, + [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, sym__line_ending, - ACTIONS(7663), 1, + ACTIONS(7605), 1, sym__pipe_table_delimiter, - ACTIONS(7895), 1, + ACTIONS(7651), 1, sym__whitespace, - [111723] = 3, - ACTIONS(2141), 1, + [112925] = 1, + ACTIONS(7239), 3, + sym__line_ending, + sym__pipe_table_delimiter, + sym__whitespace, + [112931] = 3, + ACTIONS(7525), 1, + sym__line_ending, + ACTIONS(7653), 1, + sym__eof, + STATE(3359), 1, + sym__newline, + [112941] = 3, + ACTIONS(2145), 1, aux_sym_target_token1, - ACTIONS(7897), 1, + ACTIONS(7655), 1, aux_sym_pandoc_span_token1, - STATE(1410), 1, + STATE(1126), 1, sym_target, - [111733] = 3, - ACTIONS(2141), 1, + [112951] = 3, + ACTIONS(6388), 1, + 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(7899), 1, + ACTIONS(7659), 1, aux_sym_pandoc_span_token1, - STATE(1412), 1, + STATE(1139), 1, sym_target, - [111743] = 3, - ACTIONS(27), 1, + [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, sym__line_ending, - ACTIONS(7901), 1, + ACTIONS(7665), 1, sym__eof, - STATE(515), 1, + STATE(3400), 1, sym__newline, - [111753] = 3, - ACTIONS(2403), 1, + [113011] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7635), 1, - sym__pipe_table_delimiter, - ACTIONS(7903), 1, - sym__whitespace, - [111763] = 3, - ACTIONS(7905), 1, + ACTIONS(7667), 1, + sym__eof, + STATE(3408), 1, + sym__newline, + [113021] = 2, + STATE(2646), 1, + aux_sym_pandoc_code_span_repeat1, + ACTIONS(7362), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [113029] = 3, + ACTIONS(7669), 1, sym__whitespace, - STATE(2956), 1, + STATE(2870), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3223), 1, + STATE(3094), 1, aux_sym_shortcode_escaped_repeat2, - [111773] = 3, - ACTIONS(7907), 1, + [113039] = 3, + ACTIONS(7671), 1, sym__whitespace, - STATE(2957), 1, + STATE(2871), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3227), 1, + STATE(3095), 1, aux_sym_shortcode_repeat1, - [111783] = 3, - ACTIONS(2161), 1, - aux_sym_target_token1, - ACTIONS(7909), 1, - aux_sym_pandoc_span_token1, - STATE(1432), 1, - sym_target, - [111793] = 3, - ACTIONS(7911), 1, + [113049] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7913), 1, + ACTIONS(7673), 1, sym__eof, - STATE(3646), 1, + STATE(3342), 1, sym__newline, - [111803] = 3, - ACTIONS(7609), 1, + [113059] = 2, + ACTIONS(7675), 1, + sym_block_continuation, + ACTIONS(2705), 2, + sym__shortcode_open, + aux_sym_target_token2, + [113067] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7915), 1, + ACTIONS(7677), 1, sym__eof, - STATE(3678), 1, + STATE(3695), 1, sym__newline, - [111813] = 3, - ACTIONS(7917), 1, + [113077] = 3, + ACTIONS(7679), 1, sym__whitespace, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3257), 1, + STATE(3097), 1, aux_sym_shortcode_escaped_repeat2, - [111823] = 3, - ACTIONS(7919), 1, + [113087] = 3, + ACTIONS(7681), 1, sym__whitespace, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3259), 1, + STATE(3098), 1, aux_sym_shortcode_repeat1, - [111833] = 3, - ACTIONS(7194), 1, + [113097] = 3, + ACTIONS(7057), 1, sym__shortcode_open, - ACTIONS(7921), 1, + ACTIONS(7683), 1, aux_sym__commonmark_single_quote_string_token2, - STATE(2570), 1, + STATE(2531), 1, sym_shortcode, - [111843] = 3, - ACTIONS(7186), 1, + [113107] = 3, + ACTIONS(7065), 1, sym__shortcode_open, - ACTIONS(7923), 1, + ACTIONS(7685), 1, aux_sym__commonmark_double_quote_string_token2, - STATE(2571), 1, + STATE(2532), 1, sym_shortcode, - [111853] = 3, - ACTIONS(7609), 1, + [113117] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7925), 1, + ACTIONS(7687), 1, sym__eof, - STATE(3706), 1, + STATE(3723), 1, sym__newline, - [111863] = 3, - ACTIONS(7609), 1, + [113127] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7927), 1, + ACTIONS(7689), 1, sym__eof, - STATE(3708), 1, + STATE(3727), 1, sym__newline, - [111873] = 3, - ACTIONS(7609), 1, + [113137] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7929), 1, + ACTIONS(7691), 1, sym__eof, - STATE(3730), 1, + STATE(3747), 1, sym__newline, - [111883] = 3, - ACTIONS(7609), 1, + [113147] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7931), 1, + ACTIONS(7693), 1, sym__eof, - STATE(3731), 1, + STATE(3748), 1, sym__newline, - [111893] = 3, - ACTIONS(7609), 1, + [113157] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7933), 1, + ACTIONS(7695), 1, sym__eof, - STATE(3732), 1, + STATE(3749), 1, sym__newline, - [111903] = 3, - ACTIONS(7609), 1, + [113167] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7935), 1, + ACTIONS(7697), 1, sym__eof, - STATE(3733), 1, + STATE(3752), 1, sym__newline, - [111913] = 3, - ACTIONS(7609), 1, + [113177] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7937), 1, + ACTIONS(7699), 1, sym__eof, - STATE(3734), 1, + STATE(3753), 1, sym__newline, - [111923] = 3, - ACTIONS(7609), 1, + [113187] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7939), 1, + ACTIONS(7701), 1, sym__eof, - STATE(3735), 1, + STATE(3768), 1, sym__newline, - [111933] = 2, - STATE(2762), 1, + [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(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [111941] = 3, - ACTIONS(183), 1, - sym__line_ending, - ACTIONS(7941), 1, - sym__eof, - STATE(392), 1, - sym__newline, - [111951] = 2, - ACTIONS(7943), 1, - sym_block_continuation, - ACTIONS(3163), 2, - sym__key_specifier_token, - aux_sym__commonmark_specifier_start_with_class_token2, - [111959] = 3, - ACTIONS(6526), 1, - sym__key_specifier_token, - ACTIONS(6582), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [111969] = 3, - ACTIONS(183), 1, + [113213] = 3, + ACTIONS(2207), 1, + aux_sym_target_token1, + ACTIONS(7703), 1, + aux_sym_pandoc_span_token1, + STATE(1461), 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, sym__line_ending, - ACTIONS(7945), 1, + sym__soft_line_ending, sym__eof, - STATE(360), 1, - sym__newline, - [111979] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6584), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - [111989] = 3, - ACTIONS(6526), 1, - sym__key_specifier_token, - ACTIONS(7947), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [111999] = 3, - ACTIONS(6670), 1, - anon_sym_LBRACE, - ACTIONS(6684), 1, - sym__language_specifier_token, - STATE(3946), 1, - sym_language_specifier, - [112009] = 3, - ACTIONS(2141), 1, + [113239] = 3, + ACTIONS(2207), 1, aux_sym_target_token1, - ACTIONS(7949), 1, + ACTIONS(7707), 1, aux_sym_pandoc_span_token1, - STATE(1252), 1, + STATE(1463), 1, sym_target, - [112019] = 3, - ACTIONS(2141), 1, + [113249] = 3, + ACTIONS(2145), 1, aux_sym_target_token1, - ACTIONS(7951), 1, + ACTIONS(7709), 1, aux_sym_pandoc_span_token1, - STATE(1255), 1, + STATE(1155), 1, sym_target, - [112029] = 3, - ACTIONS(7953), 1, + [113259] = 3, + ACTIONS(2207), 1, + aux_sym_target_token1, + ACTIONS(7711), 1, + aux_sym_pandoc_span_token1, + STATE(1469), 1, + sym_target, + [113269] = 3, + ACTIONS(2207), 1, + aux_sym_target_token1, + ACTIONS(7713), 1, + aux_sym_pandoc_span_token1, + STATE(1470), 1, + sym_target, + [113279] = 3, + ACTIONS(6388), 1, + sym__key_specifier_token, + ACTIONS(7715), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + [113289] = 3, + ACTIONS(7717), 1, sym__whitespace, - STATE(2982), 1, + STATE(2896), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3150), 1, + STATE(3110), 1, aux_sym_shortcode_escaped_repeat2, - [112039] = 3, - ACTIONS(7955), 1, + [113299] = 3, + ACTIONS(7719), 1, sym__whitespace, - STATE(2983), 1, + STATE(2897), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3152), 1, + STATE(3111), 1, aux_sym_shortcode_repeat1, - [112049] = 3, - ACTIONS(7957), 1, - sym__line_ending, - ACTIONS(7959), 1, - sym__eof, - STATE(1738), 1, - sym__newline, - [112059] = 3, - ACTIONS(7609), 1, + [113309] = 3, + ACTIONS(2145), 1, + aux_sym_target_token1, + ACTIONS(7721), 1, + aux_sym_pandoc_span_token1, + STATE(1158), 1, + sym_target, + [113319] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7961), 1, + ACTIONS(7723), 1, sym__eof, - STATE(3614), 1, + STATE(3385), 1, sym__newline, - [112069] = 3, - ACTIONS(7963), 1, + [113329] = 3, + ACTIONS(7725), 1, sym__whitespace, - STATE(3162), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112079] = 3, - ACTIONS(7965), 1, + STATE(3113), 1, + aux_sym_shortcode_escaped_repeat2, + [113339] = 3, + ACTIONS(7727), 1, sym__whitespace, - STATE(3163), 1, - aux_sym_shortcode_repeat1, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112089] = 3, - ACTIONS(7609), 1, - sym__line_ending, - ACTIONS(7967), 1, - sym__eof, - STATE(3687), 1, - sym__newline, - [112099] = 3, - ACTIONS(7609), 1, + STATE(3114), 1, + aux_sym_shortcode_repeat1, + [113349] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7969), 1, + ACTIONS(7729), 1, sym__eof, - STATE(3744), 1, + STATE(3493), 1, sym__newline, - [112109] = 3, - ACTIONS(7609), 1, + [113359] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7971), 1, + ACTIONS(7731), 1, sym__eof, - STATE(3298), 1, + STATE(3508), 1, sym__newline, - [112119] = 3, - ACTIONS(7609), 1, + [113369] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7973), 1, + ACTIONS(7733), 1, sym__eof, - STATE(3449), 1, + STATE(3551), 1, sym__newline, - [112129] = 3, - ACTIONS(7609), 1, + [113379] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7975), 1, + ACTIONS(7735), 1, sym__eof, - STATE(3473), 1, + STATE(3553), 1, sym__newline, - [112139] = 3, - ACTIONS(7609), 1, + [113389] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7977), 1, + ACTIONS(7737), 1, sym__eof, - STATE(3485), 1, + STATE(3559), 1, sym__newline, - [112149] = 3, - ACTIONS(7609), 1, + [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(7979), 1, + ACTIONS(7741), 1, sym__eof, - STATE(3502), 1, + STATE(3687), 1, sym__newline, - [112159] = 3, - ACTIONS(7609), 1, + [113419] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(7981), 1, + ACTIONS(7743), 1, sym__eof, - STATE(3522), 1, + STATE(3692), 1, sym__newline, - [112169] = 2, - STATE(2680), 1, + [113429] = 2, + STATE(2652), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [112177] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(7983), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - [112187] = 3, - ACTIONS(2399), 1, - sym__line_ending, - ACTIONS(7663), 1, - sym__pipe_table_delimiter, - ACTIONS(7985), 1, + [113437] = 3, + ACTIONS(2195), 1, + aux_sym_target_token1, + ACTIONS(7745), 1, + aux_sym_pandoc_span_token1, + STATE(1262), 1, + sym_target, + [113447] = 3, + ACTIONS(2195), 1, + aux_sym_target_token1, + ACTIONS(7747), 1, + aux_sym_pandoc_span_token1, + STATE(1350), 1, + sym_target, + [113457] = 3, + ACTIONS(2165), 1, + aux_sym_target_token1, + ACTIONS(7749), 1, + aux_sym_pandoc_span_token1, + STATE(1341), 1, + sym_target, + [113467] = 1, + ACTIONS(7751), 3, + sym__soft_line_ending, + anon_sym_RBRACE, sym__whitespace, - [112197] = 3, - ACTIONS(7987), 1, + [113473] = 3, + ACTIONS(7753), 1, + sym__line_ending, + ACTIONS(7755), 1, + sym__eof, + STATE(3708), 1, + sym__newline, + [113483] = 3, + ACTIONS(7757), 1, sym__whitespace, - STATE(2997), 1, + STATE(2915), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3199), 1, + STATE(3118), 1, aux_sym_shortcode_escaped_repeat2, - [112207] = 3, - ACTIONS(7989), 1, + [113493] = 3, + ACTIONS(7759), 1, sym__whitespace, - STATE(2998), 1, + STATE(2916), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3287), 1, + STATE(3119), 1, aux_sym_shortcode_repeat1, - [112217] = 3, - ACTIONS(7991), 1, + [113503] = 3, + ACTIONS(2165), 1, + aux_sym_target_token1, + ACTIONS(7761), 1, + aux_sym_pandoc_span_token1, + STATE(1343), 1, + sym_target, + [113513] = 3, + ACTIONS(7763), 1, sym__whitespace, - STATE(3208), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112227] = 3, - ACTIONS(7993), 1, + STATE(3121), 1, + aux_sym_shortcode_escaped_repeat2, + [113523] = 3, + ACTIONS(7765), 1, sym__whitespace, - STATE(3209), 1, - aux_sym_shortcode_repeat1, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112237] = 2, - STATE(2715), 1, + STATE(3122), 1, + aux_sym_shortcode_repeat1, + [113533] = 2, + STATE(2627), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [112245] = 3, - ACTIONS(27), 1, - sym__line_ending, - ACTIONS(7995), 1, - sym__eof, - STATE(561), 1, - sym__newline, - [112255] = 3, - ACTIONS(2207), 1, - aux_sym_target_token1, - ACTIONS(7997), 1, - aux_sym_pandoc_span_token1, - STATE(1127), 1, - sym_target, - [112265] = 3, - ACTIONS(2207), 1, - aux_sym_target_token1, - ACTIONS(7999), 1, - aux_sym_pandoc_span_token1, - STATE(1129), 1, - sym_target, - [112275] = 3, - ACTIONS(8001), 1, + [113541] = 3, + ACTIONS(7767), 1, sym__whitespace, - STATE(3006), 1, + STATE(2921), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3237), 1, + STATE(3124), 1, aux_sym_shortcode_escaped_repeat2, - [112285] = 3, - ACTIONS(8003), 1, + [113551] = 3, + ACTIONS(7769), 1, sym__whitespace, - STATE(3007), 1, + STATE(2922), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3239), 1, + STATE(3125), 1, aux_sym_shortcode_repeat1, - [112295] = 3, - ACTIONS(2399), 1, - sym__line_ending, - ACTIONS(7635), 1, - sym__pipe_table_delimiter, - ACTIONS(8005), 1, - sym__whitespace, - [112305] = 3, - ACTIONS(8007), 1, + [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(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3243), 1, + STATE(3127), 1, aux_sym_shortcode_escaped_repeat2, - [112315] = 3, - ACTIONS(8009), 1, + [113581] = 3, + ACTIONS(7773), 1, sym__whitespace, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3249), 1, + STATE(3128), 1, aux_sym_shortcode_repeat1, - [112325] = 2, - STATE(2686), 1, + [113591] = 2, + STATE(2690), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [112333] = 3, - ACTIONS(27), 1, - sym__line_ending, - ACTIONS(8011), 1, - sym__eof, - STATE(494), 1, - sym__newline, - [112343] = 3, - ACTIONS(2067), 1, - aux_sym_target_token1, - ACTIONS(8013), 1, - aux_sym_pandoc_span_token1, - STATE(967), 1, - sym_target, - [112353] = 2, - ACTIONS(7645), 1, - aux_sym_pandoc_span_token1, - ACTIONS(7643), 2, - sym__soft_line_ending, - aux_sym_target_token1, - [112361] = 1, - ACTIONS(7300), 3, - sym__line_ending, - sym__eof, - sym__pipe_table_line_ending, - [112367] = 3, - ACTIONS(27), 1, - sym__line_ending, - ACTIONS(8015), 1, - sym__eof, - STATE(569), 1, - sym__newline, - [112377] = 3, - ACTIONS(6526), 1, + [113599] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6662), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [112387] = 3, - ACTIONS(6522), 1, + ACTIONS(7775), 1, + sym__shortcode_close, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + [113609] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(6664), 1, + ACTIONS(6488), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [112397] = 3, - ACTIONS(8017), 1, + [113619] = 3, + ACTIONS(7777), 1, sym__whitespace, - STATE(3019), 1, + STATE(2929), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3282), 1, + STATE(3132), 1, aux_sym_shortcode_escaped_repeat2, - [112407] = 3, - ACTIONS(8019), 1, + [113629] = 3, + ACTIONS(7779), 1, sym__whitespace, - STATE(3020), 1, + STATE(2930), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3284), 1, + STATE(3133), 1, aux_sym_shortcode_repeat1, - [112417] = 3, - ACTIONS(2207), 1, - aux_sym_target_token1, - ACTIONS(8021), 1, - aux_sym_pandoc_span_token1, - STATE(1135), 1, - sym_target, - [112427] = 3, - ACTIONS(8023), 1, + [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(3205), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112437] = 3, - ACTIONS(8025), 1, + STATE(3135), 1, + aux_sym_shortcode_escaped_repeat2, + [113659] = 3, + ACTIONS(7785), 1, sym__whitespace, - STATE(3206), 1, - aux_sym_shortcode_repeat1, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112447] = 2, - STATE(2744), 1, + STATE(3136), 1, + aux_sym_shortcode_repeat1, + [113669] = 2, + STATE(2636), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [112455] = 3, - ACTIONS(2207), 1, + [113677] = 3, + ACTIONS(2195), 1, aux_sym_target_token1, - ACTIONS(8027), 1, + ACTIONS(7787), 1, aux_sym_pandoc_span_token1, - STATE(1136), 1, + STATE(1202), 1, sym_target, - [112465] = 3, - ACTIONS(6526), 1, - sym__key_specifier_token, - ACTIONS(8029), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [112475] = 3, - ACTIONS(6522), 1, + [113687] = 3, + ACTIONS(2195), 1, + aux_sym_target_token1, + ACTIONS(7789), 1, + aux_sym_pandoc_span_token1, + STATE(1205), 1, + sym_target, + [113697] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(8031), 1, + ACTIONS(7791), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [112485] = 3, - ACTIONS(8033), 1, + [113707] = 3, + ACTIONS(7793), 1, sym__whitespace, - STATE(3028), 1, + STATE(2938), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3122), 1, + STATE(3138), 1, aux_sym_shortcode_escaped_repeat2, - [112495] = 3, - ACTIONS(8035), 1, + [113717] = 3, + ACTIONS(7795), 1, sym__whitespace, - STATE(3029), 1, + STATE(2939), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3124), 1, + STATE(3139), 1, aux_sym_shortcode_repeat1, - [112505] = 3, - ACTIONS(6526), 1, - sym__key_specifier_token, - ACTIONS(6642), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [112515] = 3, - ACTIONS(8037), 1, + [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(3126), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112525] = 3, - ACTIONS(8039), 1, + STATE(3141), 1, + aux_sym_shortcode_escaped_repeat2, + [113747] = 3, + ACTIONS(7801), 1, sym__whitespace, - STATE(3127), 1, - aux_sym_shortcode_repeat1, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112535] = 2, - STATE(2685), 1, + STATE(3223), 1, + aux_sym_shortcode_repeat1, + [113757] = 2, + STATE(2665), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, + aux_sym_pandoc_code_span_token1, + aux_sym_pandoc_code_span_token2, + [113765] = 3, + ACTIONS(2165), 1, + aux_sym_target_token1, + ACTIONS(7803), 1, + aux_sym_pandoc_span_token1, + STATE(1356), 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, - [112543] = 3, - ACTIONS(27), 1, + [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(8041), 1, + ACTIONS(7811), 1, sym__eof, - STATE(572), 1, + STATE(548), 1, sym__newline, - [112553] = 3, - ACTIONS(8043), 1, + [113817] = 3, + ACTIONS(7813), 1, sym__whitespace, - STATE(3035), 1, + STATE(2950), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3137), 1, + STATE(3147), 1, aux_sym_shortcode_escaped_repeat2, - [112563] = 3, - ACTIONS(8045), 1, + [113827] = 3, + ACTIONS(7815), 1, sym__whitespace, - STATE(3036), 1, + STATE(2951), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3139), 1, + STATE(3149), 1, aux_sym_shortcode_repeat1, - [112573] = 3, - ACTIONS(6522), 1, - sym__key_specifier_token, - ACTIONS(6644), 1, - sym__shortcode_close, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - [112583] = 3, - ACTIONS(8047), 1, + [113837] = 3, + ACTIONS(2165), 1, + aux_sym_target_token1, + ACTIONS(7817), 1, + aux_sym_pandoc_span_token1, + STATE(1357), 1, + sym_target, + [113847] = 3, + ACTIONS(7819), 1, sym__whitespace, - STATE(3141), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112593] = 3, - ACTIONS(8049), 1, + STATE(3151), 1, + aux_sym_shortcode_escaped_repeat2, + [113857] = 3, + ACTIONS(7821), 1, sym__whitespace, - STATE(3142), 1, - aux_sym_shortcode_repeat1, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112603] = 2, - STATE(2716), 1, + STATE(3152), 1, + aux_sym_shortcode_repeat1, + [113867] = 2, + STATE(2698), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [112611] = 3, - ACTIONS(8051), 1, + [113875] = 3, + ACTIONS(25), 1, sym__line_ending, - ACTIONS(8053), 1, + ACTIONS(7823), 1, sym__eof, - STATE(3164), 1, + STATE(487), 1, sym__newline, - [112621] = 3, - ACTIONS(7609), 1, + [113885] = 3, + ACTIONS(6388), 1, + sym__key_specifier_token, + ACTIONS(6414), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + [113895] = 3, + ACTIONS(181), 1, sym__line_ending, - ACTIONS(8055), 1, + ACTIONS(7825), 1, sym__eof, - STATE(3553), 1, + STATE(395), 1, sym__newline, - [112631] = 3, - ACTIONS(2067), 1, - aux_sym_target_token1, - ACTIONS(8057), 1, - aux_sym_pandoc_span_token1, - STATE(968), 1, - sym_target, - [112641] = 3, - ACTIONS(6526), 1, + [113905] = 3, + ACTIONS(6382), 1, + sym__key_specifier_token, + ACTIONS(6416), 1, + sym__shortcode_close, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + [113915] = 3, + ACTIONS(6388), 1, sym__key_specifier_token, - ACTIONS(8059), 1, + ACTIONS(7827), 1, sym__shortcode_close_escaped, - STATE(3860), 1, + STATE(3735), 1, sym__commonmark_key_value_specifier, - [112651] = 3, - ACTIONS(8061), 1, + [113925] = 3, + ACTIONS(7829), 1, sym__whitespace, - STATE(3045), 1, + STATE(2961), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3153), 1, + STATE(3156), 1, aux_sym_shortcode_escaped_repeat2, - [112661] = 3, - ACTIONS(8063), 1, + [113935] = 3, + ACTIONS(7831), 1, sym__whitespace, - STATE(3046), 1, + STATE(2962), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3155), 1, + STATE(3157), 1, aux_sym_shortcode_repeat1, - [112671] = 3, - ACTIONS(6522), 1, + [113945] = 3, + ACTIONS(6382), 1, sym__key_specifier_token, - ACTIONS(8065), 1, + ACTIONS(7833), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [112681] = 3, - ACTIONS(8067), 1, + [113955] = 3, + ACTIONS(7835), 1, sym__whitespace, - STATE(3157), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112691] = 3, - ACTIONS(8069), 1, + STATE(3159), 1, + aux_sym_shortcode_escaped_repeat2, + [113965] = 3, + ACTIONS(7837), 1, sym__whitespace, - STATE(3158), 1, - aux_sym_shortcode_repeat1, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112701] = 2, - STATE(2736), 1, + STATE(3160), 1, + aux_sym_shortcode_repeat1, + [113975] = 2, + STATE(2634), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [112709] = 3, - ACTIONS(6522), 1, + [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, sym__key_specifier_token, - ACTIONS(8071), 1, + ACTIONS(6436), 1, sym__shortcode_close, - STATE(3728), 1, + STATE(3913), 1, sym__shortcode_key_value_specifier, - [112719] = 3, - ACTIONS(8073), 1, - sym__line_ending, - ACTIONS(8075), 1, - sym__eof, - STATE(1890), 1, - sym__newline, - [112729] = 3, - ACTIONS(27), 1, - sym__line_ending, - ACTIONS(8077), 1, - sym__eof, - STATE(570), 1, - sym__newline, - [112739] = 3, - ACTIONS(2161), 1, + [114003] = 3, + ACTIONS(2217), 1, aux_sym_target_token1, - ACTIONS(8079), 1, + ACTIONS(7839), 1, aux_sym_pandoc_span_token1, - STATE(1434), 1, + STATE(1322), 1, sym_target, - [112749] = 3, - ACTIONS(113), 1, - sym__line_ending, - ACTIONS(8081), 1, - sym__eof, - STATE(528), 1, - sym__newline, - [112759] = 3, - ACTIONS(8083), 1, + [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, + sym__key_specifier_token, + ACTIONS(6516), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + [114033] = 3, + ACTIONS(7843), 1, sym__whitespace, - STATE(3055), 1, + STATE(2972), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3171), 1, + STATE(3164), 1, aux_sym_shortcode_escaped_repeat2, - [112769] = 3, - ACTIONS(8085), 1, + [114043] = 3, + ACTIONS(7845), 1, sym__whitespace, - STATE(3056), 1, + STATE(2973), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3173), 1, + STATE(3165), 1, aux_sym_shortcode_repeat1, - [112779] = 3, - ACTIONS(8087), 1, + [114053] = 3, + ACTIONS(111), 1, + sym__line_ending, + ACTIONS(7847), 1, + sym__eof, + STATE(510), 1, + sym__newline, + [114063] = 3, + ACTIONS(7849), 1, sym__whitespace, - STATE(3175), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112789] = 3, - ACTIONS(8089), 1, + STATE(3167), 1, + aux_sym_shortcode_escaped_repeat2, + [114073] = 3, + ACTIONS(7851), 1, sym__whitespace, - STATE(3176), 1, - aux_sym_shortcode_repeat1, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112799] = 2, - STATE(2670), 1, + STATE(3168), 1, + aux_sym_shortcode_repeat1, + [114083] = 2, + STATE(2648), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [112807] = 3, - ACTIONS(8091), 1, + [114091] = 3, + ACTIONS(6388), 1, + sym__key_specifier_token, + ACTIONS(7853), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + [114101] = 3, + ACTIONS(6382), 1, + sym__key_specifier_token, + ACTIONS(7855), 1, + sym__shortcode_close, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + [114111] = 3, + ACTIONS(111), 1, + sym__line_ending, + ACTIONS(7857), 1, + sym__eof, + STATE(565), 1, + sym__newline, + [114121] = 3, + ACTIONS(2217), 1, + aux_sym_target_token1, + ACTIONS(7859), 1, + aux_sym_pandoc_span_token1, + STATE(1072), 1, + sym_target, + [114131] = 3, + ACTIONS(7861), 1, sym__whitespace, - STATE(3060), 1, + STATE(2982), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3185), 1, + STATE(3170), 1, aux_sym_shortcode_escaped_repeat2, - [112817] = 3, - ACTIONS(8093), 1, + [114141] = 3, + ACTIONS(7863), 1, sym__whitespace, - STATE(3061), 1, + STATE(2983), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3187), 1, + STATE(3171), 1, aux_sym_shortcode_repeat1, - [112827] = 3, - ACTIONS(8095), 1, + [114151] = 3, + ACTIONS(2217), 1, + aux_sym_target_token1, + ACTIONS(7865), 1, + aux_sym_pandoc_span_token1, + STATE(1077), 1, + sym_target, + [114161] = 3, + ACTIONS(7867), 1, sym__whitespace, - STATE(3189), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112837] = 3, - ACTIONS(8097), 1, + STATE(3173), 1, + aux_sym_shortcode_escaped_repeat2, + [114171] = 3, + ACTIONS(7869), 1, sym__whitespace, - STATE(3190), 1, - aux_sym_shortcode_repeat1, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112847] = 2, - STATE(2683), 1, + STATE(3174), 1, + aux_sym_shortcode_repeat1, + [114181] = 2, + STATE(2730), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [112855] = 3, - ACTIONS(7609), 1, + [114189] = 3, + ACTIONS(111), 1, sym__line_ending, - ACTIONS(8099), 1, + ACTIONS(7871), 1, sym__eof, - STATE(3408), 1, + STATE(566), 1, + sym__newline, + [114199] = 3, + ACTIONS(7873), 1, + sym__line_ending, + ACTIONS(7875), 1, + sym__eof, + STATE(3102), 1, + sym__newline, + [114209] = 3, + ACTIONS(111), 1, + sym__line_ending, + ACTIONS(7877), 1, + sym__eof, + STATE(567), 1, + sym__newline, + [114219] = 3, + ACTIONS(181), 1, + sym__line_ending, + ACTIONS(7879), 1, + sym__eof, + STATE(396), 1, + sym__newline, + [114229] = 3, + ACTIONS(7525), 1, + sym__line_ending, + ACTIONS(7881), 1, + sym__eof, + STATE(3782), 1, + sym__newline, + [114239] = 3, + ACTIONS(111), 1, + sym__line_ending, + ACTIONS(7883), 1, + sym__eof, + STATE(551), 1, sym__newline, - [112865] = 3, - ACTIONS(8101), 1, + [114249] = 3, + ACTIONS(7885), 1, sym__whitespace, - STATE(3067), 1, + STATE(2994), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3198), 1, + STATE(3177), 1, aux_sym_shortcode_escaped_repeat2, - [112875] = 3, - ACTIONS(8103), 1, + [114259] = 3, + ACTIONS(7887), 1, sym__whitespace, - STATE(3068), 1, + STATE(2995), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3200), 1, + STATE(3178), 1, aux_sym_shortcode_repeat1, - [112885] = 3, - ACTIONS(8105), 1, - sym__line_ending, - ACTIONS(8107), 1, - sym__eof, - STATE(1888), 1, - sym__newline, - [112895] = 3, - ACTIONS(8109), 1, + [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(3202), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112905] = 3, - ACTIONS(8111), 1, + STATE(3180), 1, + aux_sym_shortcode_escaped_repeat2, + [114289] = 3, + ACTIONS(7891), 1, sym__whitespace, - STATE(3203), 1, - aux_sym_shortcode_repeat1, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112915] = 2, - STATE(2689), 1, + STATE(3181), 1, + aux_sym_shortcode_repeat1, + [114299] = 2, + STATE(2706), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [112923] = 3, - ACTIONS(2151), 1, - aux_sym_target_token1, - ACTIONS(8113), 1, - aux_sym_pandoc_span_token1, - STATE(1380), 1, - sym_target, - [112933] = 3, - ACTIONS(2151), 1, - aux_sym_target_token1, - ACTIONS(8115), 1, - aux_sym_pandoc_span_token1, - STATE(1382), 1, - sym_target, - [112943] = 3, - ACTIONS(8117), 1, + [114307] = 3, + ACTIONS(6382), 1, + sym__key_specifier_token, + ACTIONS(6512), 1, + sym__shortcode_close, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + [114317] = 3, + ACTIONS(6388), 1, + sym__key_specifier_token, + ACTIONS(7893), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + [114327] = 3, + ACTIONS(6382), 1, + sym__key_specifier_token, + ACTIONS(7895), 1, + sym__shortcode_close, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + [114337] = 2, + ACTIONS(7897), 1, + sym_block_continuation, + ACTIONS(2699), 2, + sym__line_ending, + sym__eof, + [114345] = 3, + ACTIONS(6382), 1, + sym__key_specifier_token, + ACTIONS(6422), 1, + sym__shortcode_close, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + [114355] = 3, + ACTIONS(7899), 1, sym__whitespace, - STATE(3075), 1, + STATE(3005), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3212), 1, + STATE(3184), 1, aux_sym_shortcode_escaped_repeat2, - [112953] = 3, - ACTIONS(8119), 1, + [114365] = 3, + ACTIONS(7901), 1, sym__whitespace, - STATE(3076), 1, + STATE(3006), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3214), 1, + STATE(3046), 1, aux_sym_shortcode_repeat1, - [112963] = 3, - ACTIONS(8121), 1, + [114375] = 3, + ACTIONS(111), 1, sym__line_ending, - ACTIONS(8123), 1, + ACTIONS(7903), 1, sym__eof, - STATE(2214), 1, + STATE(485), 1, sym__newline, - [112973] = 3, - ACTIONS(8125), 1, + [114385] = 3, + ACTIONS(7905), 1, sym__whitespace, - STATE(3216), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112983] = 3, - ACTIONS(8127), 1, + STATE(3186), 1, + aux_sym_shortcode_escaped_repeat2, + [114395] = 3, + ACTIONS(7907), 1, sym__whitespace, - STATE(3217), 1, - aux_sym_shortcode_repeat1, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [112993] = 2, - STATE(2699), 1, + STATE(3187), 1, + aux_sym_shortcode_repeat1, + [114405] = 2, + STATE(2624), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [113001] = 3, - ACTIONS(113), 1, + [114413] = 3, + ACTIONS(111), 1, sym__line_ending, - ACTIONS(8129), 1, + ACTIONS(7909), 1, sym__eof, - STATE(619), 1, + STATE(572), 1, sym__newline, - [113011] = 3, - ACTIONS(8131), 1, + [114423] = 3, + ACTIONS(6388), 1, + sym__key_specifier_token, + ACTIONS(7911), 1, + sym__shortcode_close_escaped, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + [114433] = 3, + ACTIONS(6382), 1, + sym__key_specifier_token, + ACTIONS(7913), 1, + sym__shortcode_close, + STATE(3913), 1, + sym__shortcode_key_value_specifier, + [114443] = 3, + ACTIONS(7525), 1, + sym__line_ending, + ACTIONS(7915), 1, + sym__eof, + STATE(3463), 1, + sym__newline, + [114453] = 3, + ACTIONS(7917), 1, sym__whitespace, - STATE(3081), 1, + STATE(3015), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3226), 1, + STATE(3192), 1, aux_sym_shortcode_escaped_repeat2, - [113021] = 3, - ACTIONS(8133), 1, + [114463] = 3, + ACTIONS(7919), 1, sym__whitespace, - STATE(3082), 1, + STATE(3016), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3228), 1, + STATE(3193), 1, aux_sym_shortcode_repeat1, - [113031] = 3, - ACTIONS(8135), 1, + [114473] = 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(3230), 1, - aux_sym_shortcode_escaped_repeat2, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [113041] = 3, - ACTIONS(8137), 1, + STATE(3195), 1, + aux_sym_shortcode_escaped_repeat2, + [114493] = 3, + ACTIONS(7925), 1, sym__whitespace, - STATE(3231), 1, - aux_sym_shortcode_repeat1, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - [113051] = 2, - STATE(2710), 1, + STATE(3196), 1, + aux_sym_shortcode_repeat1, + [114503] = 2, + STATE(2635), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [113059] = 1, - ACTIONS(8139), 3, - sym__soft_line_ending, - anon_sym_RBRACE, - sym__whitespace, - [113065] = 3, - ACTIONS(2151), 1, - aux_sym_target_token1, - ACTIONS(8141), 1, - aux_sym_pandoc_span_token1, - STATE(1400), 1, - sym_target, - [113075] = 3, - ACTIONS(8143), 1, + [114511] = 3, + ACTIONS(111), 1, + sym__line_ending, + ACTIONS(7927), 1, + sym__eof, + STATE(573), 1, + sym__newline, + [114521] = 3, + ACTIONS(7929), 1, sym__whitespace, - STATE(3088), 1, + STATE(3022), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3242), 1, + STATE(3198), 1, aux_sym_shortcode_escaped_repeat2, - [113085] = 3, - ACTIONS(8145), 1, + [114531] = 3, + ACTIONS(7931), 1, sym__whitespace, - STATE(3089), 1, + STATE(3023), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3244), 1, + STATE(3199), 1, aux_sym_shortcode_repeat1, - [113095] = 3, - ACTIONS(8147), 1, + [114541] = 3, + ACTIONS(181), 1, + sym__line_ending, + ACTIONS(7933), 1, + sym__eof, + STATE(397), 1, + sym__newline, + [114551] = 3, + ACTIONS(7935), 1, sym__whitespace, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3246), 1, + STATE(3201), 1, aux_sym_shortcode_escaped_repeat2, - [113105] = 3, - ACTIONS(8149), 1, + [114561] = 3, + ACTIONS(7937), 1, sym__whitespace, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3247), 1, + STATE(3202), 1, aux_sym_shortcode_repeat1, - [113115] = 2, - STATE(2719), 1, + [114571] = 2, + STATE(2645), 1, aux_sym_pandoc_code_span_repeat1, - ACTIONS(7508), 2, + ACTIONS(7362), 2, aux_sym_pandoc_code_span_token1, aux_sym_pandoc_code_span_token2, - [113123] = 3, - ACTIONS(2151), 1, + [114579] = 3, + ACTIONS(25), 1, + sym__line_ending, + ACTIONS(7939), 1, + sym__eof, + STATE(553), 1, + sym__newline, + [114589] = 3, + ACTIONS(2116), 1, aux_sym_target_token1, - ACTIONS(8151), 1, + ACTIONS(7941), 1, aux_sym_pandoc_span_token1, - STATE(1401), 1, + STATE(1315), 1, sym_target, - [113133] = 3, - ACTIONS(6526), 1, - sym__key_specifier_token, - ACTIONS(6636), 1, - sym__shortcode_close_escaped, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [113143] = 3, - ACTIONS(8153), 1, + [114599] = 3, + ACTIONS(2116), 1, + aux_sym_target_token1, + ACTIONS(7943), 1, + aux_sym_pandoc_span_token1, + STATE(1317), 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(3095), 1, + STATE(3032), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3258), 1, + STATE(3207), 1, aux_sym_shortcode_escaped_repeat2, - [113153] = 3, - ACTIONS(8155), 1, + [114629] = 3, + ACTIONS(7949), 1, sym__whitespace, - STATE(3096), 1, + STATE(3033), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3260), 1, + STATE(3208), 1, aux_sym_shortcode_repeat1, - [113163] = 3, - ACTIONS(8157), 1, + [114639] = 3, + ACTIONS(2175), 1, + aux_sym_target_token1, + ACTIONS(7951), 1, + aux_sym_pandoc_span_token1, + STATE(1376), 1, + sym_target, + [114649] = 3, + ACTIONS(7953), 1, sym__whitespace, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3262), 1, + STATE(3210), 1, aux_sym_shortcode_escaped_repeat2, - [113173] = 3, - ACTIONS(8159), 1, + [114659] = 3, + ACTIONS(7955), 1, sym__whitespace, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3263), 1, + STATE(3211), 1, aux_sym_shortcode_repeat1, - [113183] = 3, - ACTIONS(8161), 1, + [114669] = 3, + ACTIONS(7957), 1, sym__whitespace, - STATE(3098), 1, + STATE(2731), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3267), 1, + STATE(3214), 1, aux_sym_shortcode_repeat1, - [113193] = 3, - ACTIONS(8163), 1, + [114679] = 3, + ACTIONS(2330), 1, + sym__line_ending, + ACTIONS(7605), 1, + sym__pipe_table_delimiter, + ACTIONS(7959), 1, sym__whitespace, - STATE(3236), 1, - aux_sym_shortcode_escaped_repeat1, - STATE(3268), 1, - aux_sym_shortcode_repeat1, - [113203] = 3, - ACTIONS(8165), 1, + [114689] = 3, + ACTIONS(7961), 1, sym__whitespace, - STATE(3100), 1, + STATE(3037), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3271), 1, + STATE(3216), 1, aux_sym_shortcode_repeat1, - [113213] = 3, - ACTIONS(8167), 1, + [114699] = 3, + ACTIONS(7963), 1, sym__whitespace, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3272), 1, + STATE(3217), 1, aux_sym_shortcode_repeat1, - [113223] = 3, - ACTIONS(8169), 1, + [114709] = 3, + ACTIONS(7965), 1, sym__whitespace, - STATE(3102), 1, + STATE(3039), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3275), 1, + STATE(3218), 1, aux_sym_shortcode_repeat1, - [113233] = 3, - ACTIONS(8171), 1, + [114719] = 3, + ACTIONS(7967), 1, sym__whitespace, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3276), 1, + STATE(3219), 1, aux_sym_shortcode_repeat1, - [113243] = 3, - ACTIONS(8173), 1, + [114729] = 3, + ACTIONS(7969), 1, sym__whitespace, - STATE(3104), 1, + STATE(3041), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3279), 1, + STATE(3220), 1, aux_sym_shortcode_repeat1, - [113253] = 3, - ACTIONS(8175), 1, + [114739] = 3, + ACTIONS(7971), 1, sym__whitespace, - STATE(3236), 1, + STATE(3057), 1, aux_sym_shortcode_escaped_repeat1, - STATE(3280), 1, + STATE(3221), 1, aux_sym_shortcode_repeat1, - [113263] = 3, - ACTIONS(2161), 1, - aux_sym_target_token1, - ACTIONS(8177), 1, - aux_sym_pandoc_span_token1, - STATE(1440), 1, - sym_target, - [113273] = 3, - ACTIONS(2217), 1, - aux_sym_target_token1, - ACTIONS(8179), 1, - aux_sym_pandoc_span_token1, - STATE(1154), 1, - sym_target, - [113283] = 3, - ACTIONS(2217), 1, + [114749] = 3, + ACTIONS(2227), 1, aux_sym_target_token1, - ACTIONS(8181), 1, + ACTIONS(7973), 1, aux_sym_pandoc_span_token1, - STATE(1156), 1, + STATE(1133), 1, sym_target, - [113293] = 3, - ACTIONS(2161), 1, + [114759] = 3, + ACTIONS(7975), 1, + sym__line_ending, + ACTIONS(7977), 1, + sym__eof, + STATE(3701), 1, + sym__newline, + [114769] = 3, + ACTIONS(2227), 1, aux_sym_target_token1, - ACTIONS(8183), 1, + ACTIONS(7979), 1, aux_sym_pandoc_span_token1, - STATE(1441), 1, + STATE(1135), 1, sym_target, - [113303] = 3, - ACTIONS(113), 1, + [114779] = 3, + ACTIONS(7525), 1, sym__line_ending, - ACTIONS(8185), 1, + ACTIONS(7981), 1, sym__eof, - STATE(506), 1, + STATE(3666), 1, sym__newline, - [113313] = 1, - ACTIONS(7643), 2, + [114789] = 2, + ACTIONS(7983), 1, + sym__whitespace, + STATE(3064), 1, + aux_sym_shortcode_repeat1, + [114796] = 2, + ACTIONS(6933), 1, + sym__block_close, + ACTIONS(6935), 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, + sym__whitespace, + [114817] = 1, + ACTIONS(7292), 2, + sym__pipe_table_delimiter, + sym__whitespace, + [114822] = 2, + ACTIONS(7487), 1, + sym__pipe_table_delimiter, + ACTIONS(7989), 1, + sym__whitespace, + [114829] = 1, + ACTIONS(7531), 2, sym__soft_line_ending, - sym__strikeout_close, - [113318] = 2, - ACTIONS(6504), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(3741), 1, - sym__commonmark_double_quote_string, - [113325] = 2, - ACTIONS(8187), 1, + 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__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__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, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113332] = 1, - ACTIONS(7643), 2, - sym__soft_line_ending, - sym__single_quote_span_close, - [113337] = 2, - ACTIONS(7563), 1, + [114870] = 2, + ACTIONS(7998), 1, + sym__whitespace, + STATE(3059), 1, + aux_sym_shortcode_escaped_repeat2, + [114877] = 2, + ACTIONS(6921), 1, sym__line_ending, - ACTIONS(8189), 1, - sym__pipe_table_delimiter, - [113344] = 1, - ACTIONS(7516), 2, - anon_sym_RPAREN, + STATE(2490), 1, + sym__newline, + [114884] = 2, + ACTIONS(8001), 1, sym__whitespace, - [113349] = 2, - ACTIONS(7087), 1, + STATE(3064), 1, + aux_sym_shortcode_repeat1, + [114891] = 1, + ACTIONS(7531), 2, + sym__soft_line_ending, + sym__strikeout_close, + [114896] = 2, + ACTIONS(6959), 1, sym__block_close, - ACTIONS(7089), 1, + ACTIONS(6961), 1, sym__fenced_code_block_end_backtick, - [113356] = 2, - ACTIONS(6504), 1, + [114903] = 2, + ACTIONS(8003), 1, + sym__whitespace, + STATE(3064), 1, + aux_sym_shortcode_repeat1, + [114910] = 2, + ACTIONS(7123), 1, + 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(3645), 1, + STATE(3640), 1, sym__commonmark_double_quote_string, - [113363] = 1, - ACTIONS(7413), 2, + [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, + sym__block_close, + ACTIONS(8010), 1, + sym_block_continuation, + [114950] = 1, + ACTIONS(3081), 2, + sym__key_specifier_token, + aux_sym__commonmark_specifier_start_with_class_token2, + [114955] = 1, + ACTIONS(7239), 2, sym__pipe_table_delimiter, sym__whitespace, - [113368] = 2, - ACTIONS(7061), 1, + [114960] = 2, + ACTIONS(7320), 1, sym__line_ending, - STATE(2534), 1, - sym__newline, - [113375] = 2, - ACTIONS(8191), 1, + ACTIONS(8012), 1, + sym__pipe_table_delimiter, + [114967] = 2, + ACTIONS(6923), 1, sym__block_close, - ACTIONS(8193), 1, + ACTIONS(6925), 1, sym__fenced_code_block_end_backtick, - [113382] = 2, - ACTIONS(8195), 1, + [114974] = 2, + ACTIONS(7320), 1, sym__line_ending, - STATE(2514), 1, - sym__newline, - [113389] = 2, - ACTIONS(8197), 1, + ACTIONS(7487), 1, + sym__pipe_table_delimiter, + [114981] = 1, + ACTIONS(7322), 2, + sym__pipe_table_delimiter, sym__whitespace, - STATE(3281), 1, - aux_sym_shortcode_escaped_repeat2, - [113396] = 2, - ACTIONS(183), 1, + [114986] = 2, + ACTIONS(8014), 1, + sym__block_close, + ACTIONS(8016), 1, + sym__fenced_code_block_end_backtick, + [114993] = 2, + ACTIONS(2330), 1, sym__line_ending, - STATE(38), 1, - sym__newline, - [113403] = 2, - ACTIONS(8199), 1, - sym__whitespace, - STATE(3195), 1, - aux_sym_shortcode_repeat1, - [113410] = 2, - ACTIONS(6504), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(3965), 1, - sym__commonmark_double_quote_string, - [113417] = 2, - ACTIONS(8201), 1, + ACTIONS(7487), 1, + sym__pipe_table_delimiter, + [115000] = 2, + ACTIONS(8018), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113424] = 2, - ACTIONS(8203), 1, + [115007] = 2, + ACTIONS(8020), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113431] = 2, - ACTIONS(6504), 1, + [115014] = 1, + ACTIONS(7531), 2, + sym__soft_line_ending, + sym__double_quote_span_close, + [115019] = 2, + ACTIONS(181), 1, + sym__line_ending, + STATE(57), 1, + sym__newline, + [115026] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3969), 1, + STATE(3258), 1, sym__commonmark_double_quote_string, - [113438] = 2, - ACTIONS(183), 1, + [115033] = 2, + ACTIONS(181), 1, sym__line_ending, - STATE(52), 1, + STATE(58), 1, sym__newline, - [113445] = 1, - ACTIONS(7333), 2, - sym__pipe_table_delimiter, - sym__whitespace, - [113450] = 1, - ACTIONS(7643), 2, + [115040] = 1, + ACTIONS(7531), 2, sym__soft_line_ending, - sym__superscript_close, - [113455] = 2, - ACTIONS(7663), 1, + sym__emphasis_close_underscore, + [115045] = 2, + ACTIONS(7127), 1, sym__pipe_table_delimiter, - ACTIONS(8205), 1, + ACTIONS(8022), 1, sym__whitespace, - [113462] = 2, - ACTIONS(7349), 1, + [115052] = 2, + ACTIONS(6921), 1, sym__line_ending, - ACTIONS(8189), 1, - sym__pipe_table_delimiter, - [113469] = 1, - ACTIONS(3444), 2, + STATE(2499), 1, + sym__newline, + [115059] = 2, + ACTIONS(8024), 1, sym__line_ending, - sym__eof, - [113474] = 1, - ACTIONS(3452), 2, - sym__key_specifier_token, - aux_sym__commonmark_specifier_start_with_class_token2, - [113479] = 2, - ACTIONS(7061), 1, + STATE(2468), 1, + sym__newline, + [115066] = 2, + ACTIONS(181), 1, sym__line_ending, - STATE(2539), 1, + STATE(42), 1, sym__newline, - [113486] = 2, - ACTIONS(8207), 1, - sym__whitespace, - STATE(3281), 1, - aux_sym_shortcode_escaped_repeat2, - [113493] = 2, - ACTIONS(183), 1, + [115073] = 1, + ACTIONS(7531), 2, + sym__soft_line_ending, + sym__strong_emphasis_close_star, + [115078] = 2, + ACTIONS(6921), 1, sym__line_ending, - STATE(59), 1, + STATE(2496), 1, + sym__newline, + [115085] = 2, + ACTIONS(181), 1, + sym__line_ending, + STATE(44), 1, sym__newline, - [113500] = 2, - ACTIONS(8209), 1, + [115092] = 2, + ACTIONS(181), 1, + sym__line_ending, + STATE(45), 1, + sym__newline, + [115099] = 2, + ACTIONS(8026), 1, sym__whitespace, - STATE(3195), 1, + STATE(3059), 1, + aux_sym_shortcode_escaped_repeat2, + [115106] = 2, + ACTIONS(8028), 1, + sym__whitespace, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113507] = 2, - ACTIONS(6504), 1, + [115113] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3422), 1, + STATE(3719), 1, sym__commonmark_double_quote_string, - [113514] = 2, - ACTIONS(8211), 1, + [115120] = 2, + ACTIONS(8030), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113521] = 2, - ACTIONS(8213), 1, + [115127] = 2, + ACTIONS(8032), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113528] = 2, - ACTIONS(6504), 1, + [115134] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3426), 1, + STATE(3744), 1, sym__commonmark_double_quote_string, - [113535] = 2, - ACTIONS(183), 1, + [115141] = 1, + ACTIONS(7531), 2, + sym__soft_line_ending, + sym__subscript_close, + [115146] = 2, + ACTIONS(6929), 1, + sym__block_close, + ACTIONS(6931), 1, + sym__fenced_code_block_end_backtick, + [115153] = 1, + ACTIONS(3435), 2, + sym__line_ending, + sym__eof, + [115158] = 2, + ACTIONS(6921), 1, + sym__line_ending, + STATE(2485), 1, + sym__newline, + [115165] = 2, + ACTIONS(8024), 1, + sym__line_ending, + STATE(2476), 1, + sym__newline, + [115172] = 2, + ACTIONS(181), 1, sym__line_ending, STATE(49), 1, sym__newline, - [113542] = 2, - ACTIONS(2407), 1, + [115179] = 2, + ACTIONS(6921), 1, sym__line_ending, - ACTIONS(7663), 1, - sym__pipe_table_delimiter, - [113549] = 2, - ACTIONS(2403), 1, + STATE(2491), 1, + sym__newline, + [115186] = 2, + ACTIONS(181), 1, sym__line_ending, - ACTIONS(8189), 1, - sym__pipe_table_delimiter, - [113556] = 2, - ACTIONS(7091), 1, - sym__block_close, - ACTIONS(7093), 1, - sym__fenced_code_block_end_backtick, - [113563] = 2, - ACTIONS(7349), 1, + STATE(51), 1, + sym__newline, + [115193] = 2, + ACTIONS(181), 1, sym__line_ending, - ACTIONS(7663), 1, - sym__pipe_table_delimiter, - [113570] = 2, - ACTIONS(7282), 1, - sym__pipe_table_delimiter, - ACTIONS(8215), 1, - sym__whitespace, - [113577] = 2, - ACTIONS(8217), 1, + STATE(52), 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(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113584] = 2, - ACTIONS(7061), 1, - sym__line_ending, - STATE(2543), 1, - sym__newline, - [113591] = 2, - ACTIONS(8219), 1, + [115212] = 2, + ACTIONS(8036), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113598] = 2, - ACTIONS(8221), 1, + [115219] = 2, + ACTIONS(6364), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3467), 1, + sym__commonmark_double_quote_string, + [115226] = 2, + ACTIONS(8038), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113605] = 2, - ACTIONS(6504), 1, + [115233] = 2, + ACTIONS(8040), 1, + sym__whitespace, + STATE(3064), 1, + aux_sym_shortcode_repeat1, + [115240] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3642), 1, + STATE(3538), 1, sym__commonmark_double_quote_string, - [113612] = 2, - ACTIONS(8223), 1, + [115247] = 2, + ACTIONS(6388), 1, + sym__key_specifier_token, + STATE(3735), 1, + sym__commonmark_key_value_specifier, + [115254] = 1, + ACTIONS(7531), 2, + sym__soft_line_ending, + sym__single_quote_span_close, + [115259] = 2, + ACTIONS(8042), 1, sym__whitespace, - STATE(3195), 1, + STATE(3059), 1, + aux_sym_shortcode_escaped_repeat2, + [115266] = 2, + ACTIONS(8044), 1, + sym__whitespace, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113619] = 2, - ACTIONS(6504), 1, + [115273] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3554), 1, + STATE(3428), 1, sym__commonmark_double_quote_string, - [113626] = 2, - ACTIONS(8225), 1, + [115280] = 2, + ACTIONS(8046), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113633] = 2, - ACTIONS(8227), 1, + [115287] = 2, + ACTIONS(8048), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113640] = 2, - ACTIONS(6504), 1, + [115294] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3557), 1, + STATE(3447), 1, sym__commonmark_double_quote_string, - [113647] = 1, - ACTIONS(7643), 2, - sym__soft_line_ending, - sym__double_quote_span_close, - [113652] = 2, - ACTIONS(8195), 1, - sym__line_ending, - STATE(2511), 1, - sym__newline, - [113659] = 2, - ACTIONS(8229), 1, + [115301] = 2, + ACTIONS(8050), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113666] = 2, - ACTIONS(8231), 1, + [115308] = 2, + ACTIONS(8052), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113673] = 1, - ACTIONS(3316), 2, - sym__line_ending, - sym__eof, - [113678] = 2, - ACTIONS(6504), 1, + [115315] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3963), 1, + STATE(3863), 1, sym__commonmark_double_quote_string, - [113685] = 2, - ACTIONS(183), 1, - sym__line_ending, - STATE(41), 1, - sym__newline, - [113692] = 2, - ACTIONS(6504), 1, + [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, aux_sym__commonmark_double_quote_string_token1, - STATE(3796), 1, + STATE(3878), 1, sym__commonmark_double_quote_string, - [113699] = 2, - ACTIONS(2403), 1, - sym__line_ending, - ACTIONS(7663), 1, - sym__pipe_table_delimiter, - [113706] = 2, - ACTIONS(7061), 1, - sym__line_ending, - STATE(2540), 1, - sym__newline, - [113713] = 1, - ACTIONS(7355), 2, - sym__pipe_table_delimiter, + [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, - [113718] = 2, - ACTIONS(8233), 1, + STATE(3064), 1, + aux_sym_shortcode_repeat1, + [115371] = 2, + ACTIONS(6364), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3890), 1, + sym__commonmark_double_quote_string, + [115378] = 2, + ACTIONS(8062), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113725] = 2, - ACTIONS(8235), 1, - sym__block_close, - ACTIONS(8237), 1, - sym_block_continuation, - [113732] = 2, - ACTIONS(8239), 1, + [115385] = 2, + ACTIONS(8064), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113739] = 2, - ACTIONS(6504), 1, + [115392] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3651), 1, + STATE(3895), 1, sym__commonmark_double_quote_string, - [113746] = 2, - ACTIONS(8241), 1, + [115399] = 2, + ACTIONS(8066), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113753] = 2, - ACTIONS(8243), 1, + [115406] = 2, + ACTIONS(8068), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113760] = 2, - ACTIONS(6504), 1, + [115413] = 2, + ACTIONS(6364), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3398), 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, aux_sym__commonmark_double_quote_string_token1, - STATE(3661), 1, + STATE(3401), 1, sym__commonmark_double_quote_string, - [113767] = 2, - ACTIONS(7079), 1, + [115441] = 2, + ACTIONS(6955), 1, sym__block_close, - ACTIONS(7081), 1, + ACTIONS(6957), 1, sym__fenced_code_block_end_backtick, - [113774] = 1, - ACTIONS(7643), 2, - sym__soft_line_ending, - sym__subscript_close, - [113779] = 1, - ACTIONS(7643), 2, - sym__soft_line_ending, - aux_sym_insert_token1, - [113784] = 2, - ACTIONS(6686), 1, - sym__key_specifier_token, - STATE(2704), 1, - sym__commonmark_key_value_specifier, - [113791] = 2, - ACTIONS(8245), 1, + [115448] = 2, + ACTIONS(8074), 1, + anon_sym_DASH, + STATE(2460), 1, + aux_sym_pipe_table_delimiter_cell_repeat1, + [115455] = 2, + ACTIONS(8076), 1, sym__block_close, - ACTIONS(8247), 1, - sym__fenced_code_block_end_backtick, - [113798] = 1, - ACTIONS(7569), 2, - anon_sym_RPAREN, - sym__whitespace, - [113803] = 2, - ACTIONS(7061), 1, - sym__line_ending, - STATE(2532), 1, - sym__newline, - [113810] = 2, - ACTIONS(8249), 1, + ACTIONS(8078), 1, + sym_block_continuation, + [115462] = 2, + ACTIONS(8080), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113817] = 2, - ACTIONS(183), 1, + [115469] = 2, + ACTIONS(8024), 1, sym__line_ending, - STATE(43), 1, + STATE(2477), 1, sym__newline, - [113824] = 2, - ACTIONS(8251), 1, + [115476] = 2, + ACTIONS(8082), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113831] = 2, - ACTIONS(6504), 1, + [115483] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3751), 1, + STATE(3510), 1, sym__commonmark_double_quote_string, - [113838] = 2, - ACTIONS(8253), 1, + [115490] = 2, + ACTIONS(8084), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113845] = 2, - ACTIONS(8255), 1, + [115497] = 2, + ACTIONS(8086), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113852] = 2, - ACTIONS(6504), 1, + [115504] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3757), 1, + STATE(3527), 1, sym__commonmark_double_quote_string, - [113859] = 2, - ACTIONS(7063), 1, + [115511] = 2, + ACTIONS(8088), 1, sym__block_close, - ACTIONS(7065), 1, + ACTIONS(8090), 1, sym__fenced_code_block_end_backtick, - [113866] = 2, - ACTIONS(2399), 1, + [115518] = 2, + ACTIONS(2433), 1, sym__line_ending, - ACTIONS(7663), 1, + ACTIONS(7487), 1, sym__pipe_table_delimiter, - [113873] = 2, - ACTIONS(183), 1, - sym__line_ending, - STATE(44), 1, - sym__newline, - [113880] = 2, - ACTIONS(8257), 1, + [115525] = 2, + ACTIONS(8092), 1, sym__whitespace, - STATE(3195), 1, - aux_sym_shortcode_repeat1, - [113887] = 1, - ACTIONS(8260), 2, - sym__line_ending, - sym__eof, - [113892] = 1, - ACTIONS(7643), 2, - sym__soft_line_ending, - sym__emphasis_close_star, - [113897] = 2, - ACTIONS(8262), 1, - sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113904] = 2, - ACTIONS(8264), 1, - sym__whitespace, - STATE(3281), 1, - aux_sym_shortcode_escaped_repeat2, - [113911] = 2, - ACTIONS(8266), 1, + [115532] = 2, + ACTIONS(8094), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113918] = 2, - ACTIONS(6504), 1, + [115539] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3873), 1, + STATE(3690), 1, sym__commonmark_double_quote_string, - [113925] = 2, - ACTIONS(8268), 1, + [115546] = 2, + ACTIONS(8096), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113932] = 2, - ACTIONS(8270), 1, + [115553] = 2, + ACTIONS(8098), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113939] = 2, - ACTIONS(6504), 1, + [115560] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3876), 1, + STATE(3696), 1, sym__commonmark_double_quote_string, - [113946] = 2, - ACTIONS(8272), 1, + [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(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113953] = 2, - ACTIONS(8274), 1, + [115586] = 2, + ACTIONS(8102), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113960] = 2, - ACTIONS(6504), 1, + [115593] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3740), 1, + STATE(3858), 1, sym__commonmark_double_quote_string, - [113967] = 2, - ACTIONS(8276), 1, + [115600] = 2, + ACTIONS(8104), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [113974] = 2, - ACTIONS(8278), 1, + [115607] = 2, + ACTIONS(8106), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [113981] = 2, - ACTIONS(6504), 1, + [115614] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3754), 1, + STATE(3861), 1, sym__commonmark_double_quote_string, - [113988] = 2, - ACTIONS(3157), 1, - sym__blank_line_start, - ACTIONS(8280), 1, - sym_block_continuation, - [113995] = 2, - ACTIONS(8282), 1, + [115621] = 2, + ACTIONS(8108), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [114002] = 2, - ACTIONS(8284), 1, - anon_sym_DASH, - STATE(2505), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - [114009] = 2, - ACTIONS(8286), 1, + [115628] = 2, + ACTIONS(8110), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114016] = 2, - ACTIONS(6504), 1, + [115635] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3972), 1, + STATE(3448), 1, sym__commonmark_double_quote_string, - [114023] = 2, - ACTIONS(8288), 1, + [115642] = 2, + ACTIONS(8112), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [114030] = 2, - ACTIONS(8290), 1, + [115649] = 2, + ACTIONS(8114), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114037] = 2, - ACTIONS(6504), 1, + [115656] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3975), 1, + STATE(3460), 1, sym__commonmark_double_quote_string, - [114044] = 2, - ACTIONS(7307), 1, - sym__pipe_table_delimiter, - ACTIONS(8292), 1, - sym__whitespace, - [114051] = 1, - ACTIONS(7643), 2, - sym__soft_line_ending, - sym__emphasis_close_underscore, - [114056] = 2, - ACTIONS(7067), 1, - sym__block_close, - ACTIONS(7069), 1, - sym__fenced_code_block_end_backtick, - [114063] = 2, - ACTIONS(7635), 1, + [115663] = 2, + ACTIONS(7435), 1, + sym__line_ending, + ACTIONS(8012), 1, sym__pipe_table_delimiter, - ACTIONS(8294), 1, - sym__whitespace, - [114070] = 2, - ACTIONS(8296), 1, + [115670] = 2, + ACTIONS(8116), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [114077] = 2, - ACTIONS(8298), 1, - sym__whitespace, - STATE(3195), 1, - aux_sym_shortcode_repeat1, - [114084] = 2, - ACTIONS(8300), 1, + [115677] = 2, + ACTIONS(8118), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114091] = 2, - ACTIONS(8302), 1, + [115684] = 2, + ACTIONS(6364), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3684), 1, + sym__commonmark_double_quote_string, + [115691] = 2, + ACTIONS(8120), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [114098] = 2, - ACTIONS(8304), 1, + [115698] = 2, + ACTIONS(8122), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114105] = 2, - ACTIONS(8306), 1, + [115705] = 2, + ACTIONS(6364), 1, + aux_sym__commonmark_double_quote_string_token1, + STATE(3694), 1, + sym__commonmark_double_quote_string, + [115712] = 1, + ACTIONS(7386), 2, + anon_sym_RPAREN, sym__whitespace, - STATE(3195), 1, - aux_sym_shortcode_repeat1, - [114112] = 2, - ACTIONS(6504), 1, + [115717] = 2, + ACTIONS(8124), 1, + sym__whitespace, + STATE(3059), 1, + aux_sym_shortcode_escaped_repeat2, + [115724] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3344), 1, + STATE(3902), 1, sym__commonmark_double_quote_string, - [114119] = 2, - ACTIONS(8308), 1, + [115731] = 2, + ACTIONS(8126), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [114126] = 2, - ACTIONS(8310), 1, + [115738] = 2, + ACTIONS(8128), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114133] = 2, - ACTIONS(6504), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(3347), 1, - sym__commonmark_double_quote_string, - [114140] = 2, - ACTIONS(6504), 1, + [115745] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3702), 1, + STATE(3909), 1, sym__commonmark_double_quote_string, - [114147] = 2, - ACTIONS(183), 1, - sym__line_ending, - STATE(55), 1, - sym__newline, - [114154] = 2, - ACTIONS(2399), 1, + [115752] = 2, + ACTIONS(8130), 1, + sym__block_close, + ACTIONS(8132), 1, + sym__fenced_code_block_end_backtick, + [115759] = 1, + ACTIONS(3073), 2, sym__line_ending, - ACTIONS(8189), 1, - sym__pipe_table_delimiter, - [114161] = 2, - ACTIONS(8312), 1, - sym__whitespace, - STATE(3236), 1, - aux_sym_shortcode_escaped_repeat1, - [114168] = 2, - ACTIONS(8315), 1, + sym__eof, + [115764] = 2, + ACTIONS(2699), 1, + sym__close_block, + ACTIONS(8134), 1, + sym_block_continuation, + [115771] = 2, + ACTIONS(8136), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [114175] = 2, - ACTIONS(7294), 1, - sym__pipe_table_delimiter, - ACTIONS(8317), 1, - sym__whitespace, - [114182] = 2, - ACTIONS(8319), 1, + [115778] = 2, + ACTIONS(8138), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114189] = 2, - ACTIONS(7061), 1, - sym__line_ending, - STATE(2545), 1, - sym__newline, - [114196] = 2, - ACTIONS(6504), 1, + [115785] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3472), 1, + STATE(3282), 1, sym__commonmark_double_quote_string, - [114203] = 2, - ACTIONS(8321), 1, - sym__whitespace, - STATE(3281), 1, - aux_sym_shortcode_escaped_repeat2, - [114210] = 2, - ACTIONS(8323), 1, + [115792] = 2, + ACTIONS(8140), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [114217] = 2, - ACTIONS(8325), 1, + [115799] = 2, + ACTIONS(8142), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114224] = 2, - ACTIONS(6504), 1, + [115806] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3409), 1, + STATE(3285), 1, sym__commonmark_double_quote_string, - [114231] = 2, - ACTIONS(8327), 1, + [115813] = 2, + ACTIONS(8144), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [114238] = 2, - ACTIONS(8329), 1, + [115820] = 2, + ACTIONS(8146), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114245] = 2, - ACTIONS(6504), 1, + [115827] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3412), 1, + STATE(3346), 1, sym__commonmark_double_quote_string, - [114252] = 2, - ACTIONS(8331), 1, + [115834] = 2, + ACTIONS(8148), 1, sym__whitespace, - STATE(3195), 1, + STATE(3059), 1, + aux_sym_shortcode_escaped_repeat2, + [115841] = 2, + ACTIONS(8150), 1, + sym__whitespace, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114259] = 2, - ACTIONS(6504), 1, + [115848] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3487), 1, + STATE(3349), 1, sym__commonmark_double_quote_string, - [114266] = 2, - ACTIONS(7075), 1, - sym__block_close, - ACTIONS(7077), 1, - sym__fenced_code_block_end_backtick, - [114273] = 2, - ACTIONS(8333), 1, - sym__whitespace, - STATE(3281), 1, - aux_sym_shortcode_escaped_repeat2, - [114280] = 2, - ACTIONS(7274), 1, + [115855] = 2, + ACTIONS(2435), 1, + sym__line_ending, + ACTIONS(8012), 1, sym__pipe_table_delimiter, - ACTIONS(8335), 1, - sym__whitespace, - [114287] = 2, - ACTIONS(8195), 1, + [115862] = 2, + ACTIONS(2435), 1, sym__line_ending, - STATE(2515), 1, - sym__newline, - [114294] = 2, - ACTIONS(8337), 1, - sym__block_close, - ACTIONS(8339), 1, - sym__fenced_code_block_end_backtick, - [114301] = 2, - ACTIONS(8341), 1, - anon_sym_DASH, - STATE(2658), 1, - aux_sym_pipe_table_delimiter_cell_repeat1, - [114308] = 2, - ACTIONS(8343), 1, - sym__whitespace, - STATE(3281), 1, - aux_sym_shortcode_escaped_repeat2, - [114315] = 2, - ACTIONS(8345), 1, + ACTIONS(7487), 1, + sym__pipe_table_delimiter, + [115869] = 2, + ACTIONS(2433), 1, + sym__line_ending, + ACTIONS(8012), 1, + sym__pipe_table_delimiter, + [115876] = 2, + ACTIONS(8152), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [114322] = 2, - ACTIONS(8347), 1, + [115883] = 2, + ACTIONS(8154), 1, sym__whitespace, - STATE(3195), 1, - aux_sym_shortcode_repeat1, - [114329] = 2, - ACTIONS(8349), 1, - sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114336] = 2, - ACTIONS(6504), 1, + [115890] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3474), 1, + STATE(3410), 1, sym__commonmark_double_quote_string, - [114343] = 2, - ACTIONS(8351), 1, + [115897] = 2, + ACTIONS(8156), 1, sym__whitespace, - STATE(3281), 1, + STATE(3059), 1, aux_sym_shortcode_escaped_repeat2, - [114350] = 2, - ACTIONS(8353), 1, + [115904] = 2, + ACTIONS(8158), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114357] = 2, - ACTIONS(6504), 1, + [115911] = 2, + ACTIONS(6364), 1, aux_sym__commonmark_double_quote_string_token1, - STATE(3477), 1, + STATE(3413), 1, sym__commonmark_double_quote_string, - [114364] = 2, - ACTIONS(6504), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(3713), 1, - sym__commonmark_double_quote_string, - [114371] = 2, - ACTIONS(183), 1, - sym__line_ending, - STATE(56), 1, - sym__newline, - [114378] = 2, - ACTIONS(8355), 1, + [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(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114385] = 2, - ACTIONS(8357), 1, + [115932] = 2, + ACTIONS(8164), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114392] = 2, - ACTIONS(6526), 1, - sym__key_specifier_token, - STATE(3860), 1, - sym__commonmark_key_value_specifier, - [114399] = 2, - ACTIONS(3157), 1, - sym__close_block, - ACTIONS(8359), 1, - sym_block_continuation, - [114406] = 2, - ACTIONS(8361), 1, + [115939] = 2, + ACTIONS(8166), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114413] = 2, - ACTIONS(8363), 1, + [115946] = 2, + ACTIONS(8168), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114420] = 1, - ACTIONS(7643), 2, - sym__soft_line_ending, - sym__strong_emphasis_close_star, - [114425] = 2, - ACTIONS(3157), 1, - sym__block_close, - ACTIONS(8365), 1, - sym_block_continuation, - [114432] = 2, - ACTIONS(8367), 1, + [115953] = 2, + ACTIONS(8170), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114439] = 2, - ACTIONS(8369), 1, + [115960] = 2, + ACTIONS(8172), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114446] = 1, - ACTIONS(3452), 2, - sym__shortcode_open, - aux_sym_target_token2, - [114451] = 2, - ACTIONS(6522), 1, - sym__key_specifier_token, - STATE(3728), 1, - sym__shortcode_key_value_specifier, - [114458] = 2, - ACTIONS(8371), 1, + [115967] = 2, + ACTIONS(8174), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114465] = 2, - ACTIONS(8373), 1, + [115974] = 2, + ACTIONS(8176), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114472] = 2, - ACTIONS(8375), 1, - sym__whitespace, - STATE(3281), 1, - aux_sym_shortcode_escaped_repeat2, - [114479] = 2, - ACTIONS(8378), 1, - sym__whitespace, - STATE(3281), 1, - aux_sym_shortcode_escaped_repeat2, - [114486] = 2, - ACTIONS(8380), 1, - sym__blank_line_start, - STATE(3872), 1, - sym__blank_line, - [114493] = 2, - ACTIONS(8382), 1, + [115981] = 2, + ACTIONS(7170), 1, + sym__pipe_table_delimiter, + ACTIONS(8178), 1, sym__whitespace, - STATE(3195), 1, - aux_sym_shortcode_repeat1, - [114500] = 2, - ACTIONS(6504), 1, - aux_sym__commonmark_double_quote_string_token1, - STATE(3716), 1, - sym__commonmark_double_quote_string, - [114507] = 1, - ACTIONS(7643), 2, - sym__soft_line_ending, - sym__strong_emphasis_close_underscore, - [114512] = 2, - ACTIONS(8384), 1, + [115988] = 2, + ACTIONS(8180), 1, sym__whitespace, - STATE(3195), 1, + STATE(3064), 1, aux_sym_shortcode_repeat1, - [114519] = 1, - ACTIONS(8386), 1, - sym__whitespace, - [114523] = 1, - ACTIONS(8388), 1, + [115995] = 1, + ACTIONS(8182), 1, + anon_sym_RBRACE, + [115999] = 1, + ACTIONS(8184), 1, + sym__double_quote_span_close, + [116003] = 1, + ACTIONS(8186), 1, + anon_sym_DOLLAR, + [116007] = 1, + ACTIONS(8188), 1, + anon_sym_DOLLAR_DOLLAR, + [116011] = 1, + ACTIONS(8190), 1, aux_sym_citation_token2, - [114527] = 1, - ACTIONS(8390), 1, + [116015] = 1, + ACTIONS(8192), 1, aux_sym_citation_token2, - [114531] = 1, - ACTIONS(8392), 1, - sym__strikeout_close, - [114535] = 1, - ACTIONS(8394), 1, + [116019] = 1, + ACTIONS(8194), 1, aux_sym_citation_token2, - [114539] = 1, - ACTIONS(8396), 1, + [116023] = 1, + ACTIONS(8196), 1, aux_sym_citation_token2, - [114543] = 1, - ACTIONS(8398), 1, - sym__subscript_close, - [114547] = 1, - ACTIONS(8400), 1, - sym__close_block, - [114551] = 1, - ACTIONS(8402), 1, - sym__superscript_close, - [114555] = 1, - ACTIONS(8404), 1, - aux_sym_insert_token1, - [114559] = 1, - ACTIONS(8406), 1, + [116027] = 1, + ACTIONS(8198), 1, sym__block_close, - [114563] = 1, - ACTIONS(8408), 1, + [116031] = 1, + ACTIONS(8200), 1, + anon_sym_RBRACE, + [116035] = 1, + ACTIONS(8202), 1, + sym__whitespace, + [116039] = 1, + ACTIONS(8204), 1, aux_sym_insert_token1, - [114567] = 1, - ACTIONS(8410), 1, + [116043] = 1, + ACTIONS(8206), 1, + anon_sym_RBRACE, + [116047] = 1, + ACTIONS(8208), 1, aux_sym_insert_token1, - [114571] = 1, - ACTIONS(8412), 1, + [116051] = 1, + ACTIONS(8210), 1, + anon_sym_RBRACE, + [116055] = 1, + ACTIONS(8212), 1, aux_sym_insert_token1, - [114575] = 1, - ACTIONS(8414), 1, - sym__whitespace, - [114579] = 1, - ACTIONS(8416), 1, + [116059] = 1, + ACTIONS(8214), 1, aux_sym_insert_token1, - [114583] = 1, - ACTIONS(8418), 1, - sym__strong_emphasis_close_star, - [114587] = 1, - ACTIONS(8420), 1, + [116063] = 1, + ACTIONS(8216), 1, + aux_sym_insert_token1, + [116067] = 1, + ACTIONS(8218), 1, + anon_sym_RBRACE, + [116071] = 1, + ACTIONS(8220), 1, sym__single_quote_span_close, - [114591] = 1, - ACTIONS(8422), 1, + [116075] = 1, + ACTIONS(8222), 1, sym__double_quote_span_close, - [114595] = 1, - ACTIONS(8424), 1, + [116079] = 1, + ACTIONS(8224), 1, anon_sym_RBRACE, - [114599] = 1, - ACTIONS(8426), 1, + [116083] = 1, + ACTIONS(8226), 1, anon_sym_RBRACE, - [114603] = 1, - ACTIONS(8428), 1, + [116087] = 1, + ACTIONS(8228), 1, sym__strikeout_close, - [114607] = 1, - ACTIONS(8430), 1, + [116091] = 1, + ACTIONS(8230), 1, sym__subscript_close, - [114611] = 1, - ACTIONS(8432), 1, + [116095] = 1, + ACTIONS(8232), 1, sym__superscript_close, - [114615] = 1, - ACTIONS(8418), 1, - sym__strong_emphasis_close_underscore, - [114619] = 1, - ACTIONS(8434), 1, + [116099] = 1, + ACTIONS(8234), 1, + anon_sym_DOLLAR, + [116103] = 1, + ACTIONS(8236), 1, sym__strong_emphasis_close_star, - [114623] = 1, - ACTIONS(8434), 1, + [116107] = 1, + ACTIONS(8236), 1, sym__strong_emphasis_close_underscore, - [114627] = 1, - ACTIONS(8436), 1, + [116111] = 1, + ACTIONS(8238), 1, sym__emphasis_close_star, - [114631] = 1, - ACTIONS(8436), 1, + [116115] = 1, + ACTIONS(8238), 1, sym__emphasis_close_underscore, - [114635] = 1, - ACTIONS(8438), 1, - aux_sym_insert_token1, - [114639] = 1, - ACTIONS(8440), 1, - anon_sym_RBRACE, - [114643] = 1, - ACTIONS(8442), 1, + [116119] = 1, + ACTIONS(8240), 1, aux_sym_insert_token1, - [114647] = 1, - ACTIONS(8139), 1, + [116123] = 1, + ACTIONS(8242), 1, anon_sym_RBRACE, - [114651] = 1, - ACTIONS(8444), 1, + [116127] = 1, + ACTIONS(8244), 1, + sym__whitespace, + [116131] = 1, + ACTIONS(8246), 1, + anon_sym_RPAREN, + [116135] = 1, + ACTIONS(8248), 1, anon_sym_DOLLAR, - [114655] = 1, - ACTIONS(8446), 1, + [116139] = 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_DOLLAR, - [114659] = 1, - ACTIONS(8448), 1, + [116143] = 1, + ACTIONS(8252), 1, anon_sym_RBRACE, - [114663] = 1, - ACTIONS(8450), 1, + [116147] = 1, + ACTIONS(8254), 1, anon_sym_RBRACE, - [114667] = 1, - ACTIONS(8452), 1, + [116151] = 1, + ACTIONS(8256), 1, anon_sym_RBRACE, - [114671] = 1, - ACTIONS(8454), 1, + [116155] = 1, + ACTIONS(8258), 1, anon_sym_RBRACE, - [114675] = 1, - ACTIONS(8456), 1, + [116159] = 1, + ACTIONS(8260), 1, aux_sym_insert_token1, - [114679] = 1, - ACTIONS(8458), 1, + [116163] = 1, + ACTIONS(8262), 1, aux_sym_insert_token1, - [114683] = 1, - ACTIONS(8460), 1, + [116167] = 1, + ACTIONS(8264), 1, aux_sym_insert_token1, - [114687] = 1, - ACTIONS(8462), 1, + [116171] = 1, + ACTIONS(8266), 1, aux_sym_insert_token1, - [114691] = 1, - ACTIONS(7431), 1, + [116175] = 1, + ACTIONS(7223), 1, aux_sym_inline_note_token1, - [114695] = 1, - ACTIONS(8464), 1, - sym__emphasis_close_star, - [114699] = 1, - ACTIONS(8466), 1, + [116179] = 1, + ACTIONS(8268), 1, aux_sym_insert_token1, - [114703] = 1, - ACTIONS(7587), 1, - sym__whitespace, - [114707] = 1, - ACTIONS(8468), 1, + [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, - [114711] = 1, - ACTIONS(8464), 1, - sym__emphasis_close_underscore, - [114715] = 1, - ACTIONS(8470), 1, - sym__single_quote_span_close, - [114719] = 1, - ACTIONS(8472), 1, + [116195] = 1, + ACTIONS(8276), 1, + anon_sym_RBRACE, + [116199] = 1, + ACTIONS(8278), 1, + aux_sym_insert_token1, + [116203] = 1, + ACTIONS(8280), 1, aux_sym_inline_note_token1, - [114723] = 1, - ACTIONS(8474), 1, + [116207] = 1, + ACTIONS(8282), 1, + aux_sym_insert_token1, + [116211] = 1, + ACTIONS(8284), 1, + sym__single_quote_span_close, + [116215] = 1, + ACTIONS(8286), 1, sym__double_quote_span_close, - [114727] = 1, - ACTIONS(8476), 1, + [116219] = 1, + ACTIONS(8288), 1, + sym__block_close, + [116223] = 1, + ACTIONS(8290), 1, anon_sym_RBRACE, - [114731] = 1, - ACTIONS(8478), 1, + [116227] = 1, + ACTIONS(8292), 1, + anon_sym_RPAREN, + [116231] = 1, + ACTIONS(8294), 1, anon_sym_RBRACE, - [114735] = 1, - ACTIONS(8480), 1, - aux_sym_insert_token1, - [114739] = 1, - ACTIONS(8482), 1, + [116235] = 1, + ACTIONS(8296), 1, sym__strikeout_close, - [114743] = 1, - ACTIONS(8484), 1, + [116239] = 1, + ACTIONS(8298), 1, anon_sym_RPAREN, - [114747] = 1, - ACTIONS(8486), 1, + [116243] = 1, + ACTIONS(7231), 1, + anon_sym_RBRACE, + [116247] = 1, + ACTIONS(8300), 1, sym__subscript_close, - [114751] = 1, - ACTIONS(8488), 1, + [116251] = 1, + ACTIONS(8302), 1, sym__superscript_close, - [114755] = 1, - ACTIONS(8490), 1, - anon_sym_RPAREN, - [114759] = 1, - ACTIONS(6248), 1, - sym__whitespace, - [114763] = 1, - ACTIONS(6252), 1, - sym__whitespace, - [114767] = 1, - ACTIONS(6260), 1, - sym__whitespace, - [114771] = 1, - ACTIONS(8492), 1, - sym__single_quote_span_close, - [114775] = 1, - ACTIONS(8494), 1, - sym__strong_emphasis_close_star, - [114779] = 1, - ACTIONS(8494), 1, - sym__strong_emphasis_close_underscore, - [114783] = 1, - ACTIONS(8496), 1, + [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, aux_sym_citation_token2, - [114787] = 1, - ACTIONS(8498), 1, + [116271] = 1, + ACTIONS(8308), 1, aux_sym_citation_token2, - [114791] = 1, - ACTIONS(8500), 1, - sym__emphasis_close_star, - [114795] = 1, - ACTIONS(8500), 1, - sym__emphasis_close_underscore, - [114799] = 1, - ACTIONS(8502), 1, - aux_sym_insert_token1, - [114803] = 1, - ACTIONS(8504), 1, - sym__double_quote_span_close, - [114807] = 1, - ACTIONS(8506), 1, + [116275] = 1, + ACTIONS(8310), 1, anon_sym_RBRACE, - [114811] = 1, - ACTIONS(8508), 1, - sym__block_close, - [114815] = 1, - ACTIONS(8510), 1, + [116279] = 1, + ACTIONS(8312), 1, + anon_sym_EQ, + [116283] = 1, + ACTIONS(8314), 1, aux_sym_insert_token1, - [114819] = 1, - ACTIONS(8512), 1, - anon_sym_DOLLAR, - [114823] = 1, - ACTIONS(8514), 1, + [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, aux_sym_insert_token1, - [114827] = 1, - ACTIONS(8516), 1, - anon_sym_DOLLAR, - [114831] = 1, - ACTIONS(8518), 1, + [116299] = 1, + ACTIONS(8320), 1, + sym__block_close, + [116303] = 1, + ACTIONS(8322), 1, aux_sym_insert_token1, - [114835] = 1, - ACTIONS(8520), 1, - anon_sym_DOLLAR_DOLLAR, - [114839] = 1, - ACTIONS(8522), 1, + [116307] = 1, + ACTIONS(8324), 1, + sym__emphasis_close_star, + [116311] = 1, + ACTIONS(8326), 1, aux_sym_insert_token1, - [114843] = 1, - ACTIONS(8524), 1, - anon_sym_RBRACE, - [114847] = 1, - ACTIONS(8526), 1, + [116315] = 1, + ACTIONS(8324), 1, + sym__emphasis_close_underscore, + [116319] = 1, + ACTIONS(8328), 1, + aux_sym_insert_token1, + [116323] = 1, + ACTIONS(3073), 1, + sym__block_close, + [116327] = 1, + ACTIONS(8330), 1, sym__single_quote_span_close, - [114851] = 1, - ACTIONS(8528), 1, + [116331] = 1, + ACTIONS(8332), 1, sym__double_quote_span_close, - [114855] = 1, - ACTIONS(8530), 1, + [116335] = 1, + ACTIONS(8334), 1, anon_sym_RBRACE, - [114859] = 1, - ACTIONS(8532), 1, + [116339] = 1, + ACTIONS(8336), 1, anon_sym_RBRACE, - [114863] = 1, - ACTIONS(8534), 1, + [116343] = 1, + ACTIONS(8338), 1, sym__strikeout_close, - [114867] = 1, - ACTIONS(8536), 1, + [116347] = 1, + ACTIONS(8340), 1, sym__subscript_close, - [114871] = 1, - ACTIONS(8538), 1, + [116351] = 1, + ACTIONS(8342), 1, sym__superscript_close, - [114875] = 1, - ACTIONS(8540), 1, + [116355] = 1, + ACTIONS(8344), 1, anon_sym_RBRACE, - [114879] = 1, - ACTIONS(8542), 1, + [116359] = 1, + ACTIONS(8346), 1, sym__strong_emphasis_close_star, - [114883] = 1, - ACTIONS(8542), 1, + [116363] = 1, + ACTIONS(8346), 1, sym__strong_emphasis_close_underscore, - [114887] = 1, - ACTIONS(8544), 1, + [116367] = 1, + ACTIONS(8348), 1, sym__emphasis_close_star, - [114891] = 1, - ACTIONS(8544), 1, + [116371] = 1, + ACTIONS(8348), 1, sym__emphasis_close_underscore, - [114895] = 1, - ACTIONS(8546), 1, - anon_sym_RBRACE, - [114899] = 1, - ACTIONS(3444), 1, - sym__blank_line_start, - [114903] = 1, - ACTIONS(8548), 1, + [116375] = 1, + ACTIONS(8350), 1, anon_sym_RBRACE, - [114907] = 1, - ACTIONS(8550), 1, + [116379] = 1, + ACTIONS(8352), 1, aux_sym_insert_token1, - [114911] = 1, - ACTIONS(8552), 1, + [116383] = 1, + ACTIONS(8354), 1, + aux_sym_insert_token1, + [116387] = 1, + ACTIONS(8356), 1, + aux_sym_insert_token1, + [116391] = 1, + ACTIONS(8358), 1, anon_sym_DOLLAR, - [114915] = 1, - ACTIONS(8554), 1, + [116395] = 1, + ACTIONS(8360), 1, anon_sym_DOLLAR_DOLLAR, - [114919] = 1, - ACTIONS(8556), 1, + [116399] = 1, + ACTIONS(8362), 1, anon_sym_RBRACE, - [114923] = 1, - ACTIONS(8558), 1, + [116403] = 1, + ACTIONS(8364), 1, anon_sym_RBRACE, - [114927] = 1, - ACTIONS(8560), 1, + [116407] = 1, + ACTIONS(8366), 1, anon_sym_RBRACE, - [114931] = 1, - ACTIONS(8562), 1, + [116411] = 1, + ACTIONS(8368), 1, anon_sym_RBRACE, - [114935] = 1, - ACTIONS(8564), 1, - aux_sym_insert_token1, - [114939] = 1, - ACTIONS(8566), 1, - aux_sym_insert_token1, - [114943] = 1, - ACTIONS(8568), 1, - aux_sym_insert_token1, - [114947] = 1, - ACTIONS(8570), 1, + [116415] = 1, + ACTIONS(8370), 1, aux_sym_insert_token1, - [114951] = 1, - ACTIONS(7439), 1, - aux_sym_inline_note_token1, - [114955] = 1, - ACTIONS(8572), 1, + [116419] = 1, + ACTIONS(8372), 1, aux_sym_insert_token1, - [114959] = 1, - ACTIONS(8574), 1, + [116423] = 1, + ACTIONS(8374), 1, aux_sym_insert_token1, - [114963] = 1, - ACTIONS(8576), 1, + [116427] = 1, + ACTIONS(8376), 1, aux_sym_insert_token1, - [114967] = 1, - ACTIONS(7343), 1, + [116431] = 1, + ACTIONS(7245), 1, aux_sym_inline_note_token1, - [114971] = 1, - ACTIONS(8578), 1, + [116435] = 1, + ACTIONS(8378), 1, + anon_sym_DOLLAR, + [116439] = 1, + ACTIONS(8380), 1, anon_sym_DOLLAR_DOLLAR, - [114975] = 1, - ACTIONS(8580), 1, + [116443] = 1, + ACTIONS(8382), 1, anon_sym_RBRACE, - [114979] = 1, - ACTIONS(8582), 1, - aux_sym_inline_note_token1, - [114983] = 1, - ACTIONS(3444), 1, - sym__close_block, - [114987] = 1, - ACTIONS(8584), 1, + [116447] = 1, + ACTIONS(8384), 1, anon_sym_RBRACE, - [114991] = 1, - ACTIONS(8586), 1, + [116451] = 1, + ACTIONS(8386), 1, anon_sym_RBRACE, - [114995] = 1, - ACTIONS(3444), 1, - sym__block_close, - [114999] = 1, - ACTIONS(8588), 1, + [116455] = 1, + ACTIONS(8388), 1, + anon_sym_RBRACE, + [116459] = 1, + ACTIONS(8390), 1, + aux_sym_inline_note_token1, + [116463] = 1, + ACTIONS(8392), 1, sym__block_close, - [115003] = 1, - ACTIONS(8590), 1, - anon_sym_RPAREN, - [115007] = 1, - ACTIONS(8592), 1, + [116467] = 1, + ACTIONS(8394), 1, sym__block_close, - [115011] = 1, - ACTIONS(8594), 1, - aux_sym_inline_note_token1, - [115015] = 1, - ACTIONS(8596), 1, + [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, anon_sym_RPAREN, - [115019] = 1, - ACTIONS(8598), 1, - anon_sym_RBRACE, - [115023] = 1, - ACTIONS(8600), 1, - anon_sym_RBRACE, - [115027] = 1, - ACTIONS(8602), 1, + [116487] = 1, + ACTIONS(8402), 1, aux_sym_insert_token1, - [115031] = 1, - ACTIONS(8604), 1, + [116491] = 1, + ACTIONS(8404), 1, aux_sym_insert_token1, - [115035] = 1, - ACTIONS(8606), 1, + [116495] = 1, + ACTIONS(8406), 1, + anon_sym_RPAREN, + [116499] = 1, + ACTIONS(7277), 1, + aux_sym_inline_note_token1, + [116503] = 1, + ACTIONS(8408), 1, aux_sym_insert_token1, - [115039] = 1, - ACTIONS(8608), 1, + [116507] = 1, + ACTIONS(7154), 1, + aux_sym_inline_note_token1, + [116511] = 1, + ACTIONS(8410), 1, aux_sym_insert_token1, - [115043] = 1, - ACTIONS(8610), 1, + [116515] = 1, + ACTIONS(8412), 1, + sym__close_block, + [116519] = 1, + ACTIONS(7227), 1, + aux_sym_inline_note_token1, + [116523] = 1, + ACTIONS(8414), 1, aux_sym_citation_token2, - [115047] = 1, - ACTIONS(8612), 1, + [116527] = 1, + ACTIONS(8416), 1, aux_sym_citation_token2, - [115051] = 1, - ACTIONS(8614), 1, - ts_builtin_sym_end, - [115055] = 1, - ACTIONS(8616), 1, - anon_sym_RPAREN, - [115059] = 1, - ACTIONS(7443), 1, - aux_sym_inline_note_token1, - [115063] = 1, - ACTIONS(8618), 1, + [116531] = 1, + ACTIONS(8418), 1, aux_sym_insert_token1, - [115067] = 1, - ACTIONS(7288), 1, + [116535] = 1, + ACTIONS(8420), 1, + sym__block_close, + [116539] = 1, + ACTIONS(8422), 1, + aux_sym_insert_token1, + [116543] = 1, + ACTIONS(8424), 1, + aux_sym_insert_token1, + [116547] = 1, + ACTIONS(6264), 1, + sym__line_ending, + [116551] = 1, + ACTIONS(8426), 1, + aux_sym_insert_token1, + [116555] = 1, + ACTIONS(8428), 1, aux_sym_inline_note_token1, - [115071] = 1, - ACTIONS(8620), 1, - anon_sym_RPAREN, - [115075] = 1, - ACTIONS(8622), 1, + [116559] = 1, + ACTIONS(8430), 1, aux_sym_insert_token1, - [115079] = 1, - ACTIONS(8624), 1, - anon_sym_RBRACE, - [115083] = 1, - ACTIONS(8626), 1, + [116563] = 1, + ACTIONS(8432), 1, aux_sym_insert_token1, - [115087] = 1, - ACTIONS(8628), 1, - sym__strikeout_close, - [115091] = 1, - ACTIONS(8630), 1, + [116567] = 1, + ACTIONS(8434), 1, aux_sym_insert_token1, - [115095] = 1, - ACTIONS(8632), 1, - anon_sym_RBRACE, - [115099] = 1, - ACTIONS(8634), 1, + [116571] = 1, + ACTIONS(8436), 1, + aux_sym_citation_token1, + [116575] = 1, + ACTIONS(8438), 1, aux_sym_insert_token1, - [115103] = 1, - ACTIONS(8636), 1, - aux_sym_citation_token2, - [115107] = 1, - ACTIONS(8638), 1, + [116579] = 1, + ACTIONS(8440), 1, + aux_sym_inline_note_token1, + [116583] = 1, + ACTIONS(8442), 1, sym__single_quote_span_close, - [115111] = 1, - ACTIONS(8640), 1, + [116587] = 1, + ACTIONS(8444), 1, sym__double_quote_span_close, - [115115] = 1, - ACTIONS(8642), 1, + [116591] = 1, + ACTIONS(8446), 1, anon_sym_RBRACE, - [115119] = 1, - ACTIONS(8644), 1, + [116595] = 1, + ACTIONS(8448), 1, anon_sym_RBRACE, - [115123] = 1, - ACTIONS(8646), 1, + [116599] = 1, + ACTIONS(8450), 1, sym__strikeout_close, - [115127] = 1, - ACTIONS(8648), 1, + [116603] = 1, + ACTIONS(8452), 1, sym__subscript_close, - [115131] = 1, - ACTIONS(8650), 1, + [116607] = 1, + ACTIONS(8454), 1, sym__superscript_close, - [115135] = 1, - ACTIONS(8652), 1, - sym__subscript_close, - [115139] = 1, - ACTIONS(8654), 1, + [116611] = 1, + ACTIONS(8456), 1, + sym__block_close, + [116615] = 1, + ACTIONS(8458), 1, sym__strong_emphasis_close_star, - [115143] = 1, - ACTIONS(8654), 1, + [116619] = 1, + ACTIONS(8458), 1, sym__strong_emphasis_close_underscore, - [115147] = 1, - ACTIONS(8656), 1, + [116623] = 1, + ACTIONS(8460), 1, sym__emphasis_close_star, - [115151] = 1, - ACTIONS(8656), 1, + [116627] = 1, + ACTIONS(8460), 1, sym__emphasis_close_underscore, - [115155] = 1, - ACTIONS(8658), 1, - sym__superscript_close, - [115159] = 1, - ACTIONS(8660), 1, - aux_sym_citation_token2, - [115163] = 1, - ACTIONS(8662), 1, + [116631] = 1, + ACTIONS(8462), 1, + anon_sym_RBRACE, + [116635] = 1, + ACTIONS(7439), 1, + sym__pipe_table_delimiter, + [116639] = 1, + ACTIONS(8014), 1, sym__block_close, - [115167] = 1, - ACTIONS(8664), 1, - sym__strong_emphasis_close_star, - [115171] = 1, - ACTIONS(8666), 1, + [116643] = 1, + ACTIONS(8464), 1, + sym__block_close, + [116647] = 1, + ACTIONS(8466), 1, anon_sym_DOLLAR, - [115175] = 1, - ACTIONS(8668), 1, + [116651] = 1, + ACTIONS(8468), 1, anon_sym_DOLLAR_DOLLAR, - [115179] = 1, - ACTIONS(8670), 1, + [116655] = 1, + ACTIONS(8470), 1, anon_sym_RBRACE, - [115183] = 1, - ACTIONS(8672), 1, + [116659] = 1, + ACTIONS(8472), 1, anon_sym_RBRACE, - [115187] = 1, - ACTIONS(8674), 1, + [116663] = 1, + ACTIONS(8474), 1, anon_sym_RBRACE, - [115191] = 1, - ACTIONS(8676), 1, + [116667] = 1, + ACTIONS(8476), 1, anon_sym_RBRACE, - [115195] = 1, - ACTIONS(8678), 1, + [116671] = 1, + ACTIONS(8478), 1, aux_sym_insert_token1, - [115199] = 1, - ACTIONS(8680), 1, + [116675] = 1, + ACTIONS(8480), 1, aux_sym_insert_token1, - [115203] = 1, - ACTIONS(8682), 1, + [116679] = 1, + ACTIONS(8482), 1, aux_sym_insert_token1, - [115207] = 1, - ACTIONS(8684), 1, + [116683] = 1, + ACTIONS(8484), 1, aux_sym_insert_token1, - [115211] = 1, - ACTIONS(7453), 1, + [116687] = 1, + ACTIONS(7269), 1, aux_sym_inline_note_token1, - [115215] = 1, - ACTIONS(8686), 1, + [116691] = 1, + ACTIONS(8486), 1, + anon_sym_RPAREN, + [116695] = 1, + ACTIONS(8488), 1, aux_sym_inline_note_token1, - [115219] = 1, - ACTIONS(8688), 1, + [116699] = 1, + ACTIONS(8490), 1, sym__block_close, - [115223] = 1, - ACTIONS(8690), 1, - aux_sym_citation_token2, - [115227] = 1, - ACTIONS(8692), 1, - aux_sym_citation_token2, - [115231] = 1, - ACTIONS(8664), 1, - sym__strong_emphasis_close_underscore, - [115235] = 1, - ACTIONS(8694), 1, - sym__emphasis_close_star, - [115239] = 1, - ACTIONS(8696), 1, + [116703] = 1, + ACTIONS(8492), 1, + anon_sym_RPAREN, + [116707] = 1, + ACTIONS(8494), 1, + anon_sym_RBRACE, + [116711] = 1, + ACTIONS(8496), 1, + aux_sym_insert_token1, + [116715] = 1, + ACTIONS(8498), 1, aux_sym_inline_note_token1, - [115243] = 1, - ACTIONS(7537), 1, - sym__pipe_table_delimiter, - [115247] = 1, - ACTIONS(8698), 1, + [116719] = 1, + ACTIONS(8500), 1, sym__block_close, - [115251] = 1, - ACTIONS(8694), 1, - sym__emphasis_close_underscore, - [115255] = 1, - ACTIONS(8700), 1, - anon_sym_RPAREN, - [115259] = 1, - ACTIONS(8702), 1, + [116723] = 1, + ACTIONS(8502), 1, + aux_sym_inline_note_token1, + [116727] = 1, + ACTIONS(8504), 1, + anon_sym_DOLLAR, + [116731] = 1, + ACTIONS(8506), 1, sym__block_close, - [115263] = 1, - ACTIONS(8704), 1, + [116735] = 1, + ACTIONS(8508), 1, + sym__block_close, + [116739] = 1, + ACTIONS(8510), 1, anon_sym_RPAREN, - [115267] = 1, - ACTIONS(8706), 1, - aux_sym_insert_token1, - [115271] = 1, - ACTIONS(8708), 1, - sym__whitespace, - [115275] = 1, - ACTIONS(8710), 1, + [116743] = 1, + ACTIONS(8512), 1, + anon_sym_DOLLAR_DOLLAR, + [116747] = 1, + ACTIONS(8514), 1, + aux_sym_citation_token2, + [116751] = 1, + ACTIONS(8516), 1, anon_sym_RPAREN, - [115279] = 1, - ACTIONS(8712), 1, - aux_sym_insert_token1, - [115283] = 1, - ACTIONS(7547), 1, + [116755] = 1, + ACTIONS(8518), 1, + sym__whitespace, + [116759] = 1, + ACTIONS(7288), 1, sym__pipe_table_delimiter, - [115287] = 1, - ACTIONS(8714), 1, + [116763] = 1, + ACTIONS(8520), 1, anon_sym_RBRACE, - [115291] = 1, - ACTIONS(8716), 1, + [116767] = 1, + ACTIONS(8522), 1, anon_sym_RBRACE, - [115295] = 1, - ACTIONS(8718), 1, + [116771] = 1, + ACTIONS(8524), 1, anon_sym_RBRACE, - [115299] = 1, - ACTIONS(8720), 1, + [116775] = 1, + ACTIONS(8526), 1, anon_sym_RBRACE, - [115303] = 1, - ACTIONS(8722), 1, + [116779] = 1, + ACTIONS(8528), 1, + aux_sym_citation_token2, + [116783] = 1, + ACTIONS(6272), 1, + sym__whitespace, + [116787] = 1, + ACTIONS(8530), 1, + aux_sym_inline_note_token1, + [116791] = 1, + ACTIONS(8532), 1, aux_sym_insert_token1, - [115307] = 1, - ACTIONS(8724), 1, - sym__block_close, - [115311] = 1, - ACTIONS(8726), 1, + [116795] = 1, + ACTIONS(6276), 1, + sym__whitespace, + [116799] = 1, + ACTIONS(6280), 1, + sym__whitespace, + [116803] = 1, + ACTIONS(8534), 1, + anon_sym_RBRACE, + [116807] = 1, + ACTIONS(8536), 1, aux_sym_insert_token1, - [115315] = 1, - ACTIONS(8728), 1, + [116811] = 1, + ACTIONS(8538), 1, anon_sym_RPAREN, - [115319] = 1, - ACTIONS(8730), 1, + [116815] = 1, + ACTIONS(8540), 1, aux_sym_insert_token1, - [115323] = 1, - ACTIONS(8732), 1, - sym__close_block, - [115327] = 1, - ACTIONS(8734), 1, - sym__single_quote_span_close, - [115331] = 1, - ACTIONS(8736), 1, - sym__double_quote_span_close, - [115335] = 1, - ACTIONS(8738), 1, + [116819] = 1, + ACTIONS(7172), 1, + aux_sym_inline_note_token1, + [116823] = 1, + ACTIONS(8542), 1, aux_sym_insert_token1, - [115339] = 1, - ACTIONS(8740), 1, - anon_sym_RBRACE, - [115343] = 1, - ACTIONS(8742), 1, + [116827] = 1, + ACTIONS(8544), 1, anon_sym_RBRACE, - [115347] = 1, - ACTIONS(8744), 1, - sym__strikeout_close, - [115351] = 1, - ACTIONS(8746), 1, + [116831] = 1, + ACTIONS(8546), 1, aux_sym_insert_token1, - [115355] = 1, - ACTIONS(8191), 1, - sym__block_close, - [115359] = 1, - ACTIONS(8748), 1, - sym__subscript_close, - [115363] = 1, - ACTIONS(8750), 1, - sym__superscript_close, - [115367] = 1, - ACTIONS(8752), 1, + [116835] = 1, + ACTIONS(8548), 1, aux_sym_insert_token1, - [115371] = 1, - ACTIONS(8754), 1, + [116839] = 1, + ACTIONS(8550), 1, + aux_sym_insert_token1, + [116843] = 1, + ACTIONS(8552), 1, + aux_sym_insert_token1, + [116847] = 1, + ACTIONS(8554), 1, sym__whitespace, - [115375] = 1, - ACTIONS(8756), 1, - sym__block_close, - [115379] = 1, - ACTIONS(8758), 1, + [116851] = 1, + ACTIONS(8556), 1, + sym__single_quote_span_close, + [116855] = 1, + ACTIONS(8558), 1, aux_sym_citation_token1, - [115383] = 1, - ACTIONS(8760), 1, + [116859] = 1, + ACTIONS(8560), 1, aux_sym_citation_token1, - [115387] = 1, - ACTIONS(8762), 1, - sym__strong_emphasis_close_star, - [115391] = 1, - ACTIONS(8764), 1, - sym__single_quote_span_close, - [115395] = 1, - ACTIONS(8766), 1, + [116863] = 1, + ACTIONS(8562), 1, sym__double_quote_span_close, - [115399] = 1, - ACTIONS(8768), 1, + [116867] = 1, + ACTIONS(8564), 1, anon_sym_RBRACE, - [115403] = 1, - ACTIONS(8770), 1, + [116871] = 1, + ACTIONS(8566), 1, anon_sym_RBRACE, - [115407] = 1, - ACTIONS(8772), 1, + [116875] = 1, + ACTIONS(8568), 1, sym__strikeout_close, - [115411] = 1, - ACTIONS(8774), 1, + [116879] = 1, + ACTIONS(8570), 1, sym__subscript_close, - [115415] = 1, - ACTIONS(8776), 1, + [116883] = 1, + ACTIONS(8572), 1, sym__superscript_close, - [115419] = 1, - ACTIONS(8762), 1, - sym__strong_emphasis_close_underscore, - [115423] = 1, - ACTIONS(8778), 1, + [116887] = 1, + ACTIONS(8574), 1, + anon_sym_RPAREN, + [116891] = 1, + ACTIONS(8576), 1, + anon_sym_RPAREN, + [116895] = 1, + ACTIONS(8578), 1, + sym__strong_emphasis_close_star, + [116899] = 1, + ACTIONS(8580), 1, aux_sym_pandoc_math_token1, - [115427] = 1, - ACTIONS(8780), 1, + [116903] = 1, + ACTIONS(8582), 1, aux_sym_pandoc_display_math_token1, - [115431] = 1, - ACTIONS(8782), 1, - sym__emphasis_close_star, - [115435] = 1, - ACTIONS(8784), 1, - sym__strong_emphasis_close_star, - [115439] = 1, - ACTIONS(8784), 1, + [116907] = 1, + ACTIONS(8578), 1, sym__strong_emphasis_close_underscore, - [115443] = 1, - ACTIONS(8786), 1, + [116911] = 1, + ACTIONS(8584), 1, sym__emphasis_close_star, - [115447] = 1, - ACTIONS(8786), 1, - sym__emphasis_close_underscore, - [115451] = 1, - ACTIONS(8782), 1, + [116915] = 1, + ACTIONS(8586), 1, + aux_sym_insert_token1, + [116919] = 1, + ACTIONS(7127), 1, + sym__pipe_table_delimiter, + [116923] = 1, + ACTIONS(8588), 1, + aux_sym_citation_token2, + [116927] = 1, + ACTIONS(8590), 1, + aux_sym_citation_token2, + [116931] = 1, + ACTIONS(8592), 1, + aux_sym_insert_token1, + [116935] = 1, + ACTIONS(8584), 1, sym__emphasis_close_underscore, - [115455] = 1, - ACTIONS(8788), 1, + [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, sym__block_close, - [115459] = 1, - ACTIONS(6214), 1, + [116955] = 1, + ACTIONS(6268), 1, sym__line_ending, - [115463] = 1, - ACTIONS(8790), 1, - sym_shortcode_name, - [115467] = 1, - ACTIONS(8792), 1, - sym__block_close, - [115471] = 1, - ACTIONS(8794), 1, + [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, - [115475] = 1, - ACTIONS(8796), 1, - anon_sym_DOLLAR_DOLLAR, - [115479] = 1, - ACTIONS(8798), 1, - anon_sym_RBRACE, - [115483] = 1, - ACTIONS(8800), 1, + [116983] = 1, + ACTIONS(8612), 1, + sym__close_block, + [116987] = 1, + ACTIONS(8614), 1, anon_sym_RBRACE, - [115487] = 1, - ACTIONS(8802), 1, + [116991] = 1, + ACTIONS(8616), 1, + sym__strikeout_close, + [116995] = 1, + ACTIONS(8618), 1, anon_sym_RBRACE, - [115491] = 1, - ACTIONS(8804), 1, - anon_sym_DOLLAR, - [115495] = 1, - ACTIONS(8806), 1, + [116999] = 1, + ACTIONS(8620), 1, anon_sym_DOLLAR_DOLLAR, - [115499] = 1, - ACTIONS(8808), 1, + [117003] = 1, + ACTIONS(8622), 1, anon_sym_RBRACE, - [115503] = 1, - ACTIONS(8810), 1, + [117007] = 1, + ACTIONS(8624), 1, anon_sym_RBRACE, - [115507] = 1, - ACTIONS(8812), 1, + [117011] = 1, + ACTIONS(8626), 1, + anon_sym_EQ, + [117015] = 1, + ACTIONS(8628), 1, anon_sym_RBRACE, - [115511] = 1, - ACTIONS(8814), 1, + [117019] = 1, + ACTIONS(8630), 1, + anon_sym_RBRACE, + [117023] = 1, + ACTIONS(8632), 1, aux_sym_insert_token1, - [115515] = 1, - ACTIONS(8816), 1, + [117027] = 1, + ACTIONS(8634), 1, + sym__strikeout_close, + [117031] = 1, + ACTIONS(8636), 1, aux_sym_insert_token1, - [115519] = 1, - ACTIONS(8818), 1, + [117035] = 1, + ACTIONS(8638), 1, + sym__subscript_close, + [117039] = 1, + ACTIONS(7487), 1, + sym__pipe_table_delimiter, + [117043] = 1, + ACTIONS(8640), 1, aux_sym_insert_token1, - [115523] = 1, - ACTIONS(8820), 1, + [117047] = 1, + ACTIONS(8642), 1, aux_sym_insert_token1, - [115527] = 1, - ACTIONS(7361), 1, + [117051] = 1, + ACTIONS(7328), 1, aux_sym_inline_note_token1, - [115531] = 1, - ACTIONS(8822), 1, - anon_sym_DOLLAR, - [115535] = 1, - ACTIONS(8824), 1, - anon_sym_EQ, - [115539] = 1, - ACTIONS(8826), 1, - anon_sym_DOLLAR_DOLLAR, - [115543] = 1, - ACTIONS(8828), 1, - anon_sym_RBRACE, - [115547] = 1, - ACTIONS(8830), 1, - anon_sym_RBRACE, - [115551] = 1, - ACTIONS(7514), 1, + [117055] = 1, + ACTIONS(8644), 1, sym__whitespace, - [115555] = 1, - ACTIONS(8832), 1, + [117059] = 1, + ACTIONS(8646), 1, aux_sym_citation_token2, - [115559] = 1, - ACTIONS(8834), 1, - aux_sym_inline_note_token1, - [115563] = 1, - ACTIONS(7520), 1, - sym__whitespace, - [115567] = 1, - ACTIONS(8836), 1, - anon_sym_RBRACE, - [115571] = 1, - ACTIONS(8838), 1, + [117063] = 1, + ACTIONS(8648), 1, aux_sym_citation_token2, - [115575] = 1, - ACTIONS(8189), 1, - sym__pipe_table_delimiter, - [115579] = 1, - ACTIONS(8840), 1, + [117067] = 1, + ACTIONS(8650), 1, + sym__subscript_close, + [117071] = 1, + ACTIONS(8652), 1, sym__block_close, - [115583] = 1, - ACTIONS(8842), 1, - anon_sym_RPAREN, - [115587] = 1, - ACTIONS(8844), 1, + [117075] = 1, + ACTIONS(8654), 1, + sym__superscript_close, + [117079] = 1, + ACTIONS(7193), 1, + aux_sym_inline_note_token1, + [117083] = 1, + ACTIONS(8656), 1, anon_sym_RBRACE, - [115591] = 1, - ACTIONS(8846), 1, + [117087] = 1, + ACTIONS(8658), 1, anon_sym_RBRACE, - [115595] = 1, - ACTIONS(8848), 1, - anon_sym_RPAREN, - [115599] = 1, - ACTIONS(7543), 1, + [117091] = 1, + ACTIONS(8660), 1, + aux_sym_inline_note_token1, + [117095] = 1, + ACTIONS(8662), 1, + aux_sym_citation_token2, + [117099] = 1, + ACTIONS(8664), 1, sym__whitespace, - [115603] = 1, - ACTIONS(8850), 1, - aux_sym_insert_token1, - [115607] = 1, - ACTIONS(8852), 1, + [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, + aux_sym_citation_token2, + [117119] = 1, + ACTIONS(8674), 1, aux_sym_insert_token1, - [115611] = 1, - ACTIONS(8854), 1, + [117123] = 1, + ACTIONS(8676), 1, + sym__close_block, + [117127] = 1, + ACTIONS(8678), 1, aux_sym_insert_token1, - [115615] = 1, - ACTIONS(8856), 1, - aux_sym_citation_token1, - [115619] = 1, - ACTIONS(8858), 1, + [117131] = 1, + ACTIONS(8680), 1, sym__block_close, - [115623] = 1, - ACTIONS(8860), 1, - sym__whitespace, - [115627] = 1, - ACTIONS(8862), 1, + [117135] = 1, + ACTIONS(8682), 1, aux_sym_insert_token1, - [115631] = 1, - ACTIONS(8864), 1, - aux_sym_citation_token1, - [115635] = 1, - ACTIONS(8866), 1, - aux_sym_citation_token1, - [115639] = 1, - ACTIONS(8868), 1, - sym__block_close, - [115643] = 1, - ACTIONS(8870), 1, - sym__block_close, - [115647] = 1, - ACTIONS(8872), 1, - sym__block_close, - [115651] = 1, - ACTIONS(8874), 1, - sym__block_close, - [115655] = 1, - ACTIONS(8876), 1, - sym__block_close, - [115659] = 1, - ACTIONS(8878), 1, - sym__block_close, - [115663] = 1, - ACTIONS(8880), 1, + [117139] = 1, + ACTIONS(8684), 1, + anon_sym_RPAREN, + [117143] = 1, + ACTIONS(8686), 1, + aux_sym_insert_token1, + [117147] = 1, + ACTIONS(8688), 1, + sym__close_block, + [117151] = 1, + ACTIONS(8690), 1, + aux_sym_pandoc_math_token1, + [117155] = 1, + ACTIONS(8692), 1, + aux_sym_pandoc_display_math_token1, + [117159] = 1, + ACTIONS(8694), 1, + aux_sym_insert_token1, + [117163] = 1, + ACTIONS(8696), 1, + sym__single_quote_span_close, + [117167] = 1, + ACTIONS(8698), 1, + sym__double_quote_span_close, + [117171] = 1, + ACTIONS(8700), 1, anon_sym_RBRACE, - [115667] = 1, - ACTIONS(8882), 1, + [117175] = 1, + ACTIONS(8702), 1, anon_sym_RBRACE, - [115671] = 1, - ACTIONS(8884), 1, + [117179] = 1, + ACTIONS(8704), 1, + sym__strikeout_close, + [117183] = 1, + ACTIONS(8706), 1, + anon_sym_RBRACE, + [117187] = 1, + ACTIONS(8708), 1, + sym__block_close, + [117191] = 1, + ACTIONS(8710), 1, aux_sym_insert_token1, - [115675] = 1, - ACTIONS(8886), 1, + [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, + 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, + aux_sym_insert_token1, + [117263] = 1, + ACTIONS(8740), 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, + 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, + sym__double_quote_span_close, + [117291] = 1, + ACTIONS(8750), 1, + anon_sym_RBRACE, + [117295] = 1, + ACTIONS(8752), 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, + aux_sym_insert_token1, + [117311] = 1, + ACTIONS(8760), 1, + sym__block_close, + [117315] = 1, + ACTIONS(7591), 1, + anon_sym_RBRACE, + [117319] = 1, + ACTIONS(8762), 1, + aux_sym_insert_token1, + [117323] = 1, + ACTIONS(8764), 1, + aux_sym_insert_token1, + [117327] = 1, + ACTIONS(8766), 1, + aux_sym_citation_token1, + [117331] = 1, + ACTIONS(8768), 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, + anon_sym_RBRACE, + [117363] = 1, + ACTIONS(8782), 1, + anon_sym_RBRACE, + [117367] = 1, + ACTIONS(8784), 1, + sym__subscript_close, + [117371] = 1, + ACTIONS(8786), 1, aux_sym_pandoc_math_token1, - [115679] = 1, - ACTIONS(8888), 1, + [117375] = 1, + ACTIONS(8788), 1, + aux_sym_pandoc_display_math_token1, + [117379] = 1, + ACTIONS(8790), 1, + aux_sym_insert_token1, + [117383] = 1, + ACTIONS(8792), 1, + sym__single_quote_span_close, + [117387] = 1, + ACTIONS(8794), 1, + aux_sym_insert_token1, + [117391] = 1, + ACTIONS(8796), 1, + sym__double_quote_span_close, + [117395] = 1, + ACTIONS(8798), 1, + sym__single_quote_span_close, + [117399] = 1, + ACTIONS(8800), 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, + aux_sym_citation_token1, + [117439] = 1, + ACTIONS(8814), 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, + 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, + anon_sym_RBRACE, + [117475] = 1, + ACTIONS(8832), 1, + aux_sym_pandoc_math_token1, + [117479] = 1, + ACTIONS(8834), 1, + aux_sym_pandoc_display_math_token1, + [117483] = 1, + ACTIONS(8836), 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, + sym__subscript_close, + [117499] = 1, + ACTIONS(8844), 1, + sym__superscript_close, + [117503] = 1, + ACTIONS(8846), 1, + anon_sym_RBRACE, + [117507] = 1, + ACTIONS(8848), 1, + aux_sym_insert_token1, + [117511] = 1, + ACTIONS(8850), 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, + anon_sym_DOLLAR_DOLLAR, + [117535] = 1, + ACTIONS(8850), 1, + sym__strong_emphasis_close_underscore, + [117539] = 1, + ACTIONS(8858), 1, + aux_sym_citation_token1, + [117543] = 1, + ACTIONS(8860), 1, + aux_sym_citation_token1, + [117547] = 1, + ACTIONS(8862), 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, + aux_sym_insert_token1, + [117563] = 1, + ACTIONS(8870), 1, + aux_sym_insert_token1, + [117567] = 1, + ACTIONS(8872), 1, + aux_sym_insert_token1, + [117571] = 1, + ACTIONS(8874), 1, + aux_sym_insert_token1, + [117575] = 1, + ACTIONS(7314), 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, - [115683] = 1, + [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, - aux_sym_citation_token2, - [115687] = 1, + anon_sym_RBRACE, + [117615] = 1, ACTIONS(8892), 1, - aux_sym_citation_token2, - [115691] = 1, - ACTIONS(7561), 1, - sym__whitespace, - [115695] = 1, + anon_sym_DOLLAR, + [117619] = 1, ACTIONS(8894), 1, - aux_sym_insert_token1, - [115699] = 1, + anon_sym_RBRACE, + [117623] = 1, ACTIONS(8896), 1, aux_sym_insert_token1, - [115703] = 1, + [117627] = 1, ACTIONS(8898), 1, aux_sym_insert_token1, - [115707] = 1, + [117631] = 1, ACTIONS(8900), 1, aux_sym_insert_token1, - [115711] = 1, + [117635] = 1, ACTIONS(8902), 1, aux_sym_insert_token1, - [115715] = 1, - ACTIONS(7276), 1, - aux_sym_inline_note_token1, - [115719] = 1, + [117639] = 1, ACTIONS(8904), 1, - sym__single_quote_span_close, - [115723] = 1, + anon_sym_DOLLAR_DOLLAR, + [117643] = 1, ACTIONS(8906), 1, - aux_sym_insert_token1, - [115727] = 1, + aux_sym_citation_token1, + [117647] = 1, ACTIONS(8908), 1, - aux_sym_insert_token1, - [115731] = 1, - ACTIONS(7471), 1, - aux_sym_inline_note_token1, - [115735] = 1, + aux_sym_citation_token1, + [117651] = 1, ACTIONS(8910), 1, - aux_sym_insert_token1, - [115739] = 1, + anon_sym_RBRACE, + [117655] = 1, ACTIONS(8912), 1, - sym__double_quote_span_close, - [115743] = 1, + anon_sym_RBRACE, + [117659] = 1, ACTIONS(8914), 1, - aux_sym_insert_token1, - [115747] = 1, + anon_sym_RPAREN, + [117663] = 1, ACTIONS(8916), 1, anon_sym_RBRACE, - [115751] = 1, + [117667] = 1, ACTIONS(8918), 1, - aux_sym_insert_token1, - [115755] = 1, + sym__block_close, + [117671] = 1, ACTIONS(8920), 1, - anon_sym_RBRACE, - [115759] = 1, + sym__block_close, + [117675] = 1, ACTIONS(8922), 1, - aux_sym_insert_token1, - [115763] = 1, + sym__block_close, + [117679] = 1, ACTIONS(8924), 1, - sym__strikeout_close, - [115767] = 1, + sym__block_close, + [117683] = 1, ACTIONS(8926), 1, - sym__single_quote_span_close, - [115771] = 1, + aux_sym_pandoc_math_token1, + [117687] = 1, ACTIONS(8928), 1, - sym__double_quote_span_close, - [115775] = 1, + aux_sym_pandoc_display_math_token1, + [117691] = 1, ACTIONS(8930), 1, - anon_sym_RBRACE, - [115779] = 1, + sym__block_close, + [117695] = 1, ACTIONS(8932), 1, - anon_sym_RBRACE, - [115783] = 1, + sym__block_close, + [117699] = 1, ACTIONS(8934), 1, - sym__strikeout_close, - [115787] = 1, + anon_sym_RBRACE, + [117703] = 1, ACTIONS(8936), 1, - sym__subscript_close, - [115791] = 1, + aux_sym_insert_token1, + [117707] = 1, ACTIONS(8938), 1, - sym__superscript_close, - [115795] = 1, + aux_sym_insert_token1, + [117711] = 1, ACTIONS(8940), 1, - sym__subscript_close, - [115799] = 1, - ACTIONS(8942), 1, - sym__strong_emphasis_close_star, - [115803] = 1, + aux_sym_insert_token1, + [117715] = 1, + ACTIONS(7189), 1, + aux_sym_inline_note_token1, + [117719] = 1, ACTIONS(8942), 1, - sym__strong_emphasis_close_underscore, - [115807] = 1, - ACTIONS(8944), 1, - sym__emphasis_close_star, - [115811] = 1, + aux_sym_insert_token1, + [117723] = 1, ACTIONS(8944), 1, - sym__emphasis_close_underscore, - [115815] = 1, + anon_sym_DOLLAR, + [117727] = 1, ACTIONS(8946), 1, - sym__superscript_close, - [115819] = 1, + anon_sym_DOLLAR_DOLLAR, + [117731] = 1, ACTIONS(8948), 1, - sym__block_close, - [115823] = 1, - ACTIONS(8245), 1, - sym__block_close, - [115827] = 1, + anon_sym_RBRACE, + [117735] = 1, ACTIONS(8950), 1, - sym__strong_emphasis_close_star, - [115831] = 1, + anon_sym_RBRACE, + [117739] = 1, ACTIONS(8952), 1, - anon_sym_DOLLAR, - [115835] = 1, + sym__block_close, + [117743] = 1, + ACTIONS(7354), 1, + aux_sym_inline_note_token1, + [117747] = 1, ACTIONS(8954), 1, - anon_sym_DOLLAR_DOLLAR, - [115839] = 1, + aux_sym_citation_token1, + [117751] = 1, ACTIONS(8956), 1, - anon_sym_RBRACE, - [115843] = 1, + aux_sym_citation_token1, + [117755] = 1, ACTIONS(8958), 1, - anon_sym_RBRACE, - [115847] = 1, + sym__single_quote_span_close, + [117759] = 1, ACTIONS(8960), 1, - anon_sym_RBRACE, - [115851] = 1, + sym__superscript_close, + [117763] = 1, ACTIONS(8962), 1, - aux_sym_citation_token1, - [115855] = 1, + sym__block_close, + [117767] = 1, ACTIONS(8964), 1, - aux_sym_citation_token1, - [115859] = 1, + aux_sym_inline_note_token1, + [117771] = 1, ACTIONS(8966), 1, - anon_sym_RBRACE, - [115863] = 1, + aux_sym_commonmark_specifier_token1, + [117775] = 1, ACTIONS(8968), 1, - aux_sym_insert_token1, - [115867] = 1, + sym__strong_emphasis_close_star, + [117779] = 1, + ACTIONS(8968), 1, + sym__strong_emphasis_close_underscore, + [117783] = 1, ACTIONS(8970), 1, - sym__block_close, - [115871] = 1, + sym__emphasis_close_star, + [117787] = 1, ACTIONS(8972), 1, - sym__block_close, - [115875] = 1, + aux_sym_pandoc_math_token1, + [117791] = 1, ACTIONS(8974), 1, - sym__block_close, - [115879] = 1, + aux_sym_pandoc_display_math_token1, + [117795] = 1, ACTIONS(8976), 1, - sym__block_close, - [115883] = 1, + aux_sym_citation_token1, + [117799] = 1, ACTIONS(8978), 1, - sym__block_close, - [115887] = 1, + aux_sym_inline_note_token1, + [117803] = 1, ACTIONS(8980), 1, - sym__block_close, - [115891] = 1, + aux_sym_inline_note_token1, + [117807] = 1, ACTIONS(8982), 1, aux_sym_insert_token1, - [115895] = 1, + [117811] = 1, ACTIONS(8984), 1, - aux_sym_pandoc_math_token1, - [115899] = 1, + anon_sym_RBRACE, + [117815] = 1, + ACTIONS(8970), 1, + sym__emphasis_close_underscore, + [117819] = 1, ACTIONS(8986), 1, - aux_sym_pandoc_display_math_token1, - [115903] = 1, + anon_sym_RBRACE, + [117823] = 1, ACTIONS(8988), 1, aux_sym_insert_token1, - [115907] = 1, + [117827] = 1, ACTIONS(8990), 1, - aux_sym_insert_token1, - [115911] = 1, - ACTIONS(7377), 1, - aux_sym_inline_note_token1, - [115915] = 1, - ACTIONS(8950), 1, - sym__strong_emphasis_close_underscore, - [115919] = 1, + aux_sym_citation_token2, + [117831] = 1, ACTIONS(8992), 1, - sym__block_close, - [115923] = 1, - ACTIONS(8994), 1, - sym__emphasis_close_star, - [115927] = 1, + aux_sym_insert_token1, + [117835] = 1, ACTIONS(8994), 1, - sym__emphasis_close_underscore, - [115931] = 1, + anon_sym_RPAREN, + [117839] = 1, ACTIONS(8996), 1, - sym__block_close, - [115935] = 1, + aux_sym_insert_token1, + [117843] = 1, ACTIONS(8998), 1, - anon_sym_RPAREN, - [115939] = 1, + aux_sym_insert_token1, + [117847] = 1, ACTIONS(9000), 1, - aux_sym_inline_note_token1, - [115943] = 1, + sym__block_close, + [117851] = 1, ACTIONS(9002), 1, - sym__whitespace, - [115947] = 1, + aux_sym_citation_token1, + [117855] = 1, ACTIONS(9004), 1, - anon_sym_RPAREN, - [115951] = 1, + aux_sym_citation_token1, + [117859] = 1, ACTIONS(9006), 1, - sym__close_block, - [115955] = 1, + anon_sym_RPAREN, + [117863] = 1, + ACTIONS(7398), 1, + sym__pipe_table_delimiter, + [117867] = 1, ACTIONS(9008), 1, - anon_sym_DOLLAR, - [115959] = 1, + sym__block_close, + [117871] = 1, ACTIONS(9010), 1, - aux_sym_citation_token1, - [115963] = 1, + anon_sym_RBRACE, + [117875] = 1, ACTIONS(9012), 1, - aux_sym_citation_token1, - [115967] = 1, + anon_sym_RPAREN, + [117879] = 1, + ACTIONS(8088), 1, + sym__block_close, + [117883] = 1, ACTIONS(9014), 1, - anon_sym_DOLLAR_DOLLAR, - [115971] = 1, - ACTIONS(9016), 1, anon_sym_RPAREN, - [115975] = 1, + [117887] = 1, + ACTIONS(7215), 1, + aux_sym_inline_note_token1, + [117891] = 1, + ACTIONS(9016), 1, + aux_sym_pandoc_math_token1, + [117895] = 1, ACTIONS(9018), 1, - aux_sym_insert_token1, - [115979] = 1, + aux_sym_pandoc_display_math_token1, + [117899] = 1, ACTIONS(9020), 1, anon_sym_RBRACE, - [115983] = 1, + [117903] = 1, ACTIONS(9022), 1, - anon_sym_RBRACE, - [115987] = 1, + sym__blank_line_start, + [117907] = 1, ACTIONS(9024), 1, - sym__block_close, - [115991] = 1, + anon_sym_DOLLAR, + [117911] = 1, ACTIONS(9026), 1, - aux_sym_inline_note_token1, - [115995] = 1, - ACTIONS(6218), 1, - sym__line_ending, - [115999] = 1, + aux_sym_insert_token1, + [117915] = 1, ACTIONS(9028), 1, - aux_sym_pandoc_math_token1, - [116003] = 1, + aux_sym_citation_token2, + [117919] = 1, ACTIONS(9030), 1, - aux_sym_pandoc_display_math_token1, - [116007] = 1, - ACTIONS(6226), 1, - sym__line_ending, - [116011] = 1, + anon_sym_DOLLAR_DOLLAR, + [117923] = 1, ACTIONS(9032), 1, - anon_sym_RPAREN, - [116015] = 1, - ACTIONS(9034), 1, - sym__close_block, - [116019] = 1, - ACTIONS(9036), 1, - anon_sym_RBRACE, - [116023] = 1, - ACTIONS(9038), 1, - anon_sym_RBRACE, - [116027] = 1, - ACTIONS(9040), 1, - aux_sym_insert_token1, - [116031] = 1, - ACTIONS(9042), 1, sym__whitespace, - [116035] = 1, - ACTIONS(9044), 1, - aux_sym_insert_token1, - [116039] = 1, - ACTIONS(9046), 1, - aux_sym_insert_token1, - [116043] = 1, - ACTIONS(9048), 1, - aux_sym_insert_token1, - [116047] = 1, - ACTIONS(9050), 1, - aux_sym_citation_token2, - [116051] = 1, - ACTIONS(9052), 1, - aux_sym_citation_token2, - [116055] = 1, - ACTIONS(7317), 1, - aux_sym_inline_note_token1, - [116059] = 1, - ACTIONS(9054), 1, - anon_sym_RBRACE, - [116063] = 1, - ACTIONS(9056), 1, - aux_sym_citation_token1, - [116067] = 1, - ACTIONS(9058), 1, - aux_sym_citation_token1, - [116071] = 1, - ACTIONS(9060), 1, - sym__block_close, - [116075] = 1, - ACTIONS(9062), 1, - aux_sym_inline_note_token1, - [116079] = 1, - ACTIONS(8337), 1, - sym__block_close, - [116083] = 1, - ACTIONS(9064), 1, - sym__close_block, - [116087] = 1, - ACTIONS(9066), 1, - anon_sym_RBRACE, - [116091] = 1, - ACTIONS(9068), 1, - aux_sym_insert_token1, - [116095] = 1, - ACTIONS(9070), 1, - sym__close_block, - [116099] = 1, - ACTIONS(9072), 1, - aux_sym_insert_token1, - [116103] = 1, - ACTIONS(9074), 1, - aux_sym_pandoc_math_token1, - [116107] = 1, - ACTIONS(9076), 1, - aux_sym_pandoc_display_math_token1, - [116111] = 1, - ACTIONS(7307), 1, - sym__pipe_table_delimiter, - [116115] = 1, - ACTIONS(9078), 1, - sym__block_close, - [116119] = 1, - ACTIONS(9080), 1, - aux_sym_insert_token1, - [116123] = 1, - ACTIONS(9082), 1, - aux_sym_inline_note_token1, - [116127] = 1, - ACTIONS(9084), 1, - aux_sym_insert_token1, - [116131] = 1, - ACTIONS(9086), 1, - sym__strong_emphasis_close_star, - [116135] = 1, - ACTIONS(9088), 1, - sym__single_quote_span_close, - [116139] = 1, - ACTIONS(9090), 1, - sym__double_quote_span_close, - [116143] = 1, - ACTIONS(9092), 1, - anon_sym_RBRACE, - [116147] = 1, - ACTIONS(9094), 1, - anon_sym_RBRACE, - [116151] = 1, - ACTIONS(9096), 1, - sym__strikeout_close, - [116155] = 1, - ACTIONS(9098), 1, - sym__subscript_close, - [116159] = 1, - ACTIONS(9100), 1, - sym__superscript_close, - [116163] = 1, - ACTIONS(9102), 1, - sym__close_block, - [116167] = 1, - ACTIONS(9104), 1, - aux_sym_citation_token1, - [116171] = 1, - ACTIONS(9106), 1, - aux_sym_citation_token1, - [116175] = 1, - ACTIONS(9108), 1, - anon_sym_RPAREN, - [116179] = 1, - ACTIONS(9110), 1, - sym__block_close, - [116183] = 1, - ACTIONS(9112), 1, - sym__strong_emphasis_close_star, - [116187] = 1, - ACTIONS(9112), 1, - sym__strong_emphasis_close_underscore, - [116191] = 1, - ACTIONS(9114), 1, - sym__block_close, - [116195] = 1, - ACTIONS(9116), 1, - sym__emphasis_close_star, - [116199] = 1, - ACTIONS(9118), 1, - sym__block_close, - [116203] = 1, - ACTIONS(9116), 1, - sym__emphasis_close_underscore, - [116207] = 1, - ACTIONS(9120), 1, - aux_sym_pandoc_math_token1, - [116211] = 1, - ACTIONS(9122), 1, - aux_sym_pandoc_display_math_token1, - [116215] = 1, - ACTIONS(9124), 1, - aux_sym_citation_token2, - [116219] = 1, - ACTIONS(9126), 1, - anon_sym_RPAREN, - [116223] = 1, - ACTIONS(9128), 1, - sym__block_close, - [116227] = 1, - ACTIONS(9130), 1, - aux_sym_citation_token2, - [116231] = 1, - ACTIONS(9132), 1, - anon_sym_RPAREN, - [116235] = 1, - ACTIONS(9134), 1, - anon_sym_DOLLAR, - [116239] = 1, - ACTIONS(9136), 1, - anon_sym_DOLLAR_DOLLAR, - [116243] = 1, - ACTIONS(9138), 1, - anon_sym_RBRACE, - [116247] = 1, - ACTIONS(9140), 1, - anon_sym_RBRACE, - [116251] = 1, - ACTIONS(9142), 1, - anon_sym_RBRACE, - [116255] = 1, - ACTIONS(9144), 1, + [117927] = 1, + ACTIONS(9034), 1, anon_sym_RBRACE, - [116259] = 1, - ACTIONS(9146), 1, - aux_sym_insert_token1, - [116263] = 1, - ACTIONS(9148), 1, - aux_sym_insert_token1, - [116267] = 1, - ACTIONS(9150), 1, - aux_sym_insert_token1, - [116271] = 1, - ACTIONS(9152), 1, - aux_sym_citation_token1, - [116275] = 1, - ACTIONS(9154), 1, - aux_sym_citation_token1, - [116279] = 1, - ACTIONS(9156), 1, - sym__whitespace, - [116283] = 1, - ACTIONS(9158), 1, - aux_sym_insert_token1, - [116287] = 1, - ACTIONS(9160), 1, - sym__block_close, - [116291] = 1, - ACTIONS(9162), 1, - sym__block_close, - [116295] = 1, - ACTIONS(9164), 1, - sym__block_close, - [116299] = 1, - ACTIONS(9166), 1, - sym__block_close, - [116303] = 1, - ACTIONS(9168), 1, - sym__block_close, - [116307] = 1, - ACTIONS(9170), 1, - sym__block_close, - [116311] = 1, - ACTIONS(9172), 1, - aux_sym_pandoc_math_token1, - [116315] = 1, - ACTIONS(9174), 1, - aux_sym_pandoc_display_math_token1, - [116319] = 1, - ACTIONS(7498), 1, - aux_sym_inline_note_token1, - [116323] = 1, - ACTIONS(9176), 1, - sym__whitespace, - [116327] = 1, - ACTIONS(9178), 1, - anon_sym_RPAREN, - [116331] = 1, - ACTIONS(9180), 1, - anon_sym_RPAREN, - [116335] = 1, - ACTIONS(9086), 1, - sym__strong_emphasis_close_underscore, - [116339] = 1, - ACTIONS(9182), 1, - sym_shortcode_name, - [116343] = 1, - ACTIONS(9184), 1, - sym__block_close, - [116347] = 1, - ACTIONS(9186), 1, - aux_sym_inline_note_token1, - [116351] = 1, - ACTIONS(9188), 1, - aux_sym_citation_token2, - [116355] = 1, - ACTIONS(9190), 1, - anon_sym_DOLLAR, - [116359] = 1, - ACTIONS(9192), 1, - sym__emphasis_close_star, - [116363] = 1, - ACTIONS(9194), 1, - anon_sym_EQ, - [116367] = 1, - ACTIONS(9192), 1, - sym__emphasis_close_underscore, - [116371] = 1, - ACTIONS(9196), 1, - anon_sym_RPAREN, - [116375] = 1, - ACTIONS(9198), 1, - aux_sym_citation_token1, - [116379] = 1, - ACTIONS(9200), 1, - aux_sym_citation_token1, - [116383] = 1, - ACTIONS(9202), 1, - anon_sym_RPAREN, - [116387] = 1, - ACTIONS(7663), 1, - sym__pipe_table_delimiter, - [116391] = 1, - ACTIONS(9204), 1, - sym__strikeout_close, - [116395] = 1, - ACTIONS(9206), 1, - anon_sym_RPAREN, - [116399] = 1, - ACTIONS(9208), 1, - sym__close_block, - [116403] = 1, - ACTIONS(9210), 1, - sym__block_close, - [116407] = 1, - ACTIONS(9212), 1, + [117931] = 1, + ACTIONS(9022), 1, sym__close_block, - [116411] = 1, - ACTIONS(9214), 1, - anon_sym_DOLLAR_DOLLAR, - [116415] = 1, - ACTIONS(9216), 1, - aux_sym_pandoc_math_token1, - [116419] = 1, - ACTIONS(9218), 1, - aux_sym_pandoc_display_math_token1, - [116423] = 1, - ACTIONS(9220), 1, - aux_sym_citation_token2, - [116427] = 1, - ACTIONS(9222), 1, - aux_sym_citation_token2, - [116431] = 1, - ACTIONS(9224), 1, - aux_sym_citation_token2, - [116435] = 1, - ACTIONS(9226), 1, - aux_sym_citation_token2, - [116439] = 1, - ACTIONS(9228), 1, - sym__subscript_close, - [116443] = 1, - ACTIONS(9230), 1, - anon_sym_RBRACE, - [116447] = 1, - ACTIONS(9232), 1, - sym__double_quote_span_close, - [116451] = 1, - ACTIONS(9234), 1, - sym__block_close, - [116455] = 1, - ACTIONS(7259), 1, - anon_sym_RBRACE, - [116459] = 1, - ACTIONS(9236), 1, - aux_sym_citation_token2, - [116463] = 1, - ACTIONS(9238), 1, - aux_sym_citation_token2, - [116467] = 1, - ACTIONS(9006), 1, - sym__blank_line_start, - [116471] = 1, - ACTIONS(9240), 1, - sym__superscript_close, - [116475] = 1, - ACTIONS(9242), 1, - aux_sym_insert_token1, - [116479] = 1, - ACTIONS(9244), 1, - aux_sym_citation_token1, - [116483] = 1, - ACTIONS(9246), 1, - aux_sym_citation_token1, - [116487] = 1, - ACTIONS(9248), 1, - sym__block_close, - [116491] = 1, - ACTIONS(9250), 1, - sym__block_close, - [116495] = 1, - ACTIONS(9252), 1, - anon_sym_EQ, - [116499] = 1, - ACTIONS(9254), 1, - aux_sym_insert_token1, - [116503] = 1, - ACTIONS(9256), 1, - aux_sym_citation_token2, - [116507] = 1, - ACTIONS(9258), 1, - aux_sym_insert_token1, - [116511] = 1, - ACTIONS(9260), 1, - aux_sym_insert_token1, - [116515] = 1, - ACTIONS(9262), 1, - sym__block_close, - [116519] = 1, - ACTIONS(9264), 1, - aux_sym_pandoc_math_token1, - [116523] = 1, - ACTIONS(9266), 1, - aux_sym_pandoc_display_math_token1, - [116527] = 1, - ACTIONS(9268), 1, - sym__whitespace, - [116531] = 1, - ACTIONS(9270), 1, - aux_sym_insert_token1, - [116535] = 1, - ACTIONS(9272), 1, - aux_sym_citation_token2, - [116539] = 1, - ACTIONS(9274), 1, - aux_sym_insert_token1, - [116543] = 1, - ACTIONS(9276), 1, - aux_sym_insert_token1, - [116547] = 1, - ACTIONS(9278), 1, - aux_sym_insert_token1, - [116551] = 1, - ACTIONS(9280), 1, - anon_sym_RPAREN, - [116555] = 1, - ACTIONS(9282), 1, - sym__single_quote_span_close, - [116559] = 1, - ACTIONS(9284), 1, - sym__double_quote_span_close, - [116563] = 1, - ACTIONS(9286), 1, - anon_sym_RBRACE, - [116567] = 1, - ACTIONS(9288), 1, - anon_sym_RBRACE, - [116571] = 1, - ACTIONS(9290), 1, - sym__strikeout_close, - [116575] = 1, - ACTIONS(9292), 1, - sym__subscript_close, - [116579] = 1, - ACTIONS(9294), 1, - sym__superscript_close, - [116583] = 1, - ACTIONS(9296), 1, - aux_sym_citation_token1, - [116587] = 1, - ACTIONS(9298), 1, - aux_sym_citation_token1, - [116591] = 1, - ACTIONS(9300), 1, - aux_sym_insert_token1, - [116595] = 1, - ACTIONS(9302), 1, - sym__single_quote_span_close, - [116599] = 1, - ACTIONS(9304), 1, - aux_sym_insert_token1, - [116603] = 1, - ACTIONS(9306), 1, + [117935] = 1, + ACTIONS(9036), 1, sym__strong_emphasis_close_star, - [116607] = 1, - ACTIONS(9308), 1, - aux_sym_insert_token1, - [116611] = 1, - ACTIONS(9310), 1, - sym__single_quote_span_close, - [116615] = 1, - ACTIONS(9312), 1, - aux_sym_insert_token1, - [116619] = 1, - ACTIONS(9314), 1, - sym__whitespace, - [116623] = 1, - ACTIONS(9316), 1, - aux_sym_pandoc_math_token1, - [116627] = 1, - ACTIONS(9318), 1, - aux_sym_pandoc_display_math_token1, - [116631] = 1, - ACTIONS(9320), 1, + [117939] = 1, + ACTIONS(9038), 1, sym__single_quote_span_close, - [116635] = 1, - ACTIONS(9322), 1, - sym__double_quote_span_close, - [116639] = 1, - ACTIONS(9306), 1, - sym__strong_emphasis_close_underscore, - [116643] = 1, - ACTIONS(9324), 1, - sym__emphasis_close_star, - [116647] = 1, - ACTIONS(9324), 1, - sym__emphasis_close_underscore, - [116651] = 1, - ACTIONS(9326), 1, - sym__double_quote_span_close, - [116655] = 1, - ACTIONS(9328), 1, - anon_sym_RBRACE, - [116659] = 1, - ACTIONS(9330), 1, - anon_sym_RBRACE, - [116663] = 1, - ACTIONS(9332), 1, - anon_sym_RBRACE, - [116667] = 1, - ACTIONS(9334), 1, - anon_sym_DOLLAR, - [116671] = 1, - ACTIONS(9336), 1, - anon_sym_DOLLAR_DOLLAR, - [116675] = 1, - ACTIONS(9338), 1, - anon_sym_RBRACE, - [116679] = 1, - ACTIONS(9340), 1, - anon_sym_RBRACE, - [116683] = 1, - ACTIONS(9342), 1, - anon_sym_RBRACE, - [116687] = 1, - ACTIONS(9344), 1, - aux_sym_citation_token1, - [116691] = 1, - ACTIONS(9346), 1, - aux_sym_citation_token1, - [116695] = 1, - ACTIONS(9348), 1, - anon_sym_RBRACE, - [116699] = 1, - ACTIONS(9350), 1, - anon_sym_RBRACE, - [116703] = 1, - ACTIONS(9352), 1, - sym__strikeout_close, - [116707] = 1, - ACTIONS(9354), 1, - sym__subscript_close, - [116711] = 1, - ACTIONS(9356), 1, - sym__superscript_close, - [116715] = 1, - ACTIONS(9358), 1, - anon_sym_RBRACE, - [116719] = 1, - ACTIONS(9360), 1, - sym__strong_emphasis_close_star, - [116723] = 1, - ACTIONS(9360), 1, + [117943] = 1, + ACTIONS(9040), 1, + ts_builtin_sym_end, + [117947] = 1, + ACTIONS(9036), 1, sym__strong_emphasis_close_underscore, - [116727] = 1, - ACTIONS(9362), 1, + [117951] = 1, + ACTIONS(9042), 1, aux_sym_pandoc_math_token1, - [116731] = 1, - ACTIONS(9364), 1, - aux_sym_pandoc_display_math_token1, - [116735] = 1, - ACTIONS(9366), 1, - sym__emphasis_close_star, - [116739] = 1, - ACTIONS(9366), 1, - sym__emphasis_close_underscore, - [116743] = 1, - ACTIONS(9368), 1, - aux_sym_insert_token1, - [116747] = 1, - ACTIONS(9370), 1, - aux_sym_insert_token1, - [116751] = 1, - ACTIONS(9372), 1, - aux_sym_insert_token1, - [116755] = 1, - ACTIONS(9374), 1, - aux_sym_insert_token1, - [116759] = 1, - ACTIONS(7409), 1, - aux_sym_inline_note_token1, - [116763] = 1, - ACTIONS(9376), 1, - sym__strikeout_close, - [116767] = 1, - ACTIONS(9378), 1, - sym__subscript_close, - [116771] = 1, - ACTIONS(9380), 1, - sym__superscript_close, - [116775] = 1, - ACTIONS(9382), 1, - aux_sym_inline_note_token1, - [116779] = 1, - ACTIONS(9384), 1, - anon_sym_RBRACE, - [116783] = 1, - ACTIONS(9386), 1, - sym__strong_emphasis_close_star, - [116787] = 1, - ACTIONS(9388), 1, - aux_sym_inline_note_token1, - [116791] = 1, - ACTIONS(9390), 1, + [117955] = 1, + ACTIONS(9044), 1, aux_sym_citation_token1, - [116795] = 1, - ACTIONS(9392), 1, + [117959] = 1, + ACTIONS(9046), 1, aux_sym_citation_token1, - [116799] = 1, - ACTIONS(9394), 1, - sym__whitespace, - [116803] = 1, - ACTIONS(9386), 1, - sym__strong_emphasis_close_underscore, - [116807] = 1, - ACTIONS(9396), 1, + [117963] = 1, + ACTIONS(9048), 1, sym__whitespace, - [116811] = 1, - ACTIONS(9398), 1, - sym__emphasis_close_star, - [116815] = 1, - ACTIONS(9400), 1, + [117967] = 1, + ACTIONS(7425), 1, sym__whitespace, - [116819] = 1, - ACTIONS(9402), 1, - anon_sym_DOLLAR, - [116823] = 1, - ACTIONS(9404), 1, - anon_sym_DOLLAR_DOLLAR, - [116827] = 1, - ACTIONS(9406), 1, - anon_sym_RBRACE, - [116831] = 1, - ACTIONS(9408), 1, + [117971] = 1, + ACTIONS(9050), 1, + aux_sym_citation_token2, + [117975] = 1, + ACTIONS(9052), 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, + sym__block_close, + [117995] = 1, + ACTIONS(9062), 1, aux_sym_pandoc_math_token1, - [116835] = 1, - ACTIONS(9410), 1, + [117999] = 1, + ACTIONS(9064), 1, aux_sym_pandoc_display_math_token1, - [116839] = 1, - ACTIONS(9412), 1, + [118003] = 1, + ACTIONS(9066), 1, anon_sym_RBRACE, - [116843] = 1, - ACTIONS(9414), 1, + [118007] = 1, + ACTIONS(9068), 1, sym__block_close, - [116847] = 1, - ACTIONS(9398), 1, - sym__emphasis_close_underscore, - [116851] = 1, - ACTIONS(9416), 1, - aux_sym_insert_token1, - [116855] = 1, - ACTIONS(9418), 1, - sym__close_block, - [116859] = 1, - ACTIONS(9420), 1, - anon_sym_RPAREN, - [116863] = 1, - ACTIONS(7809), 1, - anon_sym_RBRACE, - [116867] = 1, - ACTIONS(6230), 1, - sym__line_ending, - [116871] = 1, - ACTIONS(9422), 1, - anon_sym_RPAREN, - [116875] = 1, - ACTIONS(9424), 1, - anon_sym_DOLLAR, - [116879] = 1, - ACTIONS(9426), 1, - anon_sym_DOLLAR_DOLLAR, - [116883] = 1, - ACTIONS(9428), 1, + [118011] = 1, + ACTIONS(9070), 1, anon_sym_RBRACE, - [116887] = 1, - ACTIONS(9430), 1, + [118015] = 1, + ACTIONS(9072), 1, anon_sym_RBRACE, - [116891] = 1, - ACTIONS(9432), 1, + [118019] = 1, + ACTIONS(9074), 1, + aux_sym_insert_token1, + [118023] = 1, + ACTIONS(9076), 1, + aux_sym_insert_token1, + [118027] = 1, + ACTIONS(9078), 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, - [116895] = 1, - ACTIONS(9434), 1, + [118055] = 1, + ACTIONS(9092), 1, + aux_sym_insert_token1, + [118059] = 1, + ACTIONS(9094), 1, aux_sym_citation_token1, - [116899] = 1, - ACTIONS(9436), 1, + [118063] = 1, + ACTIONS(9096), 1, aux_sym_citation_token1, - [116903] = 1, - ACTIONS(9438), 1, + [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, + anon_sym_RBRACE, + [118083] = 1, + ACTIONS(9106), 1, + aux_sym_insert_token1, + [118087] = 1, + ACTIONS(9108), 1, sym__block_close, - [116907] = 1, - ACTIONS(9440), 1, + [118091] = 1, + ACTIONS(9110), 1, sym__block_close, - [116911] = 1, - ACTIONS(9442), 1, + [118095] = 1, + ACTIONS(9112), 1, sym__block_close, - [116915] = 1, - ACTIONS(9444), 1, + [118099] = 1, + ACTIONS(9114), 1, + aux_sym_pandoc_math_token1, + [118103] = 1, + ACTIONS(9116), 1, + aux_sym_pandoc_display_math_token1, + [118107] = 1, + ACTIONS(9118), 1, sym__block_close, - [116919] = 1, - ACTIONS(9446), 1, + [118111] = 1, + ACTIONS(9120), 1, sym__block_close, - [116923] = 1, - ACTIONS(9448), 1, - aux_sym_citation_token2, - [116927] = 1, - ACTIONS(9450), 1, + [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, - [116931] = 1, - ACTIONS(9452), 1, + [118131] = 1, + ACTIONS(9130), 1, + aux_sym_insert_token1, + [118135] = 1, + ACTIONS(9132), 1, anon_sym_RBRACE, - [116935] = 1, - ACTIONS(9454), 1, - aux_sym_pandoc_math_token1, - [116939] = 1, - ACTIONS(9456), 1, - aux_sym_pandoc_display_math_token1, - [116943] = 1, - ACTIONS(9458), 1, + [118139] = 1, + ACTIONS(9134), 1, sym__whitespace, - [116947] = 1, - ACTIONS(9460), 1, - aux_sym_inline_note_token1, - [116951] = 1, - ACTIONS(9462), 1, - anon_sym_RBRACE, - [116955] = 1, - ACTIONS(9464), 1, - aux_sym_citation_token2, - [116959] = 1, - ACTIONS(9466), 1, - aux_sym_citation_token2, - [116963] = 1, - ACTIONS(9468), 1, - aux_sym_commonmark_specifier_token1, - [116967] = 1, - ACTIONS(9470), 1, - aux_sym_insert_token1, - [116971] = 1, - ACTIONS(9472), 1, - aux_sym_insert_token1, - [116975] = 1, - ACTIONS(9474), 1, - aux_sym_insert_token1, - [116979] = 1, - ACTIONS(9476), 1, - aux_sym_insert_token1, - [116983] = 1, - ACTIONS(7329), 1, - aux_sym_inline_note_token1, - [116987] = 1, - ACTIONS(9478), 1, + [118143] = 1, + ACTIONS(9136), 1, aux_sym_insert_token1, - [116991] = 1, - ACTIONS(6210), 1, - sym__line_ending, - [116995] = 1, - ACTIONS(9480), 1, + [118147] = 1, + ACTIONS(9138), 1, + sym__whitespace, + [118151] = 1, + ACTIONS(9140), 1, aux_sym_insert_token1, - [116999] = 1, - ACTIONS(9482), 1, + [118155] = 1, + ACTIONS(9142), 1, + sym__close_block, + [118159] = 1, + ACTIONS(9144), 1, + sym__strikeout_close, + [118163] = 1, + ACTIONS(9146), 1, aux_sym_citation_token1, - [117003] = 1, - ACTIONS(9484), 1, + [118167] = 1, + ACTIONS(9148), 1, aux_sym_citation_token1, - [117007] = 1, - ACTIONS(9486), 1, - aux_sym_insert_token1, - [117011] = 1, - ACTIONS(9488), 1, + [118171] = 1, + ACTIONS(9150), 1, + sym__block_close, + [118175] = 1, + ACTIONS(9152), 1, + sym__subscript_close, + [118179] = 1, + ACTIONS(7431), 1, sym__whitespace, - [117015] = 1, - ACTIONS(9490), 1, - aux_sym_insert_token1, - [117019] = 1, - ACTIONS(9492), 1, - aux_sym_insert_token1, - [117023] = 1, - ACTIONS(9494), 1, - aux_sym_insert_token1, - [117027] = 1, - ACTIONS(9496), 1, - aux_sym_insert_token1, - [117031] = 1, - ACTIONS(7490), 1, - aux_sym_inline_note_token1, - [117035] = 1, - ACTIONS(9498), 1, + [118183] = 1, + ACTIONS(9154), 1, + sym__superscript_close, + [118187] = 1, + ACTIONS(9156), 1, + sym__block_close, + [118191] = 1, + ACTIONS(9158), 1, aux_sym_insert_token1, - [117039] = 1, - ACTIONS(9500), 1, + [118195] = 1, + ACTIONS(9160), 1, + sym__strong_emphasis_close_star, + [118199] = 1, + ACTIONS(9160), 1, + sym__strong_emphasis_close_underscore, + [118203] = 1, + ACTIONS(9162), 1, aux_sym_pandoc_math_token1, - [117043] = 1, - ACTIONS(9502), 1, + [118207] = 1, + ACTIONS(9164), 1, aux_sym_pandoc_display_math_token1, - [117047] = 1, - ACTIONS(9504), 1, - sym__close_block, - [117051] = 1, - ACTIONS(9506), 1, - aux_sym_insert_token1, - [117055] = 1, - ACTIONS(9508), 1, + [118211] = 1, + ACTIONS(9166), 1, + sym__emphasis_close_star, + [118215] = 1, + ACTIONS(9168), 1, aux_sym_insert_token1, - [117059] = 1, - ACTIONS(9510), 1, + [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, - [117063] = 1, - ACTIONS(9512), 1, + [118247] = 1, + ACTIONS(9178), 1, sym__double_quote_span_close, - [117067] = 1, - ACTIONS(9514), 1, + [118251] = 1, + ACTIONS(9180), 1, anon_sym_RBRACE, - [117071] = 1, - ACTIONS(9516), 1, + [118255] = 1, + ACTIONS(9182), 1, anon_sym_RBRACE, - [117075] = 1, - ACTIONS(9518), 1, + [118259] = 1, + ACTIONS(9184), 1, sym__strikeout_close, - [117079] = 1, - ACTIONS(9520), 1, + [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, + aux_sym_citation_token2, + [118283] = 1, + ACTIONS(9196), 1, + aux_sym_citation_token2, + [118287] = 1, + ACTIONS(9198), 1, + anon_sym_RBRACE, + [118291] = 1, + ACTIONS(9200), 1, + sym_shortcode_name, + [118295] = 1, + ACTIONS(7406), 1, + sym__whitespace, + [118299] = 1, + ACTIONS(9202), 1, + anon_sym_RBRACE, + [118303] = 1, + ACTIONS(9204), 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, sym__subscript_close, - [117083] = 1, - ACTIONS(9522), 1, - sym__superscript_close, - [117087] = 1, - ACTIONS(9524), 1, + [118319] = 1, + ACTIONS(9212), 1, + anon_sym_RBRACE, + [118323] = 1, + ACTIONS(9214), 1, aux_sym_insert_token1, - [117091] = 1, - ACTIONS(9526), 1, + [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, + 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, - [117095] = 1, - ACTIONS(9526), 1, + [118359] = 1, + ACTIONS(9228), 1, sym__strong_emphasis_close_underscore, - [117099] = 1, - ACTIONS(9528), 1, + [118363] = 1, + ACTIONS(9230), 1, sym__emphasis_close_star, - [117103] = 1, - ACTIONS(9530), 1, + [118367] = 1, + ACTIONS(9232), 1, + anon_sym_RBRACE, + [118371] = 1, + ACTIONS(9234), 1, aux_sym_citation_token1, - [117107] = 1, - ACTIONS(9532), 1, + [118375] = 1, + ACTIONS(9236), 1, aux_sym_citation_token1, - [117111] = 1, - ACTIONS(9528), 1, + [118379] = 1, + ACTIONS(9230), 1, sym__emphasis_close_underscore, - [117115] = 1, - ACTIONS(9534), 1, - sym__block_close, - [117119] = 1, - ACTIONS(9536), 1, - sym__block_close, - [117123] = 1, - ACTIONS(9538), 1, - sym__block_close, - [117127] = 1, - ACTIONS(9540), 1, - sym__block_close, - [117131] = 1, - ACTIONS(9542), 1, + [118383] = 1, + ACTIONS(9238), 1, sym__block_close, - [117135] = 1, - ACTIONS(9544), 1, + [118387] = 1, + ACTIONS(9240), 1, + aux_sym_insert_token1, + [118391] = 1, + ACTIONS(9242), 1, sym__block_close, - [117139] = 1, - ACTIONS(7549), 1, - aux_sym__commonmark_specifier_start_with_class_token2, - [117143] = 1, - ACTIONS(9546), 1, + [118395] = 1, + ACTIONS(9244), 1, + aux_sym_insert_token1, + [118399] = 1, + ACTIONS(9246), 1, + aux_sym_inline_note_token1, + [118403] = 1, + ACTIONS(9248), 1, + aux_sym_insert_token1, + [118407] = 1, + ACTIONS(9250), 1, + aux_sym_citation_token2, + [118411] = 1, + ACTIONS(9252), 1, aux_sym_pandoc_math_token1, - [117147] = 1, - ACTIONS(9548), 1, + [118415] = 1, + ACTIONS(9254), 1, aux_sym_pandoc_display_math_token1, - [117151] = 1, - ACTIONS(9550), 1, - anon_sym_RBRACE, - [117155] = 1, - ACTIONS(9552), 1, + [118419] = 1, + ACTIONS(9256), 1, aux_sym_insert_token1, - [117159] = 1, - ACTIONS(9554), 1, + [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, - [117163] = 1, - ACTIONS(9556), 1, + [118435] = 1, + ACTIONS(9262), 1, + aux_sym_inline_note_token1, + [118439] = 1, + ACTIONS(6248), 1, + sym__line_ending, + [118443] = 1, + ACTIONS(9264), 1, + anon_sym_RBRACE, + [118447] = 1, + ACTIONS(9266), 1, + sym__emphasis_close_star, + [118451] = 1, + ACTIONS(9266), 1, + sym__emphasis_close_underscore, + [118455] = 1, + ACTIONS(9268), 1, anon_sym_DOLLAR, - [117167] = 1, - ACTIONS(9558), 1, + [118459] = 1, + ACTIONS(9270), 1, anon_sym_DOLLAR_DOLLAR, - [117171] = 1, - ACTIONS(9560), 1, + [118463] = 1, + ACTIONS(9272), 1, anon_sym_RBRACE, - [117175] = 1, - ACTIONS(9562), 1, + [118467] = 1, + ACTIONS(9274), 1, anon_sym_RBRACE, - [117179] = 1, - ACTIONS(9564), 1, + [118471] = 1, + ACTIONS(8130), 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, + sym__single_quote_span_close, + [118487] = 1, + ACTIONS(9282), 1, + sym__double_quote_span_close, + [118491] = 1, + ACTIONS(9284), 1, anon_sym_RBRACE, - [117183] = 1, - ACTIONS(9566), 1, + [118495] = 1, + ACTIONS(9286), 1, anon_sym_RBRACE, - [117187] = 1, - ACTIONS(9568), 1, + [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, + 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, + anon_sym_RBRACE, + [118559] = 1, + ACTIONS(9316), 1, aux_sym_insert_token1, - [117191] = 1, - ACTIONS(9570), 1, + [118563] = 1, + ACTIONS(9318), 1, aux_sym_insert_token1, - [117195] = 1, - ACTIONS(9572), 1, + [118567] = 1, + ACTIONS(9320), 1, aux_sym_insert_token1, - [117199] = 1, - ACTIONS(9574), 1, + [118571] = 1, + ACTIONS(9322), 1, aux_sym_insert_token1, - [117203] = 1, - ACTIONS(7419), 1, + [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, - [117207] = 1, - ACTIONS(6234), 1, - sym__line_ending, - [117211] = 1, - ACTIONS(9576), 1, - aux_sym_insert_token1, - [117215] = 1, - ACTIONS(9578), 1, - aux_sym_insert_token1, - [117219] = 1, - ACTIONS(9580), 1, + [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, + 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, + anon_sym_DOLLAR_DOLLAR, + [118631] = 1, + ACTIONS(9346), 1, + anon_sym_RBRACE, + [118635] = 1, + ACTIONS(9348), 1, + sym__strikeout_close, + [118639] = 1, + ACTIONS(9350), 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, + sym__superscript_close, + [118655] = 1, + ACTIONS(9358), 1, + aux_sym_citation_token2, + [118659] = 1, + ACTIONS(9360), 1, anon_sym_RPAREN, - [117223] = 1, - ACTIONS(9582), 1, + [118663] = 1, + ACTIONS(9362), 1, aux_sym_insert_token1, - [117227] = 1, - ACTIONS(9584), 1, - anon_sym_RPAREN, - [117231] = 1, - ACTIONS(9586), 1, + [118667] = 1, + ACTIONS(9364), 1, + sym__block_close, + [118671] = 1, + ACTIONS(9366), 1, aux_sym_inline_note_token1, - [117235] = 1, - ACTIONS(9588), 1, - aux_sym_insert_token1, - [117239] = 1, - ACTIONS(9590), 1, - sym__single_quote_span_close, - [117243] = 1, - ACTIONS(9592), 1, - anon_sym_RPAREN, - [117247] = 1, - ACTIONS(9594), 1, - aux_sym_pandoc_math_token1, - [117251] = 1, - ACTIONS(9596), 1, - sym__double_quote_span_close, - [117255] = 1, - ACTIONS(9598), 1, + [118675] = 1, + ACTIONS(9368), 1, + sym__strong_emphasis_close_star, + [118679] = 1, + ACTIONS(9370), 1, anon_sym_RPAREN, - [117259] = 1, - ACTIONS(7274), 1, - sym__pipe_table_delimiter, - [117263] = 1, - ACTIONS(9600), 1, + [118683] = 1, + ACTIONS(9372), 1, + sym__block_close, + [118687] = 1, + ACTIONS(9374), 1, anon_sym_RBRACE, - [117267] = 1, - ACTIONS(9602), 1, - anon_sym_RPAREN, - [117271] = 1, - ACTIONS(9604), 1, - aux_sym_citation_token1, - [117275] = 1, - ACTIONS(9606), 1, + [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, - [117279] = 1, - ACTIONS(9608), 1, + [118703] = 1, + ACTIONS(9380), 1, + sym__emphasis_close_star, + [118707] = 1, + ACTIONS(9382), 1, + anon_sym_RPAREN, + [118711] = 1, + ACTIONS(9384), 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, + 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, + aux_sym_insert_token1, + [118751] = 1, + ACTIONS(9402), 1, + sym__whitespace, + [118755] = 1, + ACTIONS(9404), 1, sym_shortcode_name, - [117283] = 1, - ACTIONS(9610), 1, + [118759] = 1, + ACTIONS(9406), 1, sym_shortcode_name, - [117287] = 1, - ACTIONS(9612), 1, + [118763] = 1, + ACTIONS(9408), 1, sym__close_block, - [117291] = 1, - ACTIONS(9614), 1, + [118767] = 1, + ACTIONS(9410), 1, sym__close_block, - [117295] = 1, - ACTIONS(9616), 1, + [118771] = 1, + ACTIONS(9412), 1, sym__close_block, - [117299] = 1, - ACTIONS(9618), 1, + [118775] = 1, + ACTIONS(9414), 1, sym__close_block, - [117303] = 1, - ACTIONS(9620), 1, + [118779] = 1, + ACTIONS(9416), 1, sym__close_block, - [117307] = 1, - ACTIONS(9622), 1, + [118783] = 1, + ACTIONS(9418), 1, sym__close_block, - [117311] = 1, - ACTIONS(9624), 1, + [118787] = 1, + ACTIONS(9420), 1, sym__close_block, - [117315] = 1, - ACTIONS(9626), 1, + [118791] = 1, + ACTIONS(9422), 1, sym__close_block, - [117319] = 1, - ACTIONS(9628), 1, + [118795] = 1, + ACTIONS(9424), 1, sym__close_block, - [117323] = 1, - ACTIONS(9630), 1, + [118799] = 1, + ACTIONS(9426), 1, + sym__block_close, + [118803] = 1, + ACTIONS(9428), 1, aux_sym_insert_token1, - [117327] = 1, - ACTIONS(9632), 1, - aux_sym_pandoc_display_math_token1, - [117331] = 1, - ACTIONS(9634), 1, - anon_sym_RBRACE, - [117335] = 1, - ACTIONS(9636), 1, + [118807] = 1, + ACTIONS(9430), 1, + sym__block_close, + [118811] = 1, + ACTIONS(9432), 1, sym_shortcode_name, - [117339] = 1, - ACTIONS(9638), 1, + [118815] = 1, + ACTIONS(9434), 1, sym_shortcode_name, - [117343] = 1, - ACTIONS(9640), 1, + [118819] = 1, + ACTIONS(9436), 1, sym__close_block, - [117347] = 1, - ACTIONS(9642), 1, + [118823] = 1, + ACTIONS(9438), 1, sym__close_block, - [117351] = 1, - ACTIONS(9644), 1, + [118827] = 1, + ACTIONS(9440), 1, sym__close_block, - [117355] = 1, - ACTIONS(9646), 1, + [118831] = 1, + ACTIONS(9442), 1, sym__close_block, - [117359] = 1, - ACTIONS(9648), 1, + [118835] = 1, + ACTIONS(9444), 1, sym__close_block, - [117363] = 1, - ACTIONS(9650), 1, + [118839] = 1, + ACTIONS(9446), 1, sym__close_block, - [117367] = 1, - ACTIONS(9652), 1, + [118843] = 1, + ACTIONS(9448), 1, sym__close_block, - [117371] = 1, - ACTIONS(9654), 1, + [118847] = 1, + ACTIONS(9450), 1, sym__close_block, - [117375] = 1, - ACTIONS(9656), 1, + [118851] = 1, + ACTIONS(9452), 1, sym__close_block, - [117379] = 1, - ACTIONS(9658), 1, + [118855] = 1, + ACTIONS(9454), 1, sym_shortcode_name, - [117383] = 1, - ACTIONS(9660), 1, + [118859] = 1, + ACTIONS(9456), 1, sym_shortcode_name, - [117387] = 1, - ACTIONS(9662), 1, + [118863] = 1, + ACTIONS(9458), 1, sym_shortcode_name, - [117391] = 1, - ACTIONS(9664), 1, + [118867] = 1, + ACTIONS(9460), 1, sym_shortcode_name, - [117395] = 1, - ACTIONS(9666), 1, + [118871] = 1, + ACTIONS(9462), 1, sym_shortcode_name, - [117399] = 1, - ACTIONS(9668), 1, + [118875] = 1, + ACTIONS(9464), 1, sym_shortcode_name, - [117403] = 1, - ACTIONS(9670), 1, + [118879] = 1, + ACTIONS(9466), 1, sym_shortcode_name, - [117407] = 1, - ACTIONS(9672), 1, + [118883] = 1, + ACTIONS(9468), 1, sym_shortcode_name, - [117411] = 1, - ACTIONS(9674), 1, + [118887] = 1, + ACTIONS(9470), 1, sym_shortcode_name, - [117415] = 1, - ACTIONS(9676), 1, + [118891] = 1, + ACTIONS(9472), 1, sym_shortcode_name, - [117419] = 1, - ACTIONS(9678), 1, + [118895] = 1, + ACTIONS(9474), 1, sym_shortcode_name, - [117423] = 1, - ACTIONS(9680), 1, + [118899] = 1, + ACTIONS(9476), 1, sym_shortcode_name, - [117427] = 1, - ACTIONS(9682), 1, + [118903] = 1, + ACTIONS(9478), 1, sym_shortcode_name, - [117431] = 1, - ACTIONS(9684), 1, + [118907] = 1, + ACTIONS(9480), 1, sym_shortcode_name, - [117435] = 1, - ACTIONS(9686), 1, + [118911] = 1, + ACTIONS(9482), 1, sym_shortcode_name, - [117439] = 1, - ACTIONS(9688), 1, + [118915] = 1, + ACTIONS(9484), 1, sym_shortcode_name, - [117443] = 1, - ACTIONS(9690), 1, + [118919] = 1, + ACTIONS(9486), 1, sym_shortcode_name, - [117447] = 1, - ACTIONS(9692), 1, + [118923] = 1, + ACTIONS(9488), 1, sym_shortcode_name, - [117451] = 1, - ACTIONS(9694), 1, + [118927] = 1, + ACTIONS(9490), 1, sym_shortcode_name, - [117455] = 1, - ACTIONS(9696), 1, + [118931] = 1, + ACTIONS(9492), 1, sym_shortcode_name, - [117459] = 1, - ACTIONS(9698), 1, + [118935] = 1, + ACTIONS(9494), 1, sym_shortcode_name, - [117463] = 1, - ACTIONS(9700), 1, + [118939] = 1, + ACTIONS(9496), 1, sym_shortcode_name, - [117467] = 1, - ACTIONS(9702), 1, + [118943] = 1, + ACTIONS(9498), 1, sym_shortcode_name, - [117471] = 1, - ACTIONS(9704), 1, + [118947] = 1, + ACTIONS(9500), 1, sym_shortcode_name, - [117475] = 1, - ACTIONS(9706), 1, + [118951] = 1, + ACTIONS(9502), 1, sym_shortcode_name, - [117479] = 1, - ACTIONS(9708), 1, + [118955] = 1, + ACTIONS(9504), 1, sym_shortcode_name, - [117483] = 1, - ACTIONS(9710), 1, + [118959] = 1, + ACTIONS(9506), 1, sym_shortcode_name, - [117487] = 1, - ACTIONS(9712), 1, + [118963] = 1, + ACTIONS(9508), 1, sym_shortcode_name, - [117491] = 1, - ACTIONS(9714), 1, + [118967] = 1, + ACTIONS(9510), 1, sym_shortcode_name, - [117495] = 1, - ACTIONS(9716), 1, + [118971] = 1, + ACTIONS(9512), 1, sym_shortcode_name, - [117499] = 1, - ACTIONS(9718), 1, + [118975] = 1, + ACTIONS(9514), 1, sym__whitespace, - [117503] = 1, - ACTIONS(9720), 1, + [118979] = 1, + ACTIONS(9516), 1, sym__whitespace, - [117507] = 1, - ACTIONS(9722), 1, + [118983] = 1, + ACTIONS(9518), 1, sym__whitespace, - [117511] = 1, - ACTIONS(9724), 1, + [118987] = 1, + ACTIONS(9520), 1, sym__whitespace, - [117515] = 1, - ACTIONS(9726), 1, + [118991] = 1, + ACTIONS(9522), 1, sym__whitespace, - [117519] = 1, - ACTIONS(9728), 1, + [118995] = 1, + ACTIONS(9524), 1, sym__whitespace, - [117523] = 1, - ACTIONS(9730), 1, + [118999] = 1, + ACTIONS(9526), 1, sym__whitespace, - [117527] = 1, - ACTIONS(9732), 1, + [119003] = 1, + ACTIONS(9528), 1, sym__whitespace, - [117531] = 1, - ACTIONS(9734), 1, + [119007] = 1, + ACTIONS(9530), 1, sym__whitespace, - [117535] = 1, - ACTIONS(9736), 1, + [119011] = 1, + ACTIONS(9532), 1, sym__whitespace, - [117539] = 1, - ACTIONS(9738), 1, + [119015] = 1, + ACTIONS(9534), 1, sym__whitespace, - [117543] = 1, - ACTIONS(9740), 1, + [119019] = 1, + ACTIONS(9536), 1, sym__whitespace, - [117547] = 1, - ACTIONS(9742), 1, + [119023] = 1, + ACTIONS(9538), 1, sym__whitespace, - [117551] = 1, - ACTIONS(9744), 1, + [119027] = 1, + ACTIONS(9540), 1, sym__whitespace, - [117555] = 1, - ACTIONS(9746), 1, + [119031] = 1, + ACTIONS(9542), 1, sym__whitespace, - [117559] = 1, - ACTIONS(9748), 1, + [119035] = 1, + ACTIONS(9544), 1, sym__whitespace, - [117563] = 1, - ACTIONS(9750), 1, + [119039] = 1, + ACTIONS(9546), 1, sym__whitespace, - [117567] = 1, - ACTIONS(9752), 1, - anon_sym_RBRACE, - [117571] = 1, - ACTIONS(9754), 1, + [119043] = 1, + ACTIONS(9548), 1, sym__whitespace, - [117575] = 1, - ACTIONS(9756), 1, + [119047] = 1, + ACTIONS(9550), 1, sym__whitespace, - [117579] = 1, - ACTIONS(9758), 1, + [119051] = 1, + ACTIONS(9552), 1, sym__whitespace, - [117583] = 1, - ACTIONS(9760), 1, + [119055] = 1, + ACTIONS(9554), 1, sym__whitespace, - [117587] = 1, - ACTIONS(9762), 1, + [119059] = 1, + ACTIONS(9556), 1, sym__whitespace, - [117591] = 1, - ACTIONS(9764), 1, + [119063] = 1, + ACTIONS(9558), 1, sym__whitespace, - [117595] = 1, - ACTIONS(9766), 1, + [119067] = 1, + ACTIONS(9560), 1, sym__whitespace, - [117599] = 1, - ACTIONS(9768), 1, + [119071] = 1, + ACTIONS(9562), 1, sym__whitespace, - [117603] = 1, - ACTIONS(9770), 1, + [119075] = 1, + ACTIONS(9564), 1, sym__whitespace, - [117607] = 1, - ACTIONS(9772), 1, + [119079] = 1, + ACTIONS(9566), 1, sym__whitespace, - [117611] = 1, - ACTIONS(9774), 1, + [119083] = 1, + ACTIONS(9568), 1, sym__whitespace, - [117615] = 1, - ACTIONS(9776), 1, + [119087] = 1, + ACTIONS(9570), 1, sym__whitespace, - [117619] = 1, - ACTIONS(9778), 1, + [119091] = 1, + ACTIONS(9572), 1, sym__whitespace, - [117623] = 1, - ACTIONS(9780), 1, + [119095] = 1, + ACTIONS(9574), 1, sym__whitespace, - [117627] = 1, - ACTIONS(9782), 1, + [119099] = 1, + ACTIONS(9576), 1, sym__whitespace, - [117631] = 1, - ACTIONS(9784), 1, + [119103] = 1, + ACTIONS(9578), 1, sym__whitespace, - [117635] = 1, - ACTIONS(9786), 1, - aux_sym_insert_token1, + [119107] = 1, + ACTIONS(9580), 1, + sym__whitespace, + [119111] = 1, + ACTIONS(9582), 1, + sym__block_close, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(647)] = 0, - [SMALL_STATE(648)] = 135, - [SMALL_STATE(649)] = 270, - [SMALL_STATE(650)] = 405, - [SMALL_STATE(651)] = 540, - [SMALL_STATE(652)] = 675, - [SMALL_STATE(653)] = 810, - [SMALL_STATE(654)] = 945, - [SMALL_STATE(655)] = 1080, - [SMALL_STATE(656)] = 1215, - [SMALL_STATE(657)] = 1350, - [SMALL_STATE(658)] = 1485, - [SMALL_STATE(659)] = 1620, - [SMALL_STATE(660)] = 1755, - [SMALL_STATE(661)] = 1890, - [SMALL_STATE(662)] = 2025, - [SMALL_STATE(663)] = 2160, - [SMALL_STATE(664)] = 2295, - [SMALL_STATE(665)] = 2430, - [SMALL_STATE(666)] = 2563, - [SMALL_STATE(667)] = 2698, - [SMALL_STATE(668)] = 2833, - [SMALL_STATE(669)] = 2968, - [SMALL_STATE(670)] = 3103, - [SMALL_STATE(671)] = 3238, - [SMALL_STATE(672)] = 3373, - [SMALL_STATE(673)] = 3508, - [SMALL_STATE(674)] = 3643, - [SMALL_STATE(675)] = 3778, - [SMALL_STATE(676)] = 3913, - [SMALL_STATE(677)] = 4048, - [SMALL_STATE(678)] = 4183, - [SMALL_STATE(679)] = 4318, - [SMALL_STATE(680)] = 4453, - [SMALL_STATE(681)] = 4588, - [SMALL_STATE(682)] = 4723, - [SMALL_STATE(683)] = 4858, - [SMALL_STATE(684)] = 4993, - [SMALL_STATE(685)] = 5128, - [SMALL_STATE(686)] = 5263, - [SMALL_STATE(687)] = 5398, - [SMALL_STATE(688)] = 5533, - [SMALL_STATE(689)] = 5668, - [SMALL_STATE(690)] = 5803, - [SMALL_STATE(691)] = 5938, - [SMALL_STATE(692)] = 6073, - [SMALL_STATE(693)] = 6208, - [SMALL_STATE(694)] = 6343, - [SMALL_STATE(695)] = 6478, - [SMALL_STATE(696)] = 6613, - [SMALL_STATE(697)] = 6748, - [SMALL_STATE(698)] = 6883, - [SMALL_STATE(699)] = 7018, - [SMALL_STATE(700)] = 7153, - [SMALL_STATE(701)] = 7288, - [SMALL_STATE(702)] = 7423, - [SMALL_STATE(703)] = 7558, - [SMALL_STATE(704)] = 7693, - [SMALL_STATE(705)] = 7828, - [SMALL_STATE(706)] = 7963, - [SMALL_STATE(707)] = 8098, - [SMALL_STATE(708)] = 8233, - [SMALL_STATE(709)] = 8368, - [SMALL_STATE(710)] = 8503, - [SMALL_STATE(711)] = 8638, - [SMALL_STATE(712)] = 8773, - [SMALL_STATE(713)] = 8908, - [SMALL_STATE(714)] = 9043, - [SMALL_STATE(715)] = 9178, - [SMALL_STATE(716)] = 9313, - [SMALL_STATE(717)] = 9448, - [SMALL_STATE(718)] = 9583, - [SMALL_STATE(719)] = 9718, - [SMALL_STATE(720)] = 9853, - [SMALL_STATE(721)] = 9988, - [SMALL_STATE(722)] = 10123, - [SMALL_STATE(723)] = 10258, - [SMALL_STATE(724)] = 10393, - [SMALL_STATE(725)] = 10528, - [SMALL_STATE(726)] = 10663, - [SMALL_STATE(727)] = 10798, - [SMALL_STATE(728)] = 10933, - [SMALL_STATE(729)] = 11068, - [SMALL_STATE(730)] = 11203, - [SMALL_STATE(731)] = 11338, - [SMALL_STATE(732)] = 11473, - [SMALL_STATE(733)] = 11608, - [SMALL_STATE(734)] = 11743, - [SMALL_STATE(735)] = 11878, - [SMALL_STATE(736)] = 12013, - [SMALL_STATE(737)] = 12148, - [SMALL_STATE(738)] = 12283, - [SMALL_STATE(739)] = 12418, - [SMALL_STATE(740)] = 12553, - [SMALL_STATE(741)] = 12688, - [SMALL_STATE(742)] = 12823, - [SMALL_STATE(743)] = 12956, - [SMALL_STATE(744)] = 13091, - [SMALL_STATE(745)] = 13226, - [SMALL_STATE(746)] = 13361, - [SMALL_STATE(747)] = 13496, - [SMALL_STATE(748)] = 13631, - [SMALL_STATE(749)] = 13763, - [SMALL_STATE(750)] = 13895, - [SMALL_STATE(751)] = 14027, - [SMALL_STATE(752)] = 14159, - [SMALL_STATE(753)] = 14291, - [SMALL_STATE(754)] = 14423, - [SMALL_STATE(755)] = 14555, - [SMALL_STATE(756)] = 14687, - [SMALL_STATE(757)] = 14819, - [SMALL_STATE(758)] = 14951, - [SMALL_STATE(759)] = 15083, - [SMALL_STATE(760)] = 15215, - [SMALL_STATE(761)] = 15347, - [SMALL_STATE(762)] = 15479, - [SMALL_STATE(763)] = 15611, - [SMALL_STATE(764)] = 15743, - [SMALL_STATE(765)] = 15875, - [SMALL_STATE(766)] = 16007, - [SMALL_STATE(767)] = 16139, - [SMALL_STATE(768)] = 16271, - [SMALL_STATE(769)] = 16403, - [SMALL_STATE(770)] = 16535, - [SMALL_STATE(771)] = 16667, - [SMALL_STATE(772)] = 16799, - [SMALL_STATE(773)] = 16931, - [SMALL_STATE(774)] = 17063, - [SMALL_STATE(775)] = 17195, - [SMALL_STATE(776)] = 17327, - [SMALL_STATE(777)] = 17459, - [SMALL_STATE(778)] = 17591, - [SMALL_STATE(779)] = 17723, - [SMALL_STATE(780)] = 17855, - [SMALL_STATE(781)] = 17987, - [SMALL_STATE(782)] = 18119, - [SMALL_STATE(783)] = 18251, - [SMALL_STATE(784)] = 18383, - [SMALL_STATE(785)] = 18515, - [SMALL_STATE(786)] = 18647, - [SMALL_STATE(787)] = 18779, - [SMALL_STATE(788)] = 18911, - [SMALL_STATE(789)] = 19043, - [SMALL_STATE(790)] = 19175, - [SMALL_STATE(791)] = 19307, - [SMALL_STATE(792)] = 19439, - [SMALL_STATE(793)] = 19571, - [SMALL_STATE(794)] = 19703, - [SMALL_STATE(795)] = 19835, - [SMALL_STATE(796)] = 19967, - [SMALL_STATE(797)] = 20099, - [SMALL_STATE(798)] = 20231, - [SMALL_STATE(799)] = 20363, - [SMALL_STATE(800)] = 20495, - [SMALL_STATE(801)] = 20627, - [SMALL_STATE(802)] = 20759, - [SMALL_STATE(803)] = 20891, - [SMALL_STATE(804)] = 21023, - [SMALL_STATE(805)] = 21155, - [SMALL_STATE(806)] = 21287, - [SMALL_STATE(807)] = 21419, - [SMALL_STATE(808)] = 21551, - [SMALL_STATE(809)] = 21683, - [SMALL_STATE(810)] = 21815, - [SMALL_STATE(811)] = 21947, - [SMALL_STATE(812)] = 22079, - [SMALL_STATE(813)] = 22211, - [SMALL_STATE(814)] = 22343, - [SMALL_STATE(815)] = 22475, - [SMALL_STATE(816)] = 22607, - [SMALL_STATE(817)] = 22739, - [SMALL_STATE(818)] = 22871, - [SMALL_STATE(819)] = 23003, - [SMALL_STATE(820)] = 23135, - [SMALL_STATE(821)] = 23267, - [SMALL_STATE(822)] = 23399, - [SMALL_STATE(823)] = 23531, - [SMALL_STATE(824)] = 23663, - [SMALL_STATE(825)] = 23795, - [SMALL_STATE(826)] = 23927, - [SMALL_STATE(827)] = 24059, - [SMALL_STATE(828)] = 24191, - [SMALL_STATE(829)] = 24323, - [SMALL_STATE(830)] = 24455, - [SMALL_STATE(831)] = 24587, - [SMALL_STATE(832)] = 24719, - [SMALL_STATE(833)] = 24851, - [SMALL_STATE(834)] = 24983, - [SMALL_STATE(835)] = 25115, - [SMALL_STATE(836)] = 25247, - [SMALL_STATE(837)] = 25379, - [SMALL_STATE(838)] = 25511, - [SMALL_STATE(839)] = 25643, - [SMALL_STATE(840)] = 25775, - [SMALL_STATE(841)] = 25907, - [SMALL_STATE(842)] = 26039, - [SMALL_STATE(843)] = 26171, - [SMALL_STATE(844)] = 26303, - [SMALL_STATE(845)] = 26435, - [SMALL_STATE(846)] = 26567, - [SMALL_STATE(847)] = 26699, - [SMALL_STATE(848)] = 26831, - [SMALL_STATE(849)] = 26963, - [SMALL_STATE(850)] = 27095, - [SMALL_STATE(851)] = 27227, - [SMALL_STATE(852)] = 27359, - [SMALL_STATE(853)] = 27491, - [SMALL_STATE(854)] = 27623, - [SMALL_STATE(855)] = 27755, - [SMALL_STATE(856)] = 27887, - [SMALL_STATE(857)] = 28019, - [SMALL_STATE(858)] = 28151, - [SMALL_STATE(859)] = 28283, - [SMALL_STATE(860)] = 28415, - [SMALL_STATE(861)] = 28547, - [SMALL_STATE(862)] = 28679, - [SMALL_STATE(863)] = 28811, - [SMALL_STATE(864)] = 28943, - [SMALL_STATE(865)] = 29075, - [SMALL_STATE(866)] = 29207, - [SMALL_STATE(867)] = 29339, - [SMALL_STATE(868)] = 29471, - [SMALL_STATE(869)] = 29603, - [SMALL_STATE(870)] = 29735, - [SMALL_STATE(871)] = 29867, - [SMALL_STATE(872)] = 29999, - [SMALL_STATE(873)] = 30131, - [SMALL_STATE(874)] = 30263, - [SMALL_STATE(875)] = 30395, - [SMALL_STATE(876)] = 30527, - [SMALL_STATE(877)] = 30659, - [SMALL_STATE(878)] = 30791, - [SMALL_STATE(879)] = 30923, - [SMALL_STATE(880)] = 31055, - [SMALL_STATE(881)] = 31187, - [SMALL_STATE(882)] = 31316, - [SMALL_STATE(883)] = 31445, - [SMALL_STATE(884)] = 31574, - [SMALL_STATE(885)] = 31703, - [SMALL_STATE(886)] = 31832, - [SMALL_STATE(887)] = 31961, - [SMALL_STATE(888)] = 32090, - [SMALL_STATE(889)] = 32219, - [SMALL_STATE(890)] = 32348, - [SMALL_STATE(891)] = 32477, - [SMALL_STATE(892)] = 32606, - [SMALL_STATE(893)] = 32735, - [SMALL_STATE(894)] = 32864, - [SMALL_STATE(895)] = 32990, - [SMALL_STATE(896)] = 33116, - [SMALL_STATE(897)] = 33242, - [SMALL_STATE(898)] = 33368, - [SMALL_STATE(899)] = 33494, - [SMALL_STATE(900)] = 33620, - [SMALL_STATE(901)] = 33746, - [SMALL_STATE(902)] = 33872, - [SMALL_STATE(903)] = 33998, - [SMALL_STATE(904)] = 34124, - [SMALL_STATE(905)] = 34250, - [SMALL_STATE(906)] = 34376, - [SMALL_STATE(907)] = 34502, - [SMALL_STATE(908)] = 34552, - [SMALL_STATE(909)] = 34603, - [SMALL_STATE(910)] = 34654, - [SMALL_STATE(911)] = 34705, - [SMALL_STATE(912)] = 34756, - [SMALL_STATE(913)] = 34807, - [SMALL_STATE(914)] = 34856, - [SMALL_STATE(915)] = 34905, - [SMALL_STATE(916)] = 34956, - [SMALL_STATE(917)] = 35007, - [SMALL_STATE(918)] = 35058, - [SMALL_STATE(919)] = 35109, - [SMALL_STATE(920)] = 35160, - [SMALL_STATE(921)] = 35211, - [SMALL_STATE(922)] = 35262, - [SMALL_STATE(923)] = 35313, - [SMALL_STATE(924)] = 35364, - [SMALL_STATE(925)] = 35415, - [SMALL_STATE(926)] = 35466, - [SMALL_STATE(927)] = 35517, - [SMALL_STATE(928)] = 35568, - [SMALL_STATE(929)] = 35619, - [SMALL_STATE(930)] = 35670, - [SMALL_STATE(931)] = 35721, - [SMALL_STATE(932)] = 35772, - [SMALL_STATE(933)] = 35823, - [SMALL_STATE(934)] = 35870, - [SMALL_STATE(935)] = 35921, - [SMALL_STATE(936)] = 35972, - [SMALL_STATE(937)] = 36022, - [SMALL_STATE(938)] = 36068, - [SMALL_STATE(939)] = 36114, - [SMALL_STATE(940)] = 36164, - [SMALL_STATE(941)] = 36210, - [SMALL_STATE(942)] = 36256, - [SMALL_STATE(943)] = 36302, - [SMALL_STATE(944)] = 36348, - [SMALL_STATE(945)] = 36394, - [SMALL_STATE(946)] = 36440, - [SMALL_STATE(947)] = 36486, - [SMALL_STATE(948)] = 36532, - [SMALL_STATE(949)] = 36578, - [SMALL_STATE(950)] = 36624, - [SMALL_STATE(951)] = 36670, - [SMALL_STATE(952)] = 36716, - [SMALL_STATE(953)] = 36762, - [SMALL_STATE(954)] = 36808, - [SMALL_STATE(955)] = 36854, - [SMALL_STATE(956)] = 36900, - [SMALL_STATE(957)] = 36946, - [SMALL_STATE(958)] = 36992, - [SMALL_STATE(959)] = 37038, - [SMALL_STATE(960)] = 37086, - [SMALL_STATE(961)] = 37132, - [SMALL_STATE(962)] = 37178, - [SMALL_STATE(963)] = 37224, - [SMALL_STATE(964)] = 37270, - [SMALL_STATE(965)] = 37316, - [SMALL_STATE(966)] = 37362, - [SMALL_STATE(967)] = 37412, - [SMALL_STATE(968)] = 37462, - [SMALL_STATE(969)] = 37512, - [SMALL_STATE(970)] = 37562, - [SMALL_STATE(971)] = 37608, - [SMALL_STATE(972)] = 37654, - [SMALL_STATE(973)] = 37704, - [SMALL_STATE(974)] = 37754, - [SMALL_STATE(975)] = 37804, - [SMALL_STATE(976)] = 37854, - [SMALL_STATE(977)] = 37900, - [SMALL_STATE(978)] = 37950, - [SMALL_STATE(979)] = 37996, - [SMALL_STATE(980)] = 38044, - [SMALL_STATE(981)] = 38094, - [SMALL_STATE(982)] = 38140, - [SMALL_STATE(983)] = 38190, - [SMALL_STATE(984)] = 38236, - [SMALL_STATE(985)] = 38286, - [SMALL_STATE(986)] = 38336, - [SMALL_STATE(987)] = 38382, - [SMALL_STATE(988)] = 38428, - [SMALL_STATE(989)] = 38474, - [SMALL_STATE(990)] = 38520, - [SMALL_STATE(991)] = 38570, - [SMALL_STATE(992)] = 38616, - [SMALL_STATE(993)] = 38666, - [SMALL_STATE(994)] = 38712, - [SMALL_STATE(995)] = 38758, - [SMALL_STATE(996)] = 38804, - [SMALL_STATE(997)] = 38854, - [SMALL_STATE(998)] = 38904, - [SMALL_STATE(999)] = 38950, - [SMALL_STATE(1000)] = 38996, - [SMALL_STATE(1001)] = 39046, - [SMALL_STATE(1002)] = 39092, - [SMALL_STATE(1003)] = 39142, - [SMALL_STATE(1004)] = 39188, - [SMALL_STATE(1005)] = 39234, - [SMALL_STATE(1006)] = 39280, - [SMALL_STATE(1007)] = 39326, - [SMALL_STATE(1008)] = 39372, - [SMALL_STATE(1009)] = 39418, - [SMALL_STATE(1010)] = 39468, - [SMALL_STATE(1011)] = 39518, - [SMALL_STATE(1012)] = 39568, - [SMALL_STATE(1013)] = 39618, - [SMALL_STATE(1014)] = 39668, - [SMALL_STATE(1015)] = 39714, - [SMALL_STATE(1016)] = 39764, - [SMALL_STATE(1017)] = 39810, - [SMALL_STATE(1018)] = 39860, - [SMALL_STATE(1019)] = 39910, - [SMALL_STATE(1020)] = 39960, - [SMALL_STATE(1021)] = 40010, - [SMALL_STATE(1022)] = 40056, - [SMALL_STATE(1023)] = 40106, - [SMALL_STATE(1024)] = 40152, - [SMALL_STATE(1025)] = 40202, - [SMALL_STATE(1026)] = 40248, - [SMALL_STATE(1027)] = 40298, - [SMALL_STATE(1028)] = 40348, - [SMALL_STATE(1029)] = 40398, - [SMALL_STATE(1030)] = 40448, - [SMALL_STATE(1031)] = 40498, - [SMALL_STATE(1032)] = 40548, - [SMALL_STATE(1033)] = 40598, - [SMALL_STATE(1034)] = 40648, - [SMALL_STATE(1035)] = 40694, - [SMALL_STATE(1036)] = 40740, - [SMALL_STATE(1037)] = 40786, - [SMALL_STATE(1038)] = 40836, - [SMALL_STATE(1039)] = 40882, - [SMALL_STATE(1040)] = 40928, - [SMALL_STATE(1041)] = 40978, - [SMALL_STATE(1042)] = 41028, - [SMALL_STATE(1043)] = 41078, - [SMALL_STATE(1044)] = 41124, - [SMALL_STATE(1045)] = 41174, - [SMALL_STATE(1046)] = 41224, - [SMALL_STATE(1047)] = 41274, - [SMALL_STATE(1048)] = 41324, - [SMALL_STATE(1049)] = 41374, - [SMALL_STATE(1050)] = 41420, - [SMALL_STATE(1051)] = 41466, - [SMALL_STATE(1052)] = 41512, - [SMALL_STATE(1053)] = 41557, - [SMALL_STATE(1054)] = 41602, - [SMALL_STATE(1055)] = 41647, - [SMALL_STATE(1056)] = 41696, - [SMALL_STATE(1057)] = 41745, - [SMALL_STATE(1058)] = 41794, - [SMALL_STATE(1059)] = 41843, - [SMALL_STATE(1060)] = 41892, - [SMALL_STATE(1061)] = 41941, - [SMALL_STATE(1062)] = 41986, - [SMALL_STATE(1063)] = 42035, - [SMALL_STATE(1064)] = 42084, - [SMALL_STATE(1065)] = 42133, - [SMALL_STATE(1066)] = 42182, - [SMALL_STATE(1067)] = 42231, - [SMALL_STATE(1068)] = 42280, - [SMALL_STATE(1069)] = 42329, - [SMALL_STATE(1070)] = 42378, - [SMALL_STATE(1071)] = 42427, - [SMALL_STATE(1072)] = 42476, - [SMALL_STATE(1073)] = 42525, - [SMALL_STATE(1074)] = 42574, - [SMALL_STATE(1075)] = 42623, - [SMALL_STATE(1076)] = 42668, - [SMALL_STATE(1077)] = 42717, - [SMALL_STATE(1078)] = 42766, - [SMALL_STATE(1079)] = 42815, - [SMALL_STATE(1080)] = 42864, - [SMALL_STATE(1081)] = 42913, - [SMALL_STATE(1082)] = 42962, - [SMALL_STATE(1083)] = 43009, - [SMALL_STATE(1084)] = 43054, - [SMALL_STATE(1085)] = 43103, - [SMALL_STATE(1086)] = 43152, - [SMALL_STATE(1087)] = 43201, - [SMALL_STATE(1088)] = 43250, - [SMALL_STATE(1089)] = 43299, - [SMALL_STATE(1090)] = 43348, - [SMALL_STATE(1091)] = 43393, - [SMALL_STATE(1092)] = 43442, - [SMALL_STATE(1093)] = 43491, - [SMALL_STATE(1094)] = 43540, - [SMALL_STATE(1095)] = 43589, - [SMALL_STATE(1096)] = 43638, - [SMALL_STATE(1097)] = 43687, - [SMALL_STATE(1098)] = 43736, - [SMALL_STATE(1099)] = 43785, - [SMALL_STATE(1100)] = 43834, - [SMALL_STATE(1101)] = 43883, - [SMALL_STATE(1102)] = 43932, - [SMALL_STATE(1103)] = 43981, - [SMALL_STATE(1104)] = 44030, - [SMALL_STATE(1105)] = 44079, - [SMALL_STATE(1106)] = 44128, - [SMALL_STATE(1107)] = 44177, - [SMALL_STATE(1108)] = 44226, - [SMALL_STATE(1109)] = 44275, - [SMALL_STATE(1110)] = 44324, - [SMALL_STATE(1111)] = 44371, - [SMALL_STATE(1112)] = 44416, - [SMALL_STATE(1113)] = 44465, - [SMALL_STATE(1114)] = 44514, - [SMALL_STATE(1115)] = 44563, - [SMALL_STATE(1116)] = 44612, - [SMALL_STATE(1117)] = 44661, - [SMALL_STATE(1118)] = 44710, - [SMALL_STATE(1119)] = 44759, - [SMALL_STATE(1120)] = 44808, - [SMALL_STATE(1121)] = 44857, - [SMALL_STATE(1122)] = 44906, - [SMALL_STATE(1123)] = 44955, - [SMALL_STATE(1124)] = 45004, - [SMALL_STATE(1125)] = 45053, - [SMALL_STATE(1126)] = 45102, - [SMALL_STATE(1127)] = 45151, - [SMALL_STATE(1128)] = 45200, - [SMALL_STATE(1129)] = 45249, - [SMALL_STATE(1130)] = 45298, - [SMALL_STATE(1131)] = 45347, - [SMALL_STATE(1132)] = 45396, - [SMALL_STATE(1133)] = 45445, - [SMALL_STATE(1134)] = 45494, - [SMALL_STATE(1135)] = 45543, - [SMALL_STATE(1136)] = 45592, - [SMALL_STATE(1137)] = 45641, - [SMALL_STATE(1138)] = 45688, - [SMALL_STATE(1139)] = 45737, - [SMALL_STATE(1140)] = 45786, - [SMALL_STATE(1141)] = 45835, - [SMALL_STATE(1142)] = 45884, - [SMALL_STATE(1143)] = 45933, - [SMALL_STATE(1144)] = 45982, - [SMALL_STATE(1145)] = 46031, - [SMALL_STATE(1146)] = 46080, - [SMALL_STATE(1147)] = 46129, - [SMALL_STATE(1148)] = 46178, - [SMALL_STATE(1149)] = 46227, - [SMALL_STATE(1150)] = 46276, - [SMALL_STATE(1151)] = 46325, - [SMALL_STATE(1152)] = 46374, - [SMALL_STATE(1153)] = 46423, - [SMALL_STATE(1154)] = 46472, - [SMALL_STATE(1155)] = 46521, - [SMALL_STATE(1156)] = 46570, - [SMALL_STATE(1157)] = 46619, - [SMALL_STATE(1158)] = 46668, - [SMALL_STATE(1159)] = 46717, - [SMALL_STATE(1160)] = 46766, - [SMALL_STATE(1161)] = 46815, - [SMALL_STATE(1162)] = 46864, - [SMALL_STATE(1163)] = 46913, - [SMALL_STATE(1164)] = 46962, - [SMALL_STATE(1165)] = 47009, - [SMALL_STATE(1166)] = 47058, - [SMALL_STATE(1167)] = 47107, - [SMALL_STATE(1168)] = 47156, - [SMALL_STATE(1169)] = 47205, - [SMALL_STATE(1170)] = 47254, - [SMALL_STATE(1171)] = 47303, - [SMALL_STATE(1172)] = 47352, - [SMALL_STATE(1173)] = 47401, - [SMALL_STATE(1174)] = 47450, - [SMALL_STATE(1175)] = 47499, - [SMALL_STATE(1176)] = 47548, - [SMALL_STATE(1177)] = 47597, - [SMALL_STATE(1178)] = 47646, - [SMALL_STATE(1179)] = 47695, - [SMALL_STATE(1180)] = 47744, - [SMALL_STATE(1181)] = 47793, - [SMALL_STATE(1182)] = 47842, - [SMALL_STATE(1183)] = 47891, - [SMALL_STATE(1184)] = 47940, - [SMALL_STATE(1185)] = 47989, - [SMALL_STATE(1186)] = 48038, - [SMALL_STATE(1187)] = 48087, - [SMALL_STATE(1188)] = 48136, - [SMALL_STATE(1189)] = 48185, - [SMALL_STATE(1190)] = 48234, - [SMALL_STATE(1191)] = 48283, - [SMALL_STATE(1192)] = 48330, - [SMALL_STATE(1193)] = 48379, - [SMALL_STATE(1194)] = 48428, - [SMALL_STATE(1195)] = 48477, - [SMALL_STATE(1196)] = 48526, - [SMALL_STATE(1197)] = 48575, - [SMALL_STATE(1198)] = 48624, - [SMALL_STATE(1199)] = 48673, - [SMALL_STATE(1200)] = 48722, - [SMALL_STATE(1201)] = 48771, - [SMALL_STATE(1202)] = 48820, - [SMALL_STATE(1203)] = 48869, - [SMALL_STATE(1204)] = 48918, - [SMALL_STATE(1205)] = 48967, - [SMALL_STATE(1206)] = 49016, - [SMALL_STATE(1207)] = 49065, - [SMALL_STATE(1208)] = 49114, - [SMALL_STATE(1209)] = 49163, - [SMALL_STATE(1210)] = 49212, - [SMALL_STATE(1211)] = 49261, - [SMALL_STATE(1212)] = 49310, - [SMALL_STATE(1213)] = 49359, - [SMALL_STATE(1214)] = 49408, - [SMALL_STATE(1215)] = 49457, - [SMALL_STATE(1216)] = 49506, - [SMALL_STATE(1217)] = 49555, - [SMALL_STATE(1218)] = 49604, - [SMALL_STATE(1219)] = 49651, - [SMALL_STATE(1220)] = 49700, - [SMALL_STATE(1221)] = 49749, - [SMALL_STATE(1222)] = 49798, - [SMALL_STATE(1223)] = 49847, - [SMALL_STATE(1224)] = 49896, - [SMALL_STATE(1225)] = 49945, - [SMALL_STATE(1226)] = 49994, - [SMALL_STATE(1227)] = 50043, - [SMALL_STATE(1228)] = 50092, - [SMALL_STATE(1229)] = 50141, - [SMALL_STATE(1230)] = 50190, - [SMALL_STATE(1231)] = 50239, - [SMALL_STATE(1232)] = 50288, - [SMALL_STATE(1233)] = 50337, - [SMALL_STATE(1234)] = 50386, - [SMALL_STATE(1235)] = 50435, - [SMALL_STATE(1236)] = 50484, - [SMALL_STATE(1237)] = 50533, - [SMALL_STATE(1238)] = 50582, - [SMALL_STATE(1239)] = 50631, - [SMALL_STATE(1240)] = 50676, - [SMALL_STATE(1241)] = 50725, - [SMALL_STATE(1242)] = 50774, - [SMALL_STATE(1243)] = 50823, - [SMALL_STATE(1244)] = 50872, - [SMALL_STATE(1245)] = 50921, - [SMALL_STATE(1246)] = 50970, - [SMALL_STATE(1247)] = 51017, - [SMALL_STATE(1248)] = 51062, - [SMALL_STATE(1249)] = 51107, - [SMALL_STATE(1250)] = 51152, - [SMALL_STATE(1251)] = 51197, - [SMALL_STATE(1252)] = 51242, - [SMALL_STATE(1253)] = 51291, - [SMALL_STATE(1254)] = 51336, - [SMALL_STATE(1255)] = 51381, - [SMALL_STATE(1256)] = 51430, - [SMALL_STATE(1257)] = 51475, - [SMALL_STATE(1258)] = 51520, - [SMALL_STATE(1259)] = 51565, - [SMALL_STATE(1260)] = 51610, - [SMALL_STATE(1261)] = 51655, - [SMALL_STATE(1262)] = 51700, - [SMALL_STATE(1263)] = 51745, - [SMALL_STATE(1264)] = 51790, - [SMALL_STATE(1265)] = 51835, - [SMALL_STATE(1266)] = 51880, - [SMALL_STATE(1267)] = 51925, - [SMALL_STATE(1268)] = 51970, - [SMALL_STATE(1269)] = 52015, - [SMALL_STATE(1270)] = 52060, - [SMALL_STATE(1271)] = 52105, - [SMALL_STATE(1272)] = 52150, - [SMALL_STATE(1273)] = 52195, - [SMALL_STATE(1274)] = 52240, - [SMALL_STATE(1275)] = 52285, - [SMALL_STATE(1276)] = 52330, - [SMALL_STATE(1277)] = 52375, - [SMALL_STATE(1278)] = 52420, - [SMALL_STATE(1279)] = 52465, - [SMALL_STATE(1280)] = 52510, - [SMALL_STATE(1281)] = 52555, - [SMALL_STATE(1282)] = 52600, - [SMALL_STATE(1283)] = 52645, - [SMALL_STATE(1284)] = 52690, - [SMALL_STATE(1285)] = 52735, - [SMALL_STATE(1286)] = 52780, - [SMALL_STATE(1287)] = 52825, - [SMALL_STATE(1288)] = 52870, - [SMALL_STATE(1289)] = 52915, - [SMALL_STATE(1290)] = 52960, - [SMALL_STATE(1291)] = 53005, - [SMALL_STATE(1292)] = 53050, - [SMALL_STATE(1293)] = 53095, - [SMALL_STATE(1294)] = 53140, - [SMALL_STATE(1295)] = 53185, - [SMALL_STATE(1296)] = 53230, - [SMALL_STATE(1297)] = 53279, - [SMALL_STATE(1298)] = 53324, - [SMALL_STATE(1299)] = 53369, - [SMALL_STATE(1300)] = 53414, - [SMALL_STATE(1301)] = 53459, - [SMALL_STATE(1302)] = 53504, - [SMALL_STATE(1303)] = 53549, - [SMALL_STATE(1304)] = 53594, - [SMALL_STATE(1305)] = 53639, - [SMALL_STATE(1306)] = 53684, - [SMALL_STATE(1307)] = 53729, - [SMALL_STATE(1308)] = 53774, - [SMALL_STATE(1309)] = 53819, - [SMALL_STATE(1310)] = 53864, - [SMALL_STATE(1311)] = 53911, - [SMALL_STATE(1312)] = 53956, - [SMALL_STATE(1313)] = 54001, - [SMALL_STATE(1314)] = 54046, - [SMALL_STATE(1315)] = 54091, - [SMALL_STATE(1316)] = 54136, - [SMALL_STATE(1317)] = 54181, - [SMALL_STATE(1318)] = 54228, - [SMALL_STATE(1319)] = 54273, - [SMALL_STATE(1320)] = 54318, - [SMALL_STATE(1321)] = 54363, - [SMALL_STATE(1322)] = 54408, - [SMALL_STATE(1323)] = 54453, - [SMALL_STATE(1324)] = 54498, - [SMALL_STATE(1325)] = 54543, - [SMALL_STATE(1326)] = 54588, - [SMALL_STATE(1327)] = 54633, - [SMALL_STATE(1328)] = 54678, - [SMALL_STATE(1329)] = 54723, - [SMALL_STATE(1330)] = 54768, - [SMALL_STATE(1331)] = 54813, - [SMALL_STATE(1332)] = 54858, - [SMALL_STATE(1333)] = 54903, - [SMALL_STATE(1334)] = 54948, - [SMALL_STATE(1335)] = 54993, - [SMALL_STATE(1336)] = 55038, - [SMALL_STATE(1337)] = 55083, - [SMALL_STATE(1338)] = 55128, - [SMALL_STATE(1339)] = 55173, - [SMALL_STATE(1340)] = 55218, - [SMALL_STATE(1341)] = 55263, - [SMALL_STATE(1342)] = 55308, - [SMALL_STATE(1343)] = 55353, - [SMALL_STATE(1344)] = 55398, - [SMALL_STATE(1345)] = 55443, - [SMALL_STATE(1346)] = 55488, - [SMALL_STATE(1347)] = 55533, - [SMALL_STATE(1348)] = 55582, - [SMALL_STATE(1349)] = 55631, - [SMALL_STATE(1350)] = 55680, - [SMALL_STATE(1351)] = 55729, - [SMALL_STATE(1352)] = 55776, - [SMALL_STATE(1353)] = 55825, - [SMALL_STATE(1354)] = 55874, - [SMALL_STATE(1355)] = 55923, - [SMALL_STATE(1356)] = 55972, - [SMALL_STATE(1357)] = 56019, - [SMALL_STATE(1358)] = 56064, - [SMALL_STATE(1359)] = 56113, - [SMALL_STATE(1360)] = 56162, - [SMALL_STATE(1361)] = 56211, - [SMALL_STATE(1362)] = 56260, - [SMALL_STATE(1363)] = 56305, - [SMALL_STATE(1364)] = 56350, - [SMALL_STATE(1365)] = 56395, - [SMALL_STATE(1366)] = 56440, - [SMALL_STATE(1367)] = 56485, - [SMALL_STATE(1368)] = 56530, - [SMALL_STATE(1369)] = 56575, - [SMALL_STATE(1370)] = 56620, - [SMALL_STATE(1371)] = 56665, - [SMALL_STATE(1372)] = 56714, - [SMALL_STATE(1373)] = 56763, - [SMALL_STATE(1374)] = 56812, - [SMALL_STATE(1375)] = 56861, - [SMALL_STATE(1376)] = 56910, - [SMALL_STATE(1377)] = 56959, - [SMALL_STATE(1378)] = 57008, - [SMALL_STATE(1379)] = 57057, - [SMALL_STATE(1380)] = 57106, - [SMALL_STATE(1381)] = 57155, - [SMALL_STATE(1382)] = 57204, - [SMALL_STATE(1383)] = 57253, - [SMALL_STATE(1384)] = 57302, - [SMALL_STATE(1385)] = 57347, - [SMALL_STATE(1386)] = 57392, - [SMALL_STATE(1387)] = 57437, - [SMALL_STATE(1388)] = 57482, - [SMALL_STATE(1389)] = 57527, - [SMALL_STATE(1390)] = 57572, - [SMALL_STATE(1391)] = 57617, - [SMALL_STATE(1392)] = 57662, - [SMALL_STATE(1393)] = 57707, - [SMALL_STATE(1394)] = 57752, - [SMALL_STATE(1395)] = 57797, - [SMALL_STATE(1396)] = 57846, - [SMALL_STATE(1397)] = 57895, - [SMALL_STATE(1398)] = 57944, - [SMALL_STATE(1399)] = 57993, - [SMALL_STATE(1400)] = 58042, - [SMALL_STATE(1401)] = 58091, - [SMALL_STATE(1402)] = 58140, - [SMALL_STATE(1403)] = 58189, - [SMALL_STATE(1404)] = 58238, - [SMALL_STATE(1405)] = 58287, - [SMALL_STATE(1406)] = 58336, - [SMALL_STATE(1407)] = 58385, - [SMALL_STATE(1408)] = 58434, - [SMALL_STATE(1409)] = 58483, - [SMALL_STATE(1410)] = 58532, - [SMALL_STATE(1411)] = 58581, - [SMALL_STATE(1412)] = 58630, - [SMALL_STATE(1413)] = 58679, - [SMALL_STATE(1414)] = 58728, - [SMALL_STATE(1415)] = 58773, - [SMALL_STATE(1416)] = 58818, - [SMALL_STATE(1417)] = 58863, - [SMALL_STATE(1418)] = 58912, - [SMALL_STATE(1419)] = 58961, - [SMALL_STATE(1420)] = 59010, - [SMALL_STATE(1421)] = 59059, - [SMALL_STATE(1422)] = 59108, - [SMALL_STATE(1423)] = 59157, - [SMALL_STATE(1424)] = 59206, - [SMALL_STATE(1425)] = 59255, - [SMALL_STATE(1426)] = 59304, - [SMALL_STATE(1427)] = 59353, - [SMALL_STATE(1428)] = 59402, - [SMALL_STATE(1429)] = 59451, - [SMALL_STATE(1430)] = 59500, - [SMALL_STATE(1431)] = 59549, - [SMALL_STATE(1432)] = 59598, - [SMALL_STATE(1433)] = 59647, - [SMALL_STATE(1434)] = 59696, - [SMALL_STATE(1435)] = 59745, - [SMALL_STATE(1436)] = 59794, - [SMALL_STATE(1437)] = 59843, - [SMALL_STATE(1438)] = 59892, - [SMALL_STATE(1439)] = 59941, - [SMALL_STATE(1440)] = 59990, - [SMALL_STATE(1441)] = 60039, - [SMALL_STATE(1442)] = 60088, - [SMALL_STATE(1443)] = 60135, - [SMALL_STATE(1444)] = 60184, - [SMALL_STATE(1445)] = 60233, - [SMALL_STATE(1446)] = 60282, - [SMALL_STATE(1447)] = 60331, - [SMALL_STATE(1448)] = 60380, - [SMALL_STATE(1449)] = 60429, - [SMALL_STATE(1450)] = 60478, - [SMALL_STATE(1451)] = 60527, - [SMALL_STATE(1452)] = 60576, - [SMALL_STATE(1453)] = 60625, - [SMALL_STATE(1454)] = 60674, - [SMALL_STATE(1455)] = 60723, - [SMALL_STATE(1456)] = 60772, - [SMALL_STATE(1457)] = 60821, - [SMALL_STATE(1458)] = 60870, - [SMALL_STATE(1459)] = 60919, - [SMALL_STATE(1460)] = 60968, - [SMALL_STATE(1461)] = 61017, - [SMALL_STATE(1462)] = 61066, - [SMALL_STATE(1463)] = 61115, - [SMALL_STATE(1464)] = 61164, - [SMALL_STATE(1465)] = 61213, - [SMALL_STATE(1466)] = 61262, - [SMALL_STATE(1467)] = 61311, - [SMALL_STATE(1468)] = 61360, - [SMALL_STATE(1469)] = 61409, - [SMALL_STATE(1470)] = 61458, - [SMALL_STATE(1471)] = 61507, - [SMALL_STATE(1472)] = 61556, - [SMALL_STATE(1473)] = 61605, - [SMALL_STATE(1474)] = 61654, - [SMALL_STATE(1475)] = 61703, - [SMALL_STATE(1476)] = 61752, - [SMALL_STATE(1477)] = 61801, - [SMALL_STATE(1478)] = 61850, - [SMALL_STATE(1479)] = 61899, - [SMALL_STATE(1480)] = 61948, - [SMALL_STATE(1481)] = 61997, - [SMALL_STATE(1482)] = 62046, - [SMALL_STATE(1483)] = 62095, - [SMALL_STATE(1484)] = 62144, - [SMALL_STATE(1485)] = 62193, - [SMALL_STATE(1486)] = 62242, - [SMALL_STATE(1487)] = 62291, - [SMALL_STATE(1488)] = 62336, - [SMALL_STATE(1489)] = 62385, - [SMALL_STATE(1490)] = 62434, - [SMALL_STATE(1491)] = 62483, - [SMALL_STATE(1492)] = 62532, - [SMALL_STATE(1493)] = 62581, - [SMALL_STATE(1494)] = 62626, - [SMALL_STATE(1495)] = 62670, - [SMALL_STATE(1496)] = 62714, - [SMALL_STATE(1497)] = 62758, - [SMALL_STATE(1498)] = 62802, - [SMALL_STATE(1499)] = 62846, - [SMALL_STATE(1500)] = 62890, - [SMALL_STATE(1501)] = 62934, - [SMALL_STATE(1502)] = 62978, - [SMALL_STATE(1503)] = 63022, - [SMALL_STATE(1504)] = 63066, - [SMALL_STATE(1505)] = 63110, - [SMALL_STATE(1506)] = 63154, - [SMALL_STATE(1507)] = 63198, - [SMALL_STATE(1508)] = 63242, - [SMALL_STATE(1509)] = 63286, - [SMALL_STATE(1510)] = 63330, - [SMALL_STATE(1511)] = 63374, - [SMALL_STATE(1512)] = 63418, - [SMALL_STATE(1513)] = 63462, - [SMALL_STATE(1514)] = 63506, - [SMALL_STATE(1515)] = 63550, - [SMALL_STATE(1516)] = 63594, - [SMALL_STATE(1517)] = 63638, - [SMALL_STATE(1518)] = 63682, - [SMALL_STATE(1519)] = 63726, - [SMALL_STATE(1520)] = 63770, - [SMALL_STATE(1521)] = 63814, - [SMALL_STATE(1522)] = 63858, - [SMALL_STATE(1523)] = 63902, - [SMALL_STATE(1524)] = 63946, - [SMALL_STATE(1525)] = 63990, - [SMALL_STATE(1526)] = 64034, - [SMALL_STATE(1527)] = 64078, - [SMALL_STATE(1528)] = 64122, - [SMALL_STATE(1529)] = 64166, - [SMALL_STATE(1530)] = 64210, - [SMALL_STATE(1531)] = 64254, - [SMALL_STATE(1532)] = 64298, - [SMALL_STATE(1533)] = 64342, - [SMALL_STATE(1534)] = 64386, - [SMALL_STATE(1535)] = 64430, - [SMALL_STATE(1536)] = 64474, - [SMALL_STATE(1537)] = 64518, - [SMALL_STATE(1538)] = 64562, - [SMALL_STATE(1539)] = 64606, - [SMALL_STATE(1540)] = 64650, - [SMALL_STATE(1541)] = 64694, - [SMALL_STATE(1542)] = 64738, - [SMALL_STATE(1543)] = 64782, - [SMALL_STATE(1544)] = 64826, - [SMALL_STATE(1545)] = 64870, - [SMALL_STATE(1546)] = 64914, - [SMALL_STATE(1547)] = 64958, - [SMALL_STATE(1548)] = 65002, - [SMALL_STATE(1549)] = 65046, - [SMALL_STATE(1550)] = 65090, - [SMALL_STATE(1551)] = 65134, - [SMALL_STATE(1552)] = 65178, - [SMALL_STATE(1553)] = 65222, - [SMALL_STATE(1554)] = 65266, - [SMALL_STATE(1555)] = 65310, - [SMALL_STATE(1556)] = 65354, - [SMALL_STATE(1557)] = 65398, - [SMALL_STATE(1558)] = 65442, - [SMALL_STATE(1559)] = 65486, - [SMALL_STATE(1560)] = 65530, - [SMALL_STATE(1561)] = 65574, - [SMALL_STATE(1562)] = 65618, - [SMALL_STATE(1563)] = 65662, - [SMALL_STATE(1564)] = 65706, - [SMALL_STATE(1565)] = 65750, - [SMALL_STATE(1566)] = 65794, - [SMALL_STATE(1567)] = 65838, - [SMALL_STATE(1568)] = 65882, - [SMALL_STATE(1569)] = 65926, - [SMALL_STATE(1570)] = 65970, - [SMALL_STATE(1571)] = 66014, - [SMALL_STATE(1572)] = 66058, - [SMALL_STATE(1573)] = 66102, - [SMALL_STATE(1574)] = 66146, - [SMALL_STATE(1575)] = 66190, - [SMALL_STATE(1576)] = 66234, - [SMALL_STATE(1577)] = 66278, - [SMALL_STATE(1578)] = 66322, - [SMALL_STATE(1579)] = 66366, - [SMALL_STATE(1580)] = 66410, - [SMALL_STATE(1581)] = 66454, - [SMALL_STATE(1582)] = 66498, - [SMALL_STATE(1583)] = 66542, - [SMALL_STATE(1584)] = 66586, - [SMALL_STATE(1585)] = 66630, - [SMALL_STATE(1586)] = 66674, - [SMALL_STATE(1587)] = 66718, - [SMALL_STATE(1588)] = 66762, - [SMALL_STATE(1589)] = 66806, - [SMALL_STATE(1590)] = 66850, - [SMALL_STATE(1591)] = 66894, - [SMALL_STATE(1592)] = 66938, - [SMALL_STATE(1593)] = 66982, - [SMALL_STATE(1594)] = 67026, - [SMALL_STATE(1595)] = 67070, - [SMALL_STATE(1596)] = 67114, - [SMALL_STATE(1597)] = 67158, - [SMALL_STATE(1598)] = 67202, - [SMALL_STATE(1599)] = 67246, - [SMALL_STATE(1600)] = 67290, - [SMALL_STATE(1601)] = 67334, - [SMALL_STATE(1602)] = 67378, - [SMALL_STATE(1603)] = 67422, - [SMALL_STATE(1604)] = 67466, - [SMALL_STATE(1605)] = 67510, - [SMALL_STATE(1606)] = 67554, - [SMALL_STATE(1607)] = 67598, - [SMALL_STATE(1608)] = 67642, - [SMALL_STATE(1609)] = 67686, - [SMALL_STATE(1610)] = 67730, - [SMALL_STATE(1611)] = 67774, - [SMALL_STATE(1612)] = 67818, - [SMALL_STATE(1613)] = 67862, - [SMALL_STATE(1614)] = 67906, - [SMALL_STATE(1615)] = 67950, - [SMALL_STATE(1616)] = 67994, - [SMALL_STATE(1617)] = 68038, - [SMALL_STATE(1618)] = 68082, - [SMALL_STATE(1619)] = 68126, - [SMALL_STATE(1620)] = 68170, - [SMALL_STATE(1621)] = 68214, - [SMALL_STATE(1622)] = 68258, - [SMALL_STATE(1623)] = 68302, - [SMALL_STATE(1624)] = 68346, - [SMALL_STATE(1625)] = 68390, - [SMALL_STATE(1626)] = 68434, - [SMALL_STATE(1627)] = 68478, - [SMALL_STATE(1628)] = 68522, - [SMALL_STATE(1629)] = 68566, - [SMALL_STATE(1630)] = 68610, - [SMALL_STATE(1631)] = 68654, - [SMALL_STATE(1632)] = 68698, - [SMALL_STATE(1633)] = 68742, - [SMALL_STATE(1634)] = 68786, - [SMALL_STATE(1635)] = 68830, - [SMALL_STATE(1636)] = 68874, - [SMALL_STATE(1637)] = 68918, - [SMALL_STATE(1638)] = 68962, - [SMALL_STATE(1639)] = 69006, - [SMALL_STATE(1640)] = 69050, - [SMALL_STATE(1641)] = 69094, - [SMALL_STATE(1642)] = 69138, - [SMALL_STATE(1643)] = 69182, - [SMALL_STATE(1644)] = 69226, - [SMALL_STATE(1645)] = 69270, - [SMALL_STATE(1646)] = 69314, - [SMALL_STATE(1647)] = 69358, - [SMALL_STATE(1648)] = 69402, - [SMALL_STATE(1649)] = 69446, - [SMALL_STATE(1650)] = 69490, - [SMALL_STATE(1651)] = 69534, - [SMALL_STATE(1652)] = 69578, - [SMALL_STATE(1653)] = 69622, - [SMALL_STATE(1654)] = 69666, - [SMALL_STATE(1655)] = 69710, - [SMALL_STATE(1656)] = 69754, - [SMALL_STATE(1657)] = 69798, - [SMALL_STATE(1658)] = 69842, - [SMALL_STATE(1659)] = 69886, - [SMALL_STATE(1660)] = 69930, - [SMALL_STATE(1661)] = 69974, - [SMALL_STATE(1662)] = 70018, - [SMALL_STATE(1663)] = 70062, - [SMALL_STATE(1664)] = 70106, - [SMALL_STATE(1665)] = 70150, - [SMALL_STATE(1666)] = 70194, - [SMALL_STATE(1667)] = 70238, - [SMALL_STATE(1668)] = 70282, - [SMALL_STATE(1669)] = 70326, - [SMALL_STATE(1670)] = 70370, - [SMALL_STATE(1671)] = 70414, - [SMALL_STATE(1672)] = 70458, - [SMALL_STATE(1673)] = 70502, - [SMALL_STATE(1674)] = 70546, - [SMALL_STATE(1675)] = 70590, - [SMALL_STATE(1676)] = 70634, - [SMALL_STATE(1677)] = 70678, - [SMALL_STATE(1678)] = 70722, - [SMALL_STATE(1679)] = 70766, - [SMALL_STATE(1680)] = 70810, - [SMALL_STATE(1681)] = 70854, - [SMALL_STATE(1682)] = 70898, - [SMALL_STATE(1683)] = 70942, - [SMALL_STATE(1684)] = 70986, - [SMALL_STATE(1685)] = 71030, - [SMALL_STATE(1686)] = 71074, - [SMALL_STATE(1687)] = 71118, - [SMALL_STATE(1688)] = 71162, - [SMALL_STATE(1689)] = 71206, - [SMALL_STATE(1690)] = 71250, - [SMALL_STATE(1691)] = 71294, - [SMALL_STATE(1692)] = 71338, - [SMALL_STATE(1693)] = 71382, - [SMALL_STATE(1694)] = 71426, - [SMALL_STATE(1695)] = 71470, - [SMALL_STATE(1696)] = 71514, - [SMALL_STATE(1697)] = 71558, - [SMALL_STATE(1698)] = 71602, - [SMALL_STATE(1699)] = 71646, - [SMALL_STATE(1700)] = 71690, - [SMALL_STATE(1701)] = 71734, - [SMALL_STATE(1702)] = 71778, - [SMALL_STATE(1703)] = 71822, - [SMALL_STATE(1704)] = 71866, - [SMALL_STATE(1705)] = 71910, - [SMALL_STATE(1706)] = 71954, - [SMALL_STATE(1707)] = 71998, - [SMALL_STATE(1708)] = 72042, - [SMALL_STATE(1709)] = 72086, - [SMALL_STATE(1710)] = 72130, - [SMALL_STATE(1711)] = 72174, - [SMALL_STATE(1712)] = 72218, - [SMALL_STATE(1713)] = 72262, - [SMALL_STATE(1714)] = 72306, - [SMALL_STATE(1715)] = 72350, - [SMALL_STATE(1716)] = 72394, - [SMALL_STATE(1717)] = 72438, - [SMALL_STATE(1718)] = 72482, - [SMALL_STATE(1719)] = 72526, - [SMALL_STATE(1720)] = 72570, - [SMALL_STATE(1721)] = 72614, - [SMALL_STATE(1722)] = 72658, - [SMALL_STATE(1723)] = 72702, - [SMALL_STATE(1724)] = 72746, - [SMALL_STATE(1725)] = 72790, - [SMALL_STATE(1726)] = 72834, - [SMALL_STATE(1727)] = 72878, - [SMALL_STATE(1728)] = 72922, - [SMALL_STATE(1729)] = 72966, - [SMALL_STATE(1730)] = 73010, - [SMALL_STATE(1731)] = 73054, - [SMALL_STATE(1732)] = 73098, - [SMALL_STATE(1733)] = 73142, - [SMALL_STATE(1734)] = 73186, - [SMALL_STATE(1735)] = 73230, - [SMALL_STATE(1736)] = 73274, - [SMALL_STATE(1737)] = 73318, - [SMALL_STATE(1738)] = 73362, - [SMALL_STATE(1739)] = 73406, - [SMALL_STATE(1740)] = 73450, - [SMALL_STATE(1741)] = 73494, - [SMALL_STATE(1742)] = 73538, - [SMALL_STATE(1743)] = 73582, - [SMALL_STATE(1744)] = 73626, - [SMALL_STATE(1745)] = 73670, - [SMALL_STATE(1746)] = 73714, - [SMALL_STATE(1747)] = 73758, - [SMALL_STATE(1748)] = 73802, - [SMALL_STATE(1749)] = 73846, - [SMALL_STATE(1750)] = 73890, - [SMALL_STATE(1751)] = 73934, - [SMALL_STATE(1752)] = 73978, - [SMALL_STATE(1753)] = 74022, - [SMALL_STATE(1754)] = 74066, - [SMALL_STATE(1755)] = 74110, - [SMALL_STATE(1756)] = 74154, - [SMALL_STATE(1757)] = 74198, - [SMALL_STATE(1758)] = 74242, - [SMALL_STATE(1759)] = 74286, - [SMALL_STATE(1760)] = 74330, - [SMALL_STATE(1761)] = 74374, - [SMALL_STATE(1762)] = 74418, - [SMALL_STATE(1763)] = 74462, - [SMALL_STATE(1764)] = 74506, - [SMALL_STATE(1765)] = 74550, - [SMALL_STATE(1766)] = 74594, - [SMALL_STATE(1767)] = 74638, - [SMALL_STATE(1768)] = 74682, - [SMALL_STATE(1769)] = 74726, - [SMALL_STATE(1770)] = 74770, - [SMALL_STATE(1771)] = 74814, - [SMALL_STATE(1772)] = 74858, - [SMALL_STATE(1773)] = 74902, - [SMALL_STATE(1774)] = 74946, - [SMALL_STATE(1775)] = 74990, - [SMALL_STATE(1776)] = 75034, - [SMALL_STATE(1777)] = 75078, - [SMALL_STATE(1778)] = 75122, - [SMALL_STATE(1779)] = 75166, - [SMALL_STATE(1780)] = 75210, - [SMALL_STATE(1781)] = 75254, - [SMALL_STATE(1782)] = 75298, - [SMALL_STATE(1783)] = 75342, - [SMALL_STATE(1784)] = 75386, - [SMALL_STATE(1785)] = 75430, - [SMALL_STATE(1786)] = 75474, - [SMALL_STATE(1787)] = 75518, - [SMALL_STATE(1788)] = 75562, - [SMALL_STATE(1789)] = 75610, - [SMALL_STATE(1790)] = 75658, - [SMALL_STATE(1791)] = 75706, - [SMALL_STATE(1792)] = 75754, - [SMALL_STATE(1793)] = 75802, - [SMALL_STATE(1794)] = 75850, - [SMALL_STATE(1795)] = 75894, - [SMALL_STATE(1796)] = 75938, - [SMALL_STATE(1797)] = 75986, - [SMALL_STATE(1798)] = 76034, - [SMALL_STATE(1799)] = 76082, - [SMALL_STATE(1800)] = 76130, - [SMALL_STATE(1801)] = 76178, - [SMALL_STATE(1802)] = 76226, - [SMALL_STATE(1803)] = 76274, - [SMALL_STATE(1804)] = 76322, - [SMALL_STATE(1805)] = 76370, - [SMALL_STATE(1806)] = 76418, - [SMALL_STATE(1807)] = 76466, - [SMALL_STATE(1808)] = 76514, - [SMALL_STATE(1809)] = 76562, - [SMALL_STATE(1810)] = 76606, - [SMALL_STATE(1811)] = 76650, - [SMALL_STATE(1812)] = 76694, - [SMALL_STATE(1813)] = 76738, - [SMALL_STATE(1814)] = 76786, - [SMALL_STATE(1815)] = 76834, - [SMALL_STATE(1816)] = 76882, - [SMALL_STATE(1817)] = 76930, - [SMALL_STATE(1818)] = 76978, - [SMALL_STATE(1819)] = 77026, - [SMALL_STATE(1820)] = 77070, - [SMALL_STATE(1821)] = 77114, - [SMALL_STATE(1822)] = 77158, - [SMALL_STATE(1823)] = 77202, - [SMALL_STATE(1824)] = 77246, - [SMALL_STATE(1825)] = 77290, - [SMALL_STATE(1826)] = 77334, - [SMALL_STATE(1827)] = 77378, - [SMALL_STATE(1828)] = 77422, - [SMALL_STATE(1829)] = 77466, - [SMALL_STATE(1830)] = 77510, - [SMALL_STATE(1831)] = 77554, - [SMALL_STATE(1832)] = 77598, - [SMALL_STATE(1833)] = 77642, - [SMALL_STATE(1834)] = 77686, - [SMALL_STATE(1835)] = 77730, - [SMALL_STATE(1836)] = 77774, - [SMALL_STATE(1837)] = 77818, - [SMALL_STATE(1838)] = 77862, - [SMALL_STATE(1839)] = 77906, - [SMALL_STATE(1840)] = 77950, - [SMALL_STATE(1841)] = 77994, - [SMALL_STATE(1842)] = 78038, - [SMALL_STATE(1843)] = 78082, - [SMALL_STATE(1844)] = 78126, - [SMALL_STATE(1845)] = 78170, - [SMALL_STATE(1846)] = 78214, - [SMALL_STATE(1847)] = 78258, - [SMALL_STATE(1848)] = 78302, - [SMALL_STATE(1849)] = 78346, - [SMALL_STATE(1850)] = 78390, - [SMALL_STATE(1851)] = 78434, - [SMALL_STATE(1852)] = 78478, - [SMALL_STATE(1853)] = 78522, - [SMALL_STATE(1854)] = 78566, - [SMALL_STATE(1855)] = 78610, - [SMALL_STATE(1856)] = 78654, - [SMALL_STATE(1857)] = 78698, - [SMALL_STATE(1858)] = 78742, - [SMALL_STATE(1859)] = 78786, - [SMALL_STATE(1860)] = 78830, - [SMALL_STATE(1861)] = 78874, - [SMALL_STATE(1862)] = 78918, - [SMALL_STATE(1863)] = 78962, - [SMALL_STATE(1864)] = 79006, - [SMALL_STATE(1865)] = 79050, - [SMALL_STATE(1866)] = 79094, - [SMALL_STATE(1867)] = 79138, - [SMALL_STATE(1868)] = 79182, - [SMALL_STATE(1869)] = 79226, - [SMALL_STATE(1870)] = 79270, - [SMALL_STATE(1871)] = 79314, - [SMALL_STATE(1872)] = 79358, - [SMALL_STATE(1873)] = 79402, - [SMALL_STATE(1874)] = 79446, - [SMALL_STATE(1875)] = 79490, - [SMALL_STATE(1876)] = 79534, - [SMALL_STATE(1877)] = 79578, - [SMALL_STATE(1878)] = 79622, - [SMALL_STATE(1879)] = 79666, - [SMALL_STATE(1880)] = 79710, - [SMALL_STATE(1881)] = 79754, - [SMALL_STATE(1882)] = 79798, - [SMALL_STATE(1883)] = 79842, - [SMALL_STATE(1884)] = 79886, - [SMALL_STATE(1885)] = 79930, - [SMALL_STATE(1886)] = 79974, - [SMALL_STATE(1887)] = 80018, - [SMALL_STATE(1888)] = 80062, - [SMALL_STATE(1889)] = 80106, - [SMALL_STATE(1890)] = 80152, - [SMALL_STATE(1891)] = 80196, - [SMALL_STATE(1892)] = 80240, - [SMALL_STATE(1893)] = 80284, - [SMALL_STATE(1894)] = 80328, - [SMALL_STATE(1895)] = 80372, - [SMALL_STATE(1896)] = 80416, - [SMALL_STATE(1897)] = 80460, - [SMALL_STATE(1898)] = 80504, - [SMALL_STATE(1899)] = 80548, - [SMALL_STATE(1900)] = 80592, - [SMALL_STATE(1901)] = 80636, - [SMALL_STATE(1902)] = 80680, - [SMALL_STATE(1903)] = 80724, - [SMALL_STATE(1904)] = 80768, - [SMALL_STATE(1905)] = 80812, - [SMALL_STATE(1906)] = 80856, - [SMALL_STATE(1907)] = 80900, - [SMALL_STATE(1908)] = 80944, - [SMALL_STATE(1909)] = 80988, - [SMALL_STATE(1910)] = 81032, - [SMALL_STATE(1911)] = 81076, - [SMALL_STATE(1912)] = 81120, - [SMALL_STATE(1913)] = 81164, - [SMALL_STATE(1914)] = 81208, - [SMALL_STATE(1915)] = 81252, - [SMALL_STATE(1916)] = 81296, - [SMALL_STATE(1917)] = 81340, - [SMALL_STATE(1918)] = 81384, - [SMALL_STATE(1919)] = 81428, - [SMALL_STATE(1920)] = 81472, - [SMALL_STATE(1921)] = 81516, - [SMALL_STATE(1922)] = 81560, - [SMALL_STATE(1923)] = 81604, - [SMALL_STATE(1924)] = 81648, - [SMALL_STATE(1925)] = 81692, - [SMALL_STATE(1926)] = 81736, - [SMALL_STATE(1927)] = 81780, - [SMALL_STATE(1928)] = 81824, - [SMALL_STATE(1929)] = 81868, - [SMALL_STATE(1930)] = 81912, - [SMALL_STATE(1931)] = 81956, - [SMALL_STATE(1932)] = 82000, - [SMALL_STATE(1933)] = 82044, - [SMALL_STATE(1934)] = 82088, - [SMALL_STATE(1935)] = 82132, - [SMALL_STATE(1936)] = 82176, - [SMALL_STATE(1937)] = 82220, - [SMALL_STATE(1938)] = 82264, - [SMALL_STATE(1939)] = 82308, - [SMALL_STATE(1940)] = 82352, - [SMALL_STATE(1941)] = 82396, - [SMALL_STATE(1942)] = 82440, - [SMALL_STATE(1943)] = 82484, - [SMALL_STATE(1944)] = 82528, - [SMALL_STATE(1945)] = 82572, - [SMALL_STATE(1946)] = 82616, - [SMALL_STATE(1947)] = 82660, - [SMALL_STATE(1948)] = 82704, - [SMALL_STATE(1949)] = 82748, - [SMALL_STATE(1950)] = 82792, - [SMALL_STATE(1951)] = 82836, - [SMALL_STATE(1952)] = 82880, - [SMALL_STATE(1953)] = 82924, - [SMALL_STATE(1954)] = 82968, - [SMALL_STATE(1955)] = 83012, - [SMALL_STATE(1956)] = 83056, - [SMALL_STATE(1957)] = 83100, - [SMALL_STATE(1958)] = 83144, - [SMALL_STATE(1959)] = 83188, - [SMALL_STATE(1960)] = 83232, - [SMALL_STATE(1961)] = 83276, - [SMALL_STATE(1962)] = 83320, - [SMALL_STATE(1963)] = 83364, - [SMALL_STATE(1964)] = 83408, - [SMALL_STATE(1965)] = 83452, - [SMALL_STATE(1966)] = 83496, - [SMALL_STATE(1967)] = 83540, - [SMALL_STATE(1968)] = 83584, - [SMALL_STATE(1969)] = 83628, - [SMALL_STATE(1970)] = 83672, - [SMALL_STATE(1971)] = 83716, - [SMALL_STATE(1972)] = 83760, - [SMALL_STATE(1973)] = 83804, - [SMALL_STATE(1974)] = 83848, - [SMALL_STATE(1975)] = 83892, - [SMALL_STATE(1976)] = 83936, - [SMALL_STATE(1977)] = 83980, - [SMALL_STATE(1978)] = 84024, - [SMALL_STATE(1979)] = 84068, - [SMALL_STATE(1980)] = 84112, - [SMALL_STATE(1981)] = 84156, - [SMALL_STATE(1982)] = 84200, - [SMALL_STATE(1983)] = 84244, - [SMALL_STATE(1984)] = 84288, - [SMALL_STATE(1985)] = 84332, - [SMALL_STATE(1986)] = 84376, - [SMALL_STATE(1987)] = 84420, - [SMALL_STATE(1988)] = 84464, - [SMALL_STATE(1989)] = 84508, - [SMALL_STATE(1990)] = 84552, - [SMALL_STATE(1991)] = 84596, - [SMALL_STATE(1992)] = 84640, - [SMALL_STATE(1993)] = 84684, - [SMALL_STATE(1994)] = 84728, - [SMALL_STATE(1995)] = 84772, - [SMALL_STATE(1996)] = 84816, - [SMALL_STATE(1997)] = 84860, - [SMALL_STATE(1998)] = 84904, - [SMALL_STATE(1999)] = 84948, - [SMALL_STATE(2000)] = 84992, - [SMALL_STATE(2001)] = 85036, - [SMALL_STATE(2002)] = 85080, - [SMALL_STATE(2003)] = 85124, - [SMALL_STATE(2004)] = 85168, - [SMALL_STATE(2005)] = 85212, - [SMALL_STATE(2006)] = 85256, - [SMALL_STATE(2007)] = 85300, - [SMALL_STATE(2008)] = 85344, - [SMALL_STATE(2009)] = 85388, - [SMALL_STATE(2010)] = 85432, - [SMALL_STATE(2011)] = 85476, - [SMALL_STATE(2012)] = 85520, - [SMALL_STATE(2013)] = 85564, - [SMALL_STATE(2014)] = 85608, - [SMALL_STATE(2015)] = 85652, - [SMALL_STATE(2016)] = 85696, - [SMALL_STATE(2017)] = 85740, - [SMALL_STATE(2018)] = 85784, - [SMALL_STATE(2019)] = 85828, - [SMALL_STATE(2020)] = 85872, - [SMALL_STATE(2021)] = 85916, - [SMALL_STATE(2022)] = 85960, - [SMALL_STATE(2023)] = 86004, - [SMALL_STATE(2024)] = 86048, - [SMALL_STATE(2025)] = 86094, - [SMALL_STATE(2026)] = 86138, - [SMALL_STATE(2027)] = 86182, - [SMALL_STATE(2028)] = 86226, - [SMALL_STATE(2029)] = 86270, - [SMALL_STATE(2030)] = 86314, - [SMALL_STATE(2031)] = 86358, - [SMALL_STATE(2032)] = 86402, - [SMALL_STATE(2033)] = 86446, - [SMALL_STATE(2034)] = 86490, - [SMALL_STATE(2035)] = 86534, - [SMALL_STATE(2036)] = 86578, - [SMALL_STATE(2037)] = 86622, - [SMALL_STATE(2038)] = 86666, - [SMALL_STATE(2039)] = 86710, - [SMALL_STATE(2040)] = 86754, - [SMALL_STATE(2041)] = 86798, - [SMALL_STATE(2042)] = 86842, - [SMALL_STATE(2043)] = 86886, - [SMALL_STATE(2044)] = 86930, - [SMALL_STATE(2045)] = 86974, - [SMALL_STATE(2046)] = 87018, - [SMALL_STATE(2047)] = 87062, - [SMALL_STATE(2048)] = 87106, - [SMALL_STATE(2049)] = 87150, - [SMALL_STATE(2050)] = 87194, - [SMALL_STATE(2051)] = 87238, - [SMALL_STATE(2052)] = 87282, - [SMALL_STATE(2053)] = 87326, - [SMALL_STATE(2054)] = 87370, - [SMALL_STATE(2055)] = 87414, - [SMALL_STATE(2056)] = 87458, - [SMALL_STATE(2057)] = 87502, - [SMALL_STATE(2058)] = 87546, - [SMALL_STATE(2059)] = 87590, - [SMALL_STATE(2060)] = 87634, - [SMALL_STATE(2061)] = 87678, - [SMALL_STATE(2062)] = 87722, - [SMALL_STATE(2063)] = 87766, - [SMALL_STATE(2064)] = 87810, - [SMALL_STATE(2065)] = 87854, - [SMALL_STATE(2066)] = 87898, - [SMALL_STATE(2067)] = 87942, - [SMALL_STATE(2068)] = 87986, - [SMALL_STATE(2069)] = 88030, - [SMALL_STATE(2070)] = 88074, - [SMALL_STATE(2071)] = 88118, - [SMALL_STATE(2072)] = 88162, - [SMALL_STATE(2073)] = 88206, - [SMALL_STATE(2074)] = 88250, - [SMALL_STATE(2075)] = 88294, - [SMALL_STATE(2076)] = 88338, - [SMALL_STATE(2077)] = 88382, - [SMALL_STATE(2078)] = 88426, - [SMALL_STATE(2079)] = 88470, - [SMALL_STATE(2080)] = 88514, - [SMALL_STATE(2081)] = 88558, - [SMALL_STATE(2082)] = 88602, - [SMALL_STATE(2083)] = 88646, - [SMALL_STATE(2084)] = 88690, - [SMALL_STATE(2085)] = 88734, - [SMALL_STATE(2086)] = 88778, - [SMALL_STATE(2087)] = 88822, - [SMALL_STATE(2088)] = 88866, - [SMALL_STATE(2089)] = 88910, - [SMALL_STATE(2090)] = 88954, - [SMALL_STATE(2091)] = 88998, - [SMALL_STATE(2092)] = 89042, - [SMALL_STATE(2093)] = 89086, - [SMALL_STATE(2094)] = 89130, - [SMALL_STATE(2095)] = 89174, - [SMALL_STATE(2096)] = 89218, - [SMALL_STATE(2097)] = 89262, - [SMALL_STATE(2098)] = 89306, - [SMALL_STATE(2099)] = 89350, - [SMALL_STATE(2100)] = 89394, - [SMALL_STATE(2101)] = 89438, - [SMALL_STATE(2102)] = 89482, - [SMALL_STATE(2103)] = 89526, - [SMALL_STATE(2104)] = 89570, - [SMALL_STATE(2105)] = 89614, - [SMALL_STATE(2106)] = 89658, - [SMALL_STATE(2107)] = 89702, - [SMALL_STATE(2108)] = 89746, - [SMALL_STATE(2109)] = 89790, - [SMALL_STATE(2110)] = 89834, - [SMALL_STATE(2111)] = 89878, - [SMALL_STATE(2112)] = 89922, - [SMALL_STATE(2113)] = 89966, - [SMALL_STATE(2114)] = 90010, - [SMALL_STATE(2115)] = 90054, - [SMALL_STATE(2116)] = 90098, - [SMALL_STATE(2117)] = 90142, - [SMALL_STATE(2118)] = 90186, - [SMALL_STATE(2119)] = 90230, - [SMALL_STATE(2120)] = 90274, - [SMALL_STATE(2121)] = 90318, - [SMALL_STATE(2122)] = 90362, - [SMALL_STATE(2123)] = 90406, - [SMALL_STATE(2124)] = 90450, - [SMALL_STATE(2125)] = 90494, - [SMALL_STATE(2126)] = 90538, - [SMALL_STATE(2127)] = 90582, - [SMALL_STATE(2128)] = 90626, - [SMALL_STATE(2129)] = 90670, - [SMALL_STATE(2130)] = 90714, - [SMALL_STATE(2131)] = 90758, - [SMALL_STATE(2132)] = 90802, - [SMALL_STATE(2133)] = 90846, - [SMALL_STATE(2134)] = 90890, - [SMALL_STATE(2135)] = 90934, - [SMALL_STATE(2136)] = 90978, - [SMALL_STATE(2137)] = 91022, - [SMALL_STATE(2138)] = 91066, - [SMALL_STATE(2139)] = 91110, - [SMALL_STATE(2140)] = 91154, - [SMALL_STATE(2141)] = 91198, - [SMALL_STATE(2142)] = 91242, - [SMALL_STATE(2143)] = 91286, - [SMALL_STATE(2144)] = 91330, - [SMALL_STATE(2145)] = 91374, - [SMALL_STATE(2146)] = 91418, - [SMALL_STATE(2147)] = 91462, - [SMALL_STATE(2148)] = 91506, - [SMALL_STATE(2149)] = 91550, - [SMALL_STATE(2150)] = 91594, - [SMALL_STATE(2151)] = 91638, - [SMALL_STATE(2152)] = 91682, - [SMALL_STATE(2153)] = 91726, - [SMALL_STATE(2154)] = 91770, - [SMALL_STATE(2155)] = 91814, - [SMALL_STATE(2156)] = 91858, - [SMALL_STATE(2157)] = 91902, - [SMALL_STATE(2158)] = 91946, - [SMALL_STATE(2159)] = 91990, - [SMALL_STATE(2160)] = 92034, - [SMALL_STATE(2161)] = 92078, - [SMALL_STATE(2162)] = 92122, - [SMALL_STATE(2163)] = 92166, - [SMALL_STATE(2164)] = 92210, - [SMALL_STATE(2165)] = 92254, - [SMALL_STATE(2166)] = 92298, - [SMALL_STATE(2167)] = 92342, - [SMALL_STATE(2168)] = 92386, - [SMALL_STATE(2169)] = 92430, - [SMALL_STATE(2170)] = 92474, - [SMALL_STATE(2171)] = 92518, - [SMALL_STATE(2172)] = 92562, - [SMALL_STATE(2173)] = 92606, - [SMALL_STATE(2174)] = 92650, - [SMALL_STATE(2175)] = 92694, - [SMALL_STATE(2176)] = 92738, - [SMALL_STATE(2177)] = 92782, - [SMALL_STATE(2178)] = 92826, - [SMALL_STATE(2179)] = 92870, - [SMALL_STATE(2180)] = 92914, - [SMALL_STATE(2181)] = 92958, - [SMALL_STATE(2182)] = 93002, - [SMALL_STATE(2183)] = 93046, - [SMALL_STATE(2184)] = 93090, - [SMALL_STATE(2185)] = 93134, - [SMALL_STATE(2186)] = 93178, - [SMALL_STATE(2187)] = 93222, - [SMALL_STATE(2188)] = 93266, - [SMALL_STATE(2189)] = 93310, - [SMALL_STATE(2190)] = 93354, - [SMALL_STATE(2191)] = 93398, - [SMALL_STATE(2192)] = 93442, - [SMALL_STATE(2193)] = 93486, - [SMALL_STATE(2194)] = 93530, - [SMALL_STATE(2195)] = 93574, - [SMALL_STATE(2196)] = 93618, - [SMALL_STATE(2197)] = 93662, - [SMALL_STATE(2198)] = 93706, - [SMALL_STATE(2199)] = 93750, - [SMALL_STATE(2200)] = 93794, - [SMALL_STATE(2201)] = 93838, - [SMALL_STATE(2202)] = 93882, - [SMALL_STATE(2203)] = 93926, - [SMALL_STATE(2204)] = 93970, - [SMALL_STATE(2205)] = 94014, - [SMALL_STATE(2206)] = 94058, - [SMALL_STATE(2207)] = 94102, - [SMALL_STATE(2208)] = 94146, - [SMALL_STATE(2209)] = 94190, - [SMALL_STATE(2210)] = 94234, - [SMALL_STATE(2211)] = 94278, - [SMALL_STATE(2212)] = 94322, - [SMALL_STATE(2213)] = 94366, - [SMALL_STATE(2214)] = 94410, - [SMALL_STATE(2215)] = 94454, - [SMALL_STATE(2216)] = 94498, - [SMALL_STATE(2217)] = 94542, - [SMALL_STATE(2218)] = 94586, - [SMALL_STATE(2219)] = 94630, - [SMALL_STATE(2220)] = 94674, - [SMALL_STATE(2221)] = 94718, - [SMALL_STATE(2222)] = 94762, - [SMALL_STATE(2223)] = 94806, - [SMALL_STATE(2224)] = 94850, - [SMALL_STATE(2225)] = 94894, - [SMALL_STATE(2226)] = 94938, - [SMALL_STATE(2227)] = 94982, - [SMALL_STATE(2228)] = 95026, - [SMALL_STATE(2229)] = 95070, - [SMALL_STATE(2230)] = 95114, - [SMALL_STATE(2231)] = 95158, - [SMALL_STATE(2232)] = 95202, - [SMALL_STATE(2233)] = 95246, - [SMALL_STATE(2234)] = 95290, - [SMALL_STATE(2235)] = 95334, - [SMALL_STATE(2236)] = 95378, - [SMALL_STATE(2237)] = 95422, - [SMALL_STATE(2238)] = 95466, - [SMALL_STATE(2239)] = 95510, - [SMALL_STATE(2240)] = 95554, - [SMALL_STATE(2241)] = 95598, - [SMALL_STATE(2242)] = 95642, - [SMALL_STATE(2243)] = 95686, - [SMALL_STATE(2244)] = 95730, - [SMALL_STATE(2245)] = 95774, - [SMALL_STATE(2246)] = 95818, - [SMALL_STATE(2247)] = 95862, - [SMALL_STATE(2248)] = 95906, - [SMALL_STATE(2249)] = 95950, - [SMALL_STATE(2250)] = 95994, - [SMALL_STATE(2251)] = 96038, - [SMALL_STATE(2252)] = 96082, - [SMALL_STATE(2253)] = 96126, - [SMALL_STATE(2254)] = 96170, - [SMALL_STATE(2255)] = 96214, - [SMALL_STATE(2256)] = 96258, - [SMALL_STATE(2257)] = 96302, - [SMALL_STATE(2258)] = 96346, - [SMALL_STATE(2259)] = 96390, - [SMALL_STATE(2260)] = 96434, - [SMALL_STATE(2261)] = 96478, - [SMALL_STATE(2262)] = 96522, - [SMALL_STATE(2263)] = 96566, - [SMALL_STATE(2264)] = 96610, - [SMALL_STATE(2265)] = 96654, - [SMALL_STATE(2266)] = 96698, - [SMALL_STATE(2267)] = 96742, - [SMALL_STATE(2268)] = 96786, - [SMALL_STATE(2269)] = 96830, - [SMALL_STATE(2270)] = 96874, - [SMALL_STATE(2271)] = 96918, - [SMALL_STATE(2272)] = 96962, - [SMALL_STATE(2273)] = 97006, - [SMALL_STATE(2274)] = 97050, - [SMALL_STATE(2275)] = 97094, - [SMALL_STATE(2276)] = 97138, - [SMALL_STATE(2277)] = 97182, - [SMALL_STATE(2278)] = 97225, - [SMALL_STATE(2279)] = 97268, - [SMALL_STATE(2280)] = 97311, - [SMALL_STATE(2281)] = 97354, - [SMALL_STATE(2282)] = 97397, - [SMALL_STATE(2283)] = 97440, - [SMALL_STATE(2284)] = 97483, - [SMALL_STATE(2285)] = 97526, - [SMALL_STATE(2286)] = 97569, - [SMALL_STATE(2287)] = 97612, - [SMALL_STATE(2288)] = 97655, - [SMALL_STATE(2289)] = 97698, - [SMALL_STATE(2290)] = 97741, - [SMALL_STATE(2291)] = 97784, - [SMALL_STATE(2292)] = 97827, - [SMALL_STATE(2293)] = 97870, - [SMALL_STATE(2294)] = 97913, - [SMALL_STATE(2295)] = 97956, - [SMALL_STATE(2296)] = 97999, - [SMALL_STATE(2297)] = 98042, - [SMALL_STATE(2298)] = 98085, - [SMALL_STATE(2299)] = 98128, - [SMALL_STATE(2300)] = 98173, - [SMALL_STATE(2301)] = 98216, - [SMALL_STATE(2302)] = 98259, - [SMALL_STATE(2303)] = 98302, - [SMALL_STATE(2304)] = 98345, - [SMALL_STATE(2305)] = 98388, - [SMALL_STATE(2306)] = 98431, - [SMALL_STATE(2307)] = 98474, - [SMALL_STATE(2308)] = 98517, - [SMALL_STATE(2309)] = 98560, - [SMALL_STATE(2310)] = 98603, - [SMALL_STATE(2311)] = 98646, - [SMALL_STATE(2312)] = 98689, - [SMALL_STATE(2313)] = 98732, - [SMALL_STATE(2314)] = 98775, - [SMALL_STATE(2315)] = 98818, - [SMALL_STATE(2316)] = 98861, - [SMALL_STATE(2317)] = 98904, - [SMALL_STATE(2318)] = 98947, - [SMALL_STATE(2319)] = 98990, - [SMALL_STATE(2320)] = 99033, - [SMALL_STATE(2321)] = 99076, - [SMALL_STATE(2322)] = 99119, - [SMALL_STATE(2323)] = 99162, - [SMALL_STATE(2324)] = 99205, - [SMALL_STATE(2325)] = 99248, - [SMALL_STATE(2326)] = 99291, - [SMALL_STATE(2327)] = 99334, - [SMALL_STATE(2328)] = 99377, - [SMALL_STATE(2329)] = 99420, - [SMALL_STATE(2330)] = 99463, - [SMALL_STATE(2331)] = 99506, - [SMALL_STATE(2332)] = 99549, - [SMALL_STATE(2333)] = 99592, - [SMALL_STATE(2334)] = 99635, - [SMALL_STATE(2335)] = 99678, - [SMALL_STATE(2336)] = 99721, - [SMALL_STATE(2337)] = 99764, - [SMALL_STATE(2338)] = 99807, - [SMALL_STATE(2339)] = 99850, - [SMALL_STATE(2340)] = 99893, - [SMALL_STATE(2341)] = 99936, - [SMALL_STATE(2342)] = 99979, - [SMALL_STATE(2343)] = 100022, - [SMALL_STATE(2344)] = 100065, - [SMALL_STATE(2345)] = 100108, - [SMALL_STATE(2346)] = 100151, - [SMALL_STATE(2347)] = 100193, - [SMALL_STATE(2348)] = 100245, - [SMALL_STATE(2349)] = 100297, - [SMALL_STATE(2350)] = 100349, - [SMALL_STATE(2351)] = 100401, - [SMALL_STATE(2352)] = 100453, - [SMALL_STATE(2353)] = 100498, - [SMALL_STATE(2354)] = 100543, - [SMALL_STATE(2355)] = 100587, - [SMALL_STATE(2356)] = 100631, - [SMALL_STATE(2357)] = 100675, - [SMALL_STATE(2358)] = 100719, - [SMALL_STATE(2359)] = 100763, - [SMALL_STATE(2360)] = 100807, - [SMALL_STATE(2361)] = 100851, - [SMALL_STATE(2362)] = 100895, - [SMALL_STATE(2363)] = 100939, - [SMALL_STATE(2364)] = 100983, - [SMALL_STATE(2365)] = 101027, - [SMALL_STATE(2366)] = 101071, - [SMALL_STATE(2367)] = 101115, - [SMALL_STATE(2368)] = 101159, - [SMALL_STATE(2369)] = 101203, - [SMALL_STATE(2370)] = 101247, - [SMALL_STATE(2371)] = 101291, - [SMALL_STATE(2372)] = 101335, - [SMALL_STATE(2373)] = 101379, - [SMALL_STATE(2374)] = 101423, - [SMALL_STATE(2375)] = 101467, - [SMALL_STATE(2376)] = 101511, - [SMALL_STATE(2377)] = 101555, - [SMALL_STATE(2378)] = 101599, - [SMALL_STATE(2379)] = 101643, - [SMALL_STATE(2380)] = 101687, - [SMALL_STATE(2381)] = 101731, - [SMALL_STATE(2382)] = 101775, - [SMALL_STATE(2383)] = 101819, - [SMALL_STATE(2384)] = 101863, - [SMALL_STATE(2385)] = 101907, - [SMALL_STATE(2386)] = 101951, - [SMALL_STATE(2387)] = 101995, - [SMALL_STATE(2388)] = 102039, - [SMALL_STATE(2389)] = 102083, - [SMALL_STATE(2390)] = 102127, - [SMALL_STATE(2391)] = 102171, - [SMALL_STATE(2392)] = 102215, - [SMALL_STATE(2393)] = 102259, - [SMALL_STATE(2394)] = 102303, - [SMALL_STATE(2395)] = 102347, - [SMALL_STATE(2396)] = 102391, - [SMALL_STATE(2397)] = 102435, - [SMALL_STATE(2398)] = 102479, - [SMALL_STATE(2399)] = 102523, - [SMALL_STATE(2400)] = 102567, - [SMALL_STATE(2401)] = 102611, - [SMALL_STATE(2402)] = 102655, - [SMALL_STATE(2403)] = 102699, - [SMALL_STATE(2404)] = 102743, - [SMALL_STATE(2405)] = 102787, - [SMALL_STATE(2406)] = 102831, - [SMALL_STATE(2407)] = 102875, - [SMALL_STATE(2408)] = 102919, - [SMALL_STATE(2409)] = 102963, - [SMALL_STATE(2410)] = 103007, - [SMALL_STATE(2411)] = 103051, - [SMALL_STATE(2412)] = 103095, - [SMALL_STATE(2413)] = 103139, - [SMALL_STATE(2414)] = 103183, - [SMALL_STATE(2415)] = 103227, - [SMALL_STATE(2416)] = 103271, - [SMALL_STATE(2417)] = 103315, - [SMALL_STATE(2418)] = 103359, - [SMALL_STATE(2419)] = 103403, - [SMALL_STATE(2420)] = 103447, - [SMALL_STATE(2421)] = 103491, - [SMALL_STATE(2422)] = 103535, - [SMALL_STATE(2423)] = 103579, - [SMALL_STATE(2424)] = 103623, - [SMALL_STATE(2425)] = 103667, - [SMALL_STATE(2426)] = 103711, - [SMALL_STATE(2427)] = 103754, - [SMALL_STATE(2428)] = 103797, - [SMALL_STATE(2429)] = 103840, - [SMALL_STATE(2430)] = 103883, - [SMALL_STATE(2431)] = 103926, - [SMALL_STATE(2432)] = 103969, - [SMALL_STATE(2433)] = 104012, - [SMALL_STATE(2434)] = 104055, - [SMALL_STATE(2435)] = 104098, - [SMALL_STATE(2436)] = 104141, - [SMALL_STATE(2437)] = 104184, - [SMALL_STATE(2438)] = 104227, - [SMALL_STATE(2439)] = 104270, - [SMALL_STATE(2440)] = 104313, - [SMALL_STATE(2441)] = 104356, - [SMALL_STATE(2442)] = 104399, - [SMALL_STATE(2443)] = 104442, - [SMALL_STATE(2444)] = 104479, - [SMALL_STATE(2445)] = 104516, - [SMALL_STATE(2446)] = 104553, - [SMALL_STATE(2447)] = 104590, - [SMALL_STATE(2448)] = 104627, - [SMALL_STATE(2449)] = 104664, - [SMALL_STATE(2450)] = 104699, - [SMALL_STATE(2451)] = 104734, - [SMALL_STATE(2452)] = 104771, - [SMALL_STATE(2453)] = 104808, - [SMALL_STATE(2454)] = 104845, - [SMALL_STATE(2455)] = 104882, - [SMALL_STATE(2456)] = 104917, - [SMALL_STATE(2457)] = 104954, - [SMALL_STATE(2458)] = 104991, - [SMALL_STATE(2459)] = 105028, - [SMALL_STATE(2460)] = 105065, - [SMALL_STATE(2461)] = 105102, - [SMALL_STATE(2462)] = 105139, - [SMALL_STATE(2463)] = 105176, - [SMALL_STATE(2464)] = 105202, - [SMALL_STATE(2465)] = 105228, - [SMALL_STATE(2466)] = 105254, - [SMALL_STATE(2467)] = 105280, - [SMALL_STATE(2468)] = 105306, - [SMALL_STATE(2469)] = 105332, - [SMALL_STATE(2470)] = 105358, - [SMALL_STATE(2471)] = 105384, - [SMALL_STATE(2472)] = 105408, - [SMALL_STATE(2473)] = 105434, - [SMALL_STATE(2474)] = 105460, - [SMALL_STATE(2475)] = 105486, - [SMALL_STATE(2476)] = 105512, - [SMALL_STATE(2477)] = 105538, - [SMALL_STATE(2478)] = 105564, - [SMALL_STATE(2479)] = 105590, - [SMALL_STATE(2480)] = 105616, - [SMALL_STATE(2481)] = 105642, - [SMALL_STATE(2482)] = 105668, - [SMALL_STATE(2483)] = 105694, - [SMALL_STATE(2484)] = 105720, - [SMALL_STATE(2485)] = 105746, - [SMALL_STATE(2486)] = 105772, - [SMALL_STATE(2487)] = 105798, - [SMALL_STATE(2488)] = 105824, - [SMALL_STATE(2489)] = 105850, - [SMALL_STATE(2490)] = 105866, - [SMALL_STATE(2491)] = 105892, - [SMALL_STATE(2492)] = 105918, - [SMALL_STATE(2493)] = 105944, - [SMALL_STATE(2494)] = 105970, - [SMALL_STATE(2495)] = 105996, - [SMALL_STATE(2496)] = 106022, - [SMALL_STATE(2497)] = 106048, - [SMALL_STATE(2498)] = 106072, - [SMALL_STATE(2499)] = 106096, - [SMALL_STATE(2500)] = 106122, - [SMALL_STATE(2501)] = 106146, - [SMALL_STATE(2502)] = 106172, - [SMALL_STATE(2503)] = 106198, - [SMALL_STATE(2504)] = 106224, - [SMALL_STATE(2505)] = 106247, - [SMALL_STATE(2506)] = 106264, - [SMALL_STATE(2507)] = 106287, - [SMALL_STATE(2508)] = 106304, - [SMALL_STATE(2509)] = 106327, - [SMALL_STATE(2510)] = 106348, - [SMALL_STATE(2511)] = 106371, - [SMALL_STATE(2512)] = 106396, - [SMALL_STATE(2513)] = 106419, - [SMALL_STATE(2514)] = 106442, - [SMALL_STATE(2515)] = 106467, - [SMALL_STATE(2516)] = 106492, - [SMALL_STATE(2517)] = 106515, - [SMALL_STATE(2518)] = 106528, - [SMALL_STATE(2519)] = 106551, - [SMALL_STATE(2520)] = 106572, - [SMALL_STATE(2521)] = 106593, - [SMALL_STATE(2522)] = 106616, - [SMALL_STATE(2523)] = 106639, - [SMALL_STATE(2524)] = 106654, - [SMALL_STATE(2525)] = 106675, - [SMALL_STATE(2526)] = 106698, - [SMALL_STATE(2527)] = 106721, - [SMALL_STATE(2528)] = 106744, - [SMALL_STATE(2529)] = 106767, - [SMALL_STATE(2530)] = 106788, - [SMALL_STATE(2531)] = 106811, - [SMALL_STATE(2532)] = 106834, - [SMALL_STATE(2533)] = 106854, - [SMALL_STATE(2534)] = 106872, - [SMALL_STATE(2535)] = 106892, - [SMALL_STATE(2536)] = 106908, - [SMALL_STATE(2537)] = 106918, - [SMALL_STATE(2538)] = 106934, - [SMALL_STATE(2539)] = 106946, - [SMALL_STATE(2540)] = 106966, - [SMALL_STATE(2541)] = 106986, - [SMALL_STATE(2542)] = 107002, - [SMALL_STATE(2543)] = 107022, - [SMALL_STATE(2544)] = 107042, - [SMALL_STATE(2545)] = 107060, - [SMALL_STATE(2546)] = 107080, - [SMALL_STATE(2547)] = 107098, - [SMALL_STATE(2548)] = 107114, - [SMALL_STATE(2549)] = 107132, - [SMALL_STATE(2550)] = 107152, - [SMALL_STATE(2551)] = 107172, - [SMALL_STATE(2552)] = 107191, - [SMALL_STATE(2553)] = 107208, - [SMALL_STATE(2554)] = 107225, - [SMALL_STATE(2555)] = 107242, - [SMALL_STATE(2556)] = 107259, - [SMALL_STATE(2557)] = 107276, - [SMALL_STATE(2558)] = 107293, - [SMALL_STATE(2559)] = 107312, - [SMALL_STATE(2560)] = 107321, - [SMALL_STATE(2561)] = 107340, - [SMALL_STATE(2562)] = 107357, - [SMALL_STATE(2563)] = 107376, - [SMALL_STATE(2564)] = 107395, - [SMALL_STATE(2565)] = 107404, - [SMALL_STATE(2566)] = 107419, - [SMALL_STATE(2567)] = 107436, - [SMALL_STATE(2568)] = 107449, - [SMALL_STATE(2569)] = 107468, - [SMALL_STATE(2570)] = 107485, - [SMALL_STATE(2571)] = 107502, - [SMALL_STATE(2572)] = 107519, - [SMALL_STATE(2573)] = 107536, - [SMALL_STATE(2574)] = 107551, - [SMALL_STATE(2575)] = 107560, - [SMALL_STATE(2576)] = 107579, - [SMALL_STATE(2577)] = 107596, - [SMALL_STATE(2578)] = 107613, - [SMALL_STATE(2579)] = 107630, - [SMALL_STATE(2580)] = 107647, - [SMALL_STATE(2581)] = 107664, - [SMALL_STATE(2582)] = 107683, - [SMALL_STATE(2583)] = 107702, - [SMALL_STATE(2584)] = 107721, - [SMALL_STATE(2585)] = 107740, - [SMALL_STATE(2586)] = 107749, - [SMALL_STATE(2587)] = 107763, - [SMALL_STATE(2588)] = 107777, - [SMALL_STATE(2589)] = 107791, - [SMALL_STATE(2590)] = 107805, - [SMALL_STATE(2591)] = 107817, - [SMALL_STATE(2592)] = 107831, - [SMALL_STATE(2593)] = 107843, - [SMALL_STATE(2594)] = 107857, - [SMALL_STATE(2595)] = 107871, - [SMALL_STATE(2596)] = 107883, - [SMALL_STATE(2597)] = 107897, - [SMALL_STATE(2598)] = 107911, - [SMALL_STATE(2599)] = 107923, - [SMALL_STATE(2600)] = 107935, - [SMALL_STATE(2601)] = 107945, - [SMALL_STATE(2602)] = 107959, - [SMALL_STATE(2603)] = 107973, - [SMALL_STATE(2604)] = 107985, - [SMALL_STATE(2605)] = 107999, - [SMALL_STATE(2606)] = 108011, - [SMALL_STATE(2607)] = 108025, - [SMALL_STATE(2608)] = 108033, - [SMALL_STATE(2609)] = 108045, - [SMALL_STATE(2610)] = 108057, - [SMALL_STATE(2611)] = 108071, - [SMALL_STATE(2612)] = 108085, - [SMALL_STATE(2613)] = 108097, - [SMALL_STATE(2614)] = 108113, - [SMALL_STATE(2615)] = 108121, - [SMALL_STATE(2616)] = 108135, - [SMALL_STATE(2617)] = 108149, - [SMALL_STATE(2618)] = 108165, - [SMALL_STATE(2619)] = 108177, - [SMALL_STATE(2620)] = 108185, - [SMALL_STATE(2621)] = 108199, - [SMALL_STATE(2622)] = 108207, - [SMALL_STATE(2623)] = 108221, - [SMALL_STATE(2624)] = 108231, - [SMALL_STATE(2625)] = 108239, - [SMALL_STATE(2626)] = 108255, - [SMALL_STATE(2627)] = 108269, - [SMALL_STATE(2628)] = 108285, - [SMALL_STATE(2629)] = 108299, - [SMALL_STATE(2630)] = 108315, - [SMALL_STATE(2631)] = 108327, - [SMALL_STATE(2632)] = 108341, - [SMALL_STATE(2633)] = 108355, - [SMALL_STATE(2634)] = 108369, - [SMALL_STATE(2635)] = 108383, - [SMALL_STATE(2636)] = 108397, - [SMALL_STATE(2637)] = 108405, - [SMALL_STATE(2638)] = 108419, - [SMALL_STATE(2639)] = 108433, - [SMALL_STATE(2640)] = 108445, - [SMALL_STATE(2641)] = 108459, - [SMALL_STATE(2642)] = 108473, - [SMALL_STATE(2643)] = 108487, - [SMALL_STATE(2644)] = 108503, - [SMALL_STATE(2645)] = 108517, - [SMALL_STATE(2646)] = 108531, - [SMALL_STATE(2647)] = 108545, - [SMALL_STATE(2648)] = 108559, - [SMALL_STATE(2649)] = 108575, - [SMALL_STATE(2650)] = 108589, - [SMALL_STATE(2651)] = 108599, - [SMALL_STATE(2652)] = 108613, - [SMALL_STATE(2653)] = 108627, - [SMALL_STATE(2654)] = 108643, - [SMALL_STATE(2655)] = 108657, - [SMALL_STATE(2656)] = 108665, - [SMALL_STATE(2657)] = 108681, - [SMALL_STATE(2658)] = 108695, - [SMALL_STATE(2659)] = 108709, - [SMALL_STATE(2660)] = 108721, - [SMALL_STATE(2661)] = 108733, - [SMALL_STATE(2662)] = 108749, - [SMALL_STATE(2663)] = 108761, - [SMALL_STATE(2664)] = 108773, - [SMALL_STATE(2665)] = 108783, - [SMALL_STATE(2666)] = 108797, - [SMALL_STATE(2667)] = 108811, - [SMALL_STATE(2668)] = 108825, - [SMALL_STATE(2669)] = 108839, - [SMALL_STATE(2670)] = 108852, - [SMALL_STATE(2671)] = 108863, - [SMALL_STATE(2672)] = 108874, - [SMALL_STATE(2673)] = 108887, - [SMALL_STATE(2674)] = 108894, - [SMALL_STATE(2675)] = 108901, - [SMALL_STATE(2676)] = 108910, - [SMALL_STATE(2677)] = 108923, - [SMALL_STATE(2678)] = 108930, - [SMALL_STATE(2679)] = 108943, - [SMALL_STATE(2680)] = 108950, - [SMALL_STATE(2681)] = 108961, - [SMALL_STATE(2682)] = 108974, - [SMALL_STATE(2683)] = 108983, - [SMALL_STATE(2684)] = 108994, - [SMALL_STATE(2685)] = 109003, - [SMALL_STATE(2686)] = 109014, - [SMALL_STATE(2687)] = 109025, - [SMALL_STATE(2688)] = 109036, - [SMALL_STATE(2689)] = 109049, - [SMALL_STATE(2690)] = 109060, - [SMALL_STATE(2691)] = 109069, - [SMALL_STATE(2692)] = 109082, - [SMALL_STATE(2693)] = 109095, - [SMALL_STATE(2694)] = 109108, - [SMALL_STATE(2695)] = 109121, - [SMALL_STATE(2696)] = 109134, - [SMALL_STATE(2697)] = 109147, - [SMALL_STATE(2698)] = 109154, - [SMALL_STATE(2699)] = 109167, - [SMALL_STATE(2700)] = 109178, - [SMALL_STATE(2701)] = 109191, - [SMALL_STATE(2702)] = 109200, - [SMALL_STATE(2703)] = 109213, - [SMALL_STATE(2704)] = 109226, - [SMALL_STATE(2705)] = 109233, - [SMALL_STATE(2706)] = 109244, - [SMALL_STATE(2707)] = 109253, - [SMALL_STATE(2708)] = 109262, - [SMALL_STATE(2709)] = 109271, - [SMALL_STATE(2710)] = 109280, - [SMALL_STATE(2711)] = 109291, - [SMALL_STATE(2712)] = 109300, - [SMALL_STATE(2713)] = 109309, - [SMALL_STATE(2714)] = 109318, - [SMALL_STATE(2715)] = 109327, - [SMALL_STATE(2716)] = 109338, - [SMALL_STATE(2717)] = 109349, - [SMALL_STATE(2718)] = 109362, - [SMALL_STATE(2719)] = 109375, - [SMALL_STATE(2720)] = 109386, - [SMALL_STATE(2721)] = 109399, - [SMALL_STATE(2722)] = 109406, - [SMALL_STATE(2723)] = 109413, - [SMALL_STATE(2724)] = 109422, - [SMALL_STATE(2725)] = 109435, - [SMALL_STATE(2726)] = 109448, - [SMALL_STATE(2727)] = 109461, - [SMALL_STATE(2728)] = 109472, - [SMALL_STATE(2729)] = 109483, - [SMALL_STATE(2730)] = 109490, - [SMALL_STATE(2731)] = 109499, - [SMALL_STATE(2732)] = 109512, - [SMALL_STATE(2733)] = 109525, - [SMALL_STATE(2734)] = 109536, - [SMALL_STATE(2735)] = 109549, - [SMALL_STATE(2736)] = 109562, - [SMALL_STATE(2737)] = 109573, - [SMALL_STATE(2738)] = 109582, - [SMALL_STATE(2739)] = 109595, - [SMALL_STATE(2740)] = 109608, - [SMALL_STATE(2741)] = 109621, - [SMALL_STATE(2742)] = 109634, - [SMALL_STATE(2743)] = 109647, - [SMALL_STATE(2744)] = 109658, - [SMALL_STATE(2745)] = 109669, - [SMALL_STATE(2746)] = 109682, - [SMALL_STATE(2747)] = 109691, - [SMALL_STATE(2748)] = 109700, - [SMALL_STATE(2749)] = 109713, - [SMALL_STATE(2750)] = 109726, - [SMALL_STATE(2751)] = 109739, - [SMALL_STATE(2752)] = 109752, - [SMALL_STATE(2753)] = 109765, - [SMALL_STATE(2754)] = 109774, - [SMALL_STATE(2755)] = 109787, - [SMALL_STATE(2756)] = 109800, - [SMALL_STATE(2757)] = 109813, - [SMALL_STATE(2758)] = 109826, - [SMALL_STATE(2759)] = 109839, - [SMALL_STATE(2760)] = 109852, - [SMALL_STATE(2761)] = 109861, - [SMALL_STATE(2762)] = 109874, - [SMALL_STATE(2763)] = 109885, - [SMALL_STATE(2764)] = 109898, - [SMALL_STATE(2765)] = 109911, - [SMALL_STATE(2766)] = 109924, - [SMALL_STATE(2767)] = 109933, - [SMALL_STATE(2768)] = 109946, - [SMALL_STATE(2769)] = 109959, - [SMALL_STATE(2770)] = 109972, - [SMALL_STATE(2771)] = 109985, - [SMALL_STATE(2772)] = 109992, - [SMALL_STATE(2773)] = 110005, - [SMALL_STATE(2774)] = 110018, - [SMALL_STATE(2775)] = 110031, - [SMALL_STATE(2776)] = 110044, - [SMALL_STATE(2777)] = 110057, - [SMALL_STATE(2778)] = 110070, - [SMALL_STATE(2779)] = 110077, - [SMALL_STATE(2780)] = 110087, - [SMALL_STATE(2781)] = 110097, - [SMALL_STATE(2782)] = 110107, - [SMALL_STATE(2783)] = 110117, - [SMALL_STATE(2784)] = 110127, - [SMALL_STATE(2785)] = 110137, - [SMALL_STATE(2786)] = 110147, - [SMALL_STATE(2787)] = 110157, - [SMALL_STATE(2788)] = 110167, - [SMALL_STATE(2789)] = 110177, - [SMALL_STATE(2790)] = 110187, - [SMALL_STATE(2791)] = 110197, - [SMALL_STATE(2792)] = 110207, - [SMALL_STATE(2793)] = 110217, - [SMALL_STATE(2794)] = 110227, - [SMALL_STATE(2795)] = 110237, - [SMALL_STATE(2796)] = 110247, - [SMALL_STATE(2797)] = 110257, - [SMALL_STATE(2798)] = 110267, - [SMALL_STATE(2799)] = 110277, - [SMALL_STATE(2800)] = 110287, - [SMALL_STATE(2801)] = 110297, - [SMALL_STATE(2802)] = 110307, - [SMALL_STATE(2803)] = 110317, - [SMALL_STATE(2804)] = 110325, - [SMALL_STATE(2805)] = 110335, - [SMALL_STATE(2806)] = 110345, - [SMALL_STATE(2807)] = 110355, - [SMALL_STATE(2808)] = 110365, - [SMALL_STATE(2809)] = 110375, - [SMALL_STATE(2810)] = 110385, - [SMALL_STATE(2811)] = 110395, - [SMALL_STATE(2812)] = 110405, - [SMALL_STATE(2813)] = 110415, - [SMALL_STATE(2814)] = 110425, - [SMALL_STATE(2815)] = 110435, - [SMALL_STATE(2816)] = 110445, - [SMALL_STATE(2817)] = 110451, - [SMALL_STATE(2818)] = 110461, - [SMALL_STATE(2819)] = 110471, - [SMALL_STATE(2820)] = 110481, - [SMALL_STATE(2821)] = 110491, - [SMALL_STATE(2822)] = 110501, - [SMALL_STATE(2823)] = 110511, - [SMALL_STATE(2824)] = 110521, - [SMALL_STATE(2825)] = 110531, - [SMALL_STATE(2826)] = 110541, - [SMALL_STATE(2827)] = 110551, - [SMALL_STATE(2828)] = 110561, - [SMALL_STATE(2829)] = 110571, - [SMALL_STATE(2830)] = 110581, - [SMALL_STATE(2831)] = 110591, - [SMALL_STATE(2832)] = 110597, - [SMALL_STATE(2833)] = 110607, - [SMALL_STATE(2834)] = 110617, - [SMALL_STATE(2835)] = 110627, - [SMALL_STATE(2836)] = 110637, - [SMALL_STATE(2837)] = 110647, - [SMALL_STATE(2838)] = 110657, - [SMALL_STATE(2839)] = 110667, - [SMALL_STATE(2840)] = 110677, - [SMALL_STATE(2841)] = 110687, - [SMALL_STATE(2842)] = 110697, - [SMALL_STATE(2843)] = 110707, - [SMALL_STATE(2844)] = 110717, - [SMALL_STATE(2845)] = 110727, - [SMALL_STATE(2846)] = 110737, - [SMALL_STATE(2847)] = 110747, - [SMALL_STATE(2848)] = 110757, - [SMALL_STATE(2849)] = 110767, - [SMALL_STATE(2850)] = 110777, - [SMALL_STATE(2851)] = 110787, - [SMALL_STATE(2852)] = 110797, - [SMALL_STATE(2853)] = 110807, - [SMALL_STATE(2854)] = 110817, - [SMALL_STATE(2855)] = 110827, - [SMALL_STATE(2856)] = 110837, - [SMALL_STATE(2857)] = 110847, - [SMALL_STATE(2858)] = 110857, - [SMALL_STATE(2859)] = 110867, - [SMALL_STATE(2860)] = 110877, - [SMALL_STATE(2861)] = 110883, - [SMALL_STATE(2862)] = 110893, - [SMALL_STATE(2863)] = 110903, - [SMALL_STATE(2864)] = 110913, - [SMALL_STATE(2865)] = 110923, - [SMALL_STATE(2866)] = 110933, - [SMALL_STATE(2867)] = 110943, - [SMALL_STATE(2868)] = 110953, - [SMALL_STATE(2869)] = 110963, - [SMALL_STATE(2870)] = 110973, - [SMALL_STATE(2871)] = 110983, - [SMALL_STATE(2872)] = 110993, - [SMALL_STATE(2873)] = 111003, - [SMALL_STATE(2874)] = 111013, - [SMALL_STATE(2875)] = 111023, - [SMALL_STATE(2876)] = 111029, - [SMALL_STATE(2877)] = 111039, - [SMALL_STATE(2878)] = 111049, - [SMALL_STATE(2879)] = 111059, - [SMALL_STATE(2880)] = 111069, - [SMALL_STATE(2881)] = 111075, - [SMALL_STATE(2882)] = 111085, - [SMALL_STATE(2883)] = 111095, - [SMALL_STATE(2884)] = 111105, - [SMALL_STATE(2885)] = 111115, - [SMALL_STATE(2886)] = 111125, - [SMALL_STATE(2887)] = 111135, - [SMALL_STATE(2888)] = 111143, - [SMALL_STATE(2889)] = 111153, - [SMALL_STATE(2890)] = 111163, - [SMALL_STATE(2891)] = 111173, - [SMALL_STATE(2892)] = 111183, - [SMALL_STATE(2893)] = 111193, - [SMALL_STATE(2894)] = 111203, - [SMALL_STATE(2895)] = 111209, - [SMALL_STATE(2896)] = 111219, - [SMALL_STATE(2897)] = 111229, - [SMALL_STATE(2898)] = 111239, - [SMALL_STATE(2899)] = 111249, - [SMALL_STATE(2900)] = 111259, - [SMALL_STATE(2901)] = 111269, - [SMALL_STATE(2902)] = 111279, - [SMALL_STATE(2903)] = 111289, - [SMALL_STATE(2904)] = 111299, - [SMALL_STATE(2905)] = 111309, - [SMALL_STATE(2906)] = 111319, - [SMALL_STATE(2907)] = 111329, - [SMALL_STATE(2908)] = 111339, - [SMALL_STATE(2909)] = 111349, - [SMALL_STATE(2910)] = 111359, - [SMALL_STATE(2911)] = 111369, - [SMALL_STATE(2912)] = 111377, - [SMALL_STATE(2913)] = 111387, - [SMALL_STATE(2914)] = 111397, - [SMALL_STATE(2915)] = 111407, - [SMALL_STATE(2916)] = 111417, - [SMALL_STATE(2917)] = 111427, - [SMALL_STATE(2918)] = 111437, - [SMALL_STATE(2919)] = 111447, - [SMALL_STATE(2920)] = 111457, - [SMALL_STATE(2921)] = 111467, - [SMALL_STATE(2922)] = 111477, - [SMALL_STATE(2923)] = 111485, - [SMALL_STATE(2924)] = 111495, - [SMALL_STATE(2925)] = 111505, - [SMALL_STATE(2926)] = 111515, - [SMALL_STATE(2927)] = 111525, - [SMALL_STATE(2928)] = 111535, - [SMALL_STATE(2929)] = 111545, - [SMALL_STATE(2930)] = 111555, - [SMALL_STATE(2931)] = 111565, - [SMALL_STATE(2932)] = 111575, - [SMALL_STATE(2933)] = 111585, - [SMALL_STATE(2934)] = 111595, - [SMALL_STATE(2935)] = 111605, - [SMALL_STATE(2936)] = 111615, - [SMALL_STATE(2937)] = 111625, - [SMALL_STATE(2938)] = 111635, - [SMALL_STATE(2939)] = 111645, - [SMALL_STATE(2940)] = 111655, - [SMALL_STATE(2941)] = 111665, - [SMALL_STATE(2942)] = 111675, - [SMALL_STATE(2943)] = 111685, - [SMALL_STATE(2944)] = 111693, - [SMALL_STATE(2945)] = 111703, - [SMALL_STATE(2946)] = 111713, - [SMALL_STATE(2947)] = 111723, - [SMALL_STATE(2948)] = 111733, - [SMALL_STATE(2949)] = 111743, - [SMALL_STATE(2950)] = 111753, - [SMALL_STATE(2951)] = 111763, - [SMALL_STATE(2952)] = 111773, - [SMALL_STATE(2953)] = 111783, - [SMALL_STATE(2954)] = 111793, - [SMALL_STATE(2955)] = 111803, - [SMALL_STATE(2956)] = 111813, - [SMALL_STATE(2957)] = 111823, - [SMALL_STATE(2958)] = 111833, - [SMALL_STATE(2959)] = 111843, - [SMALL_STATE(2960)] = 111853, - [SMALL_STATE(2961)] = 111863, - [SMALL_STATE(2962)] = 111873, - [SMALL_STATE(2963)] = 111883, - [SMALL_STATE(2964)] = 111893, - [SMALL_STATE(2965)] = 111903, - [SMALL_STATE(2966)] = 111913, - [SMALL_STATE(2967)] = 111923, - [SMALL_STATE(2968)] = 111933, - [SMALL_STATE(2969)] = 111941, - [SMALL_STATE(2970)] = 111951, - [SMALL_STATE(2971)] = 111959, - [SMALL_STATE(2972)] = 111969, - [SMALL_STATE(2973)] = 111979, - [SMALL_STATE(2974)] = 111989, - [SMALL_STATE(2975)] = 111999, - [SMALL_STATE(2976)] = 112009, - [SMALL_STATE(2977)] = 112019, - [SMALL_STATE(2978)] = 112029, - [SMALL_STATE(2979)] = 112039, - [SMALL_STATE(2980)] = 112049, - [SMALL_STATE(2981)] = 112059, - [SMALL_STATE(2982)] = 112069, - [SMALL_STATE(2983)] = 112079, - [SMALL_STATE(2984)] = 112089, - [SMALL_STATE(2985)] = 112099, - [SMALL_STATE(2986)] = 112109, - [SMALL_STATE(2987)] = 112119, - [SMALL_STATE(2988)] = 112129, - [SMALL_STATE(2989)] = 112139, - [SMALL_STATE(2990)] = 112149, - [SMALL_STATE(2991)] = 112159, - [SMALL_STATE(2992)] = 112169, - [SMALL_STATE(2993)] = 112177, - [SMALL_STATE(2994)] = 112187, - [SMALL_STATE(2995)] = 112197, - [SMALL_STATE(2996)] = 112207, - [SMALL_STATE(2997)] = 112217, - [SMALL_STATE(2998)] = 112227, - [SMALL_STATE(2999)] = 112237, - [SMALL_STATE(3000)] = 112245, - [SMALL_STATE(3001)] = 112255, - [SMALL_STATE(3002)] = 112265, - [SMALL_STATE(3003)] = 112275, - [SMALL_STATE(3004)] = 112285, - [SMALL_STATE(3005)] = 112295, - [SMALL_STATE(3006)] = 112305, - [SMALL_STATE(3007)] = 112315, - [SMALL_STATE(3008)] = 112325, - [SMALL_STATE(3009)] = 112333, - [SMALL_STATE(3010)] = 112343, - [SMALL_STATE(3011)] = 112353, - [SMALL_STATE(3012)] = 112361, - [SMALL_STATE(3013)] = 112367, - [SMALL_STATE(3014)] = 112377, - [SMALL_STATE(3015)] = 112387, - [SMALL_STATE(3016)] = 112397, - [SMALL_STATE(3017)] = 112407, - [SMALL_STATE(3018)] = 112417, - [SMALL_STATE(3019)] = 112427, - [SMALL_STATE(3020)] = 112437, - [SMALL_STATE(3021)] = 112447, - [SMALL_STATE(3022)] = 112455, - [SMALL_STATE(3023)] = 112465, - [SMALL_STATE(3024)] = 112475, - [SMALL_STATE(3025)] = 112485, - [SMALL_STATE(3026)] = 112495, - [SMALL_STATE(3027)] = 112505, - [SMALL_STATE(3028)] = 112515, - [SMALL_STATE(3029)] = 112525, - [SMALL_STATE(3030)] = 112535, - [SMALL_STATE(3031)] = 112543, - [SMALL_STATE(3032)] = 112553, - [SMALL_STATE(3033)] = 112563, - [SMALL_STATE(3034)] = 112573, - [SMALL_STATE(3035)] = 112583, - [SMALL_STATE(3036)] = 112593, - [SMALL_STATE(3037)] = 112603, - [SMALL_STATE(3038)] = 112611, - [SMALL_STATE(3039)] = 112621, - [SMALL_STATE(3040)] = 112631, - [SMALL_STATE(3041)] = 112641, - [SMALL_STATE(3042)] = 112651, - [SMALL_STATE(3043)] = 112661, - [SMALL_STATE(3044)] = 112671, - [SMALL_STATE(3045)] = 112681, - [SMALL_STATE(3046)] = 112691, - [SMALL_STATE(3047)] = 112701, - [SMALL_STATE(3048)] = 112709, - [SMALL_STATE(3049)] = 112719, - [SMALL_STATE(3050)] = 112729, - [SMALL_STATE(3051)] = 112739, - [SMALL_STATE(3052)] = 112749, - [SMALL_STATE(3053)] = 112759, - [SMALL_STATE(3054)] = 112769, - [SMALL_STATE(3055)] = 112779, - [SMALL_STATE(3056)] = 112789, - [SMALL_STATE(3057)] = 112799, - [SMALL_STATE(3058)] = 112807, - [SMALL_STATE(3059)] = 112817, - [SMALL_STATE(3060)] = 112827, - [SMALL_STATE(3061)] = 112837, - [SMALL_STATE(3062)] = 112847, - [SMALL_STATE(3063)] = 112855, - [SMALL_STATE(3064)] = 112865, - [SMALL_STATE(3065)] = 112875, - [SMALL_STATE(3066)] = 112885, - [SMALL_STATE(3067)] = 112895, - [SMALL_STATE(3068)] = 112905, - [SMALL_STATE(3069)] = 112915, - [SMALL_STATE(3070)] = 112923, - [SMALL_STATE(3071)] = 112933, - [SMALL_STATE(3072)] = 112943, - [SMALL_STATE(3073)] = 112953, - [SMALL_STATE(3074)] = 112963, - [SMALL_STATE(3075)] = 112973, - [SMALL_STATE(3076)] = 112983, - [SMALL_STATE(3077)] = 112993, - [SMALL_STATE(3078)] = 113001, - [SMALL_STATE(3079)] = 113011, - [SMALL_STATE(3080)] = 113021, - [SMALL_STATE(3081)] = 113031, - [SMALL_STATE(3082)] = 113041, - [SMALL_STATE(3083)] = 113051, - [SMALL_STATE(3084)] = 113059, - [SMALL_STATE(3085)] = 113065, - [SMALL_STATE(3086)] = 113075, - [SMALL_STATE(3087)] = 113085, - [SMALL_STATE(3088)] = 113095, - [SMALL_STATE(3089)] = 113105, - [SMALL_STATE(3090)] = 113115, - [SMALL_STATE(3091)] = 113123, - [SMALL_STATE(3092)] = 113133, - [SMALL_STATE(3093)] = 113143, - [SMALL_STATE(3094)] = 113153, - [SMALL_STATE(3095)] = 113163, - [SMALL_STATE(3096)] = 113173, - [SMALL_STATE(3097)] = 113183, - [SMALL_STATE(3098)] = 113193, - [SMALL_STATE(3099)] = 113203, - [SMALL_STATE(3100)] = 113213, - [SMALL_STATE(3101)] = 113223, - [SMALL_STATE(3102)] = 113233, - [SMALL_STATE(3103)] = 113243, - [SMALL_STATE(3104)] = 113253, - [SMALL_STATE(3105)] = 113263, - [SMALL_STATE(3106)] = 113273, - [SMALL_STATE(3107)] = 113283, - [SMALL_STATE(3108)] = 113293, - [SMALL_STATE(3109)] = 113303, - [SMALL_STATE(3110)] = 113313, - [SMALL_STATE(3111)] = 113318, - [SMALL_STATE(3112)] = 113325, - [SMALL_STATE(3113)] = 113332, - [SMALL_STATE(3114)] = 113337, - [SMALL_STATE(3115)] = 113344, - [SMALL_STATE(3116)] = 113349, - [SMALL_STATE(3117)] = 113356, - [SMALL_STATE(3118)] = 113363, - [SMALL_STATE(3119)] = 113368, - [SMALL_STATE(3120)] = 113375, - [SMALL_STATE(3121)] = 113382, - [SMALL_STATE(3122)] = 113389, - [SMALL_STATE(3123)] = 113396, - [SMALL_STATE(3124)] = 113403, - [SMALL_STATE(3125)] = 113410, - [SMALL_STATE(3126)] = 113417, - [SMALL_STATE(3127)] = 113424, - [SMALL_STATE(3128)] = 113431, - [SMALL_STATE(3129)] = 113438, - [SMALL_STATE(3130)] = 113445, - [SMALL_STATE(3131)] = 113450, - [SMALL_STATE(3132)] = 113455, - [SMALL_STATE(3133)] = 113462, - [SMALL_STATE(3134)] = 113469, - [SMALL_STATE(3135)] = 113474, - [SMALL_STATE(3136)] = 113479, - [SMALL_STATE(3137)] = 113486, - [SMALL_STATE(3138)] = 113493, - [SMALL_STATE(3139)] = 113500, - [SMALL_STATE(3140)] = 113507, - [SMALL_STATE(3141)] = 113514, - [SMALL_STATE(3142)] = 113521, - [SMALL_STATE(3143)] = 113528, - [SMALL_STATE(3144)] = 113535, - [SMALL_STATE(3145)] = 113542, - [SMALL_STATE(3146)] = 113549, - [SMALL_STATE(3147)] = 113556, - [SMALL_STATE(3148)] = 113563, - [SMALL_STATE(3149)] = 113570, - [SMALL_STATE(3150)] = 113577, - [SMALL_STATE(3151)] = 113584, - [SMALL_STATE(3152)] = 113591, - [SMALL_STATE(3153)] = 113598, - [SMALL_STATE(3154)] = 113605, - [SMALL_STATE(3155)] = 113612, - [SMALL_STATE(3156)] = 113619, - [SMALL_STATE(3157)] = 113626, - [SMALL_STATE(3158)] = 113633, - [SMALL_STATE(3159)] = 113640, - [SMALL_STATE(3160)] = 113647, - [SMALL_STATE(3161)] = 113652, - [SMALL_STATE(3162)] = 113659, - [SMALL_STATE(3163)] = 113666, - [SMALL_STATE(3164)] = 113673, - [SMALL_STATE(3165)] = 113678, - [SMALL_STATE(3166)] = 113685, - [SMALL_STATE(3167)] = 113692, - [SMALL_STATE(3168)] = 113699, - [SMALL_STATE(3169)] = 113706, - [SMALL_STATE(3170)] = 113713, - [SMALL_STATE(3171)] = 113718, - [SMALL_STATE(3172)] = 113725, - [SMALL_STATE(3173)] = 113732, - [SMALL_STATE(3174)] = 113739, - [SMALL_STATE(3175)] = 113746, - [SMALL_STATE(3176)] = 113753, - [SMALL_STATE(3177)] = 113760, - [SMALL_STATE(3178)] = 113767, - [SMALL_STATE(3179)] = 113774, - [SMALL_STATE(3180)] = 113779, - [SMALL_STATE(3181)] = 113784, - [SMALL_STATE(3182)] = 113791, - [SMALL_STATE(3183)] = 113798, - [SMALL_STATE(3184)] = 113803, - [SMALL_STATE(3185)] = 113810, - [SMALL_STATE(3186)] = 113817, - [SMALL_STATE(3187)] = 113824, - [SMALL_STATE(3188)] = 113831, - [SMALL_STATE(3189)] = 113838, - [SMALL_STATE(3190)] = 113845, - [SMALL_STATE(3191)] = 113852, - [SMALL_STATE(3192)] = 113859, - [SMALL_STATE(3193)] = 113866, - [SMALL_STATE(3194)] = 113873, - [SMALL_STATE(3195)] = 113880, - [SMALL_STATE(3196)] = 113887, - [SMALL_STATE(3197)] = 113892, - [SMALL_STATE(3198)] = 113897, - [SMALL_STATE(3199)] = 113904, - [SMALL_STATE(3200)] = 113911, - [SMALL_STATE(3201)] = 113918, - [SMALL_STATE(3202)] = 113925, - [SMALL_STATE(3203)] = 113932, - [SMALL_STATE(3204)] = 113939, - [SMALL_STATE(3205)] = 113946, - [SMALL_STATE(3206)] = 113953, - [SMALL_STATE(3207)] = 113960, - [SMALL_STATE(3208)] = 113967, - [SMALL_STATE(3209)] = 113974, - [SMALL_STATE(3210)] = 113981, - [SMALL_STATE(3211)] = 113988, - [SMALL_STATE(3212)] = 113995, - [SMALL_STATE(3213)] = 114002, - [SMALL_STATE(3214)] = 114009, - [SMALL_STATE(3215)] = 114016, - [SMALL_STATE(3216)] = 114023, - [SMALL_STATE(3217)] = 114030, - [SMALL_STATE(3218)] = 114037, - [SMALL_STATE(3219)] = 114044, - [SMALL_STATE(3220)] = 114051, - [SMALL_STATE(3221)] = 114056, - [SMALL_STATE(3222)] = 114063, - [SMALL_STATE(3223)] = 114070, - [SMALL_STATE(3224)] = 114077, - [SMALL_STATE(3225)] = 114084, - [SMALL_STATE(3226)] = 114091, - [SMALL_STATE(3227)] = 114098, - [SMALL_STATE(3228)] = 114105, - [SMALL_STATE(3229)] = 114112, - [SMALL_STATE(3230)] = 114119, - [SMALL_STATE(3231)] = 114126, - [SMALL_STATE(3232)] = 114133, - [SMALL_STATE(3233)] = 114140, - [SMALL_STATE(3234)] = 114147, - [SMALL_STATE(3235)] = 114154, - [SMALL_STATE(3236)] = 114161, - [SMALL_STATE(3237)] = 114168, - [SMALL_STATE(3238)] = 114175, - [SMALL_STATE(3239)] = 114182, - [SMALL_STATE(3240)] = 114189, - [SMALL_STATE(3241)] = 114196, - [SMALL_STATE(3242)] = 114203, - [SMALL_STATE(3243)] = 114210, - [SMALL_STATE(3244)] = 114217, - [SMALL_STATE(3245)] = 114224, - [SMALL_STATE(3246)] = 114231, - [SMALL_STATE(3247)] = 114238, - [SMALL_STATE(3248)] = 114245, - [SMALL_STATE(3249)] = 114252, - [SMALL_STATE(3250)] = 114259, - [SMALL_STATE(3251)] = 114266, - [SMALL_STATE(3252)] = 114273, - [SMALL_STATE(3253)] = 114280, - [SMALL_STATE(3254)] = 114287, - [SMALL_STATE(3255)] = 114294, - [SMALL_STATE(3256)] = 114301, - [SMALL_STATE(3257)] = 114308, - [SMALL_STATE(3258)] = 114315, - [SMALL_STATE(3259)] = 114322, - [SMALL_STATE(3260)] = 114329, - [SMALL_STATE(3261)] = 114336, - [SMALL_STATE(3262)] = 114343, - [SMALL_STATE(3263)] = 114350, - [SMALL_STATE(3264)] = 114357, - [SMALL_STATE(3265)] = 114364, - [SMALL_STATE(3266)] = 114371, - [SMALL_STATE(3267)] = 114378, - [SMALL_STATE(3268)] = 114385, - [SMALL_STATE(3269)] = 114392, - [SMALL_STATE(3270)] = 114399, - [SMALL_STATE(3271)] = 114406, - [SMALL_STATE(3272)] = 114413, - [SMALL_STATE(3273)] = 114420, - [SMALL_STATE(3274)] = 114425, - [SMALL_STATE(3275)] = 114432, - [SMALL_STATE(3276)] = 114439, - [SMALL_STATE(3277)] = 114446, - [SMALL_STATE(3278)] = 114451, - [SMALL_STATE(3279)] = 114458, - [SMALL_STATE(3280)] = 114465, - [SMALL_STATE(3281)] = 114472, - [SMALL_STATE(3282)] = 114479, - [SMALL_STATE(3283)] = 114486, - [SMALL_STATE(3284)] = 114493, - [SMALL_STATE(3285)] = 114500, - [SMALL_STATE(3286)] = 114507, - [SMALL_STATE(3287)] = 114512, - [SMALL_STATE(3288)] = 114519, - [SMALL_STATE(3289)] = 114523, - [SMALL_STATE(3290)] = 114527, - [SMALL_STATE(3291)] = 114531, - [SMALL_STATE(3292)] = 114535, - [SMALL_STATE(3293)] = 114539, - [SMALL_STATE(3294)] = 114543, - [SMALL_STATE(3295)] = 114547, - [SMALL_STATE(3296)] = 114551, - [SMALL_STATE(3297)] = 114555, - [SMALL_STATE(3298)] = 114559, - [SMALL_STATE(3299)] = 114563, - [SMALL_STATE(3300)] = 114567, - [SMALL_STATE(3301)] = 114571, - [SMALL_STATE(3302)] = 114575, - [SMALL_STATE(3303)] = 114579, - [SMALL_STATE(3304)] = 114583, - [SMALL_STATE(3305)] = 114587, - [SMALL_STATE(3306)] = 114591, - [SMALL_STATE(3307)] = 114595, - [SMALL_STATE(3308)] = 114599, - [SMALL_STATE(3309)] = 114603, - [SMALL_STATE(3310)] = 114607, - [SMALL_STATE(3311)] = 114611, - [SMALL_STATE(3312)] = 114615, - [SMALL_STATE(3313)] = 114619, - [SMALL_STATE(3314)] = 114623, - [SMALL_STATE(3315)] = 114627, - [SMALL_STATE(3316)] = 114631, - [SMALL_STATE(3317)] = 114635, - [SMALL_STATE(3318)] = 114639, - [SMALL_STATE(3319)] = 114643, - [SMALL_STATE(3320)] = 114647, - [SMALL_STATE(3321)] = 114651, - [SMALL_STATE(3322)] = 114655, - [SMALL_STATE(3323)] = 114659, - [SMALL_STATE(3324)] = 114663, - [SMALL_STATE(3325)] = 114667, - [SMALL_STATE(3326)] = 114671, - [SMALL_STATE(3327)] = 114675, - [SMALL_STATE(3328)] = 114679, - [SMALL_STATE(3329)] = 114683, - [SMALL_STATE(3330)] = 114687, - [SMALL_STATE(3331)] = 114691, - [SMALL_STATE(3332)] = 114695, - [SMALL_STATE(3333)] = 114699, - [SMALL_STATE(3334)] = 114703, - [SMALL_STATE(3335)] = 114707, - [SMALL_STATE(3336)] = 114711, - [SMALL_STATE(3337)] = 114715, - [SMALL_STATE(3338)] = 114719, - [SMALL_STATE(3339)] = 114723, - [SMALL_STATE(3340)] = 114727, - [SMALL_STATE(3341)] = 114731, - [SMALL_STATE(3342)] = 114735, - [SMALL_STATE(3343)] = 114739, - [SMALL_STATE(3344)] = 114743, - [SMALL_STATE(3345)] = 114747, - [SMALL_STATE(3346)] = 114751, - [SMALL_STATE(3347)] = 114755, - [SMALL_STATE(3348)] = 114759, - [SMALL_STATE(3349)] = 114763, - [SMALL_STATE(3350)] = 114767, - [SMALL_STATE(3351)] = 114771, - [SMALL_STATE(3352)] = 114775, - [SMALL_STATE(3353)] = 114779, - [SMALL_STATE(3354)] = 114783, - [SMALL_STATE(3355)] = 114787, - [SMALL_STATE(3356)] = 114791, - [SMALL_STATE(3357)] = 114795, - [SMALL_STATE(3358)] = 114799, - [SMALL_STATE(3359)] = 114803, - [SMALL_STATE(3360)] = 114807, - [SMALL_STATE(3361)] = 114811, - [SMALL_STATE(3362)] = 114815, - [SMALL_STATE(3363)] = 114819, - [SMALL_STATE(3364)] = 114823, - [SMALL_STATE(3365)] = 114827, - [SMALL_STATE(3366)] = 114831, - [SMALL_STATE(3367)] = 114835, - [SMALL_STATE(3368)] = 114839, - [SMALL_STATE(3369)] = 114843, - [SMALL_STATE(3370)] = 114847, - [SMALL_STATE(3371)] = 114851, - [SMALL_STATE(3372)] = 114855, - [SMALL_STATE(3373)] = 114859, - [SMALL_STATE(3374)] = 114863, - [SMALL_STATE(3375)] = 114867, - [SMALL_STATE(3376)] = 114871, - [SMALL_STATE(3377)] = 114875, - [SMALL_STATE(3378)] = 114879, - [SMALL_STATE(3379)] = 114883, - [SMALL_STATE(3380)] = 114887, - [SMALL_STATE(3381)] = 114891, - [SMALL_STATE(3382)] = 114895, - [SMALL_STATE(3383)] = 114899, - [SMALL_STATE(3384)] = 114903, - [SMALL_STATE(3385)] = 114907, - [SMALL_STATE(3386)] = 114911, - [SMALL_STATE(3387)] = 114915, - [SMALL_STATE(3388)] = 114919, - [SMALL_STATE(3389)] = 114923, - [SMALL_STATE(3390)] = 114927, - [SMALL_STATE(3391)] = 114931, - [SMALL_STATE(3392)] = 114935, - [SMALL_STATE(3393)] = 114939, - [SMALL_STATE(3394)] = 114943, - [SMALL_STATE(3395)] = 114947, - [SMALL_STATE(3396)] = 114951, - [SMALL_STATE(3397)] = 114955, - [SMALL_STATE(3398)] = 114959, - [SMALL_STATE(3399)] = 114963, - [SMALL_STATE(3400)] = 114967, - [SMALL_STATE(3401)] = 114971, - [SMALL_STATE(3402)] = 114975, - [SMALL_STATE(3403)] = 114979, - [SMALL_STATE(3404)] = 114983, - [SMALL_STATE(3405)] = 114987, - [SMALL_STATE(3406)] = 114991, - [SMALL_STATE(3407)] = 114995, - [SMALL_STATE(3408)] = 114999, - [SMALL_STATE(3409)] = 115003, - [SMALL_STATE(3410)] = 115007, - [SMALL_STATE(3411)] = 115011, - [SMALL_STATE(3412)] = 115015, - [SMALL_STATE(3413)] = 115019, - [SMALL_STATE(3414)] = 115023, - [SMALL_STATE(3415)] = 115027, - [SMALL_STATE(3416)] = 115031, - [SMALL_STATE(3417)] = 115035, - [SMALL_STATE(3418)] = 115039, - [SMALL_STATE(3419)] = 115043, - [SMALL_STATE(3420)] = 115047, - [SMALL_STATE(3421)] = 115051, - [SMALL_STATE(3422)] = 115055, - [SMALL_STATE(3423)] = 115059, - [SMALL_STATE(3424)] = 115063, - [SMALL_STATE(3425)] = 115067, - [SMALL_STATE(3426)] = 115071, - [SMALL_STATE(3427)] = 115075, - [SMALL_STATE(3428)] = 115079, - [SMALL_STATE(3429)] = 115083, - [SMALL_STATE(3430)] = 115087, - [SMALL_STATE(3431)] = 115091, - [SMALL_STATE(3432)] = 115095, - [SMALL_STATE(3433)] = 115099, - [SMALL_STATE(3434)] = 115103, - [SMALL_STATE(3435)] = 115107, - [SMALL_STATE(3436)] = 115111, - [SMALL_STATE(3437)] = 115115, - [SMALL_STATE(3438)] = 115119, - [SMALL_STATE(3439)] = 115123, - [SMALL_STATE(3440)] = 115127, - [SMALL_STATE(3441)] = 115131, - [SMALL_STATE(3442)] = 115135, - [SMALL_STATE(3443)] = 115139, - [SMALL_STATE(3444)] = 115143, - [SMALL_STATE(3445)] = 115147, - [SMALL_STATE(3446)] = 115151, - [SMALL_STATE(3447)] = 115155, - [SMALL_STATE(3448)] = 115159, - [SMALL_STATE(3449)] = 115163, - [SMALL_STATE(3450)] = 115167, - [SMALL_STATE(3451)] = 115171, - [SMALL_STATE(3452)] = 115175, - [SMALL_STATE(3453)] = 115179, - [SMALL_STATE(3454)] = 115183, - [SMALL_STATE(3455)] = 115187, - [SMALL_STATE(3456)] = 115191, - [SMALL_STATE(3457)] = 115195, - [SMALL_STATE(3458)] = 115199, - [SMALL_STATE(3459)] = 115203, - [SMALL_STATE(3460)] = 115207, - [SMALL_STATE(3461)] = 115211, - [SMALL_STATE(3462)] = 115215, - [SMALL_STATE(3463)] = 115219, - [SMALL_STATE(3464)] = 115223, - [SMALL_STATE(3465)] = 115227, - [SMALL_STATE(3466)] = 115231, - [SMALL_STATE(3467)] = 115235, - [SMALL_STATE(3468)] = 115239, - [SMALL_STATE(3469)] = 115243, - [SMALL_STATE(3470)] = 115247, - [SMALL_STATE(3471)] = 115251, - [SMALL_STATE(3472)] = 115255, - [SMALL_STATE(3473)] = 115259, - [SMALL_STATE(3474)] = 115263, - [SMALL_STATE(3475)] = 115267, - [SMALL_STATE(3476)] = 115271, - [SMALL_STATE(3477)] = 115275, - [SMALL_STATE(3478)] = 115279, - [SMALL_STATE(3479)] = 115283, - [SMALL_STATE(3480)] = 115287, - [SMALL_STATE(3481)] = 115291, - [SMALL_STATE(3482)] = 115295, - [SMALL_STATE(3483)] = 115299, - [SMALL_STATE(3484)] = 115303, - [SMALL_STATE(3485)] = 115307, - [SMALL_STATE(3486)] = 115311, - [SMALL_STATE(3487)] = 115315, - [SMALL_STATE(3488)] = 115319, - [SMALL_STATE(3489)] = 115323, - [SMALL_STATE(3490)] = 115327, - [SMALL_STATE(3491)] = 115331, - [SMALL_STATE(3492)] = 115335, - [SMALL_STATE(3493)] = 115339, - [SMALL_STATE(3494)] = 115343, - [SMALL_STATE(3495)] = 115347, - [SMALL_STATE(3496)] = 115351, - [SMALL_STATE(3497)] = 115355, - [SMALL_STATE(3498)] = 115359, - [SMALL_STATE(3499)] = 115363, - [SMALL_STATE(3500)] = 115367, - [SMALL_STATE(3501)] = 115371, - [SMALL_STATE(3502)] = 115375, - [SMALL_STATE(3503)] = 115379, - [SMALL_STATE(3504)] = 115383, - [SMALL_STATE(3505)] = 115387, - [SMALL_STATE(3506)] = 115391, - [SMALL_STATE(3507)] = 115395, - [SMALL_STATE(3508)] = 115399, - [SMALL_STATE(3509)] = 115403, - [SMALL_STATE(3510)] = 115407, - [SMALL_STATE(3511)] = 115411, - [SMALL_STATE(3512)] = 115415, - [SMALL_STATE(3513)] = 115419, - [SMALL_STATE(3514)] = 115423, - [SMALL_STATE(3515)] = 115427, - [SMALL_STATE(3516)] = 115431, - [SMALL_STATE(3517)] = 115435, - [SMALL_STATE(3518)] = 115439, - [SMALL_STATE(3519)] = 115443, - [SMALL_STATE(3520)] = 115447, - [SMALL_STATE(3521)] = 115451, - [SMALL_STATE(3522)] = 115455, - [SMALL_STATE(3523)] = 115459, - [SMALL_STATE(3524)] = 115463, - [SMALL_STATE(3525)] = 115467, - [SMALL_STATE(3526)] = 115471, - [SMALL_STATE(3527)] = 115475, - [SMALL_STATE(3528)] = 115479, - [SMALL_STATE(3529)] = 115483, - [SMALL_STATE(3530)] = 115487, - [SMALL_STATE(3531)] = 115491, - [SMALL_STATE(3532)] = 115495, - [SMALL_STATE(3533)] = 115499, - [SMALL_STATE(3534)] = 115503, - [SMALL_STATE(3535)] = 115507, - [SMALL_STATE(3536)] = 115511, - [SMALL_STATE(3537)] = 115515, - [SMALL_STATE(3538)] = 115519, - [SMALL_STATE(3539)] = 115523, - [SMALL_STATE(3540)] = 115527, - [SMALL_STATE(3541)] = 115531, - [SMALL_STATE(3542)] = 115535, - [SMALL_STATE(3543)] = 115539, - [SMALL_STATE(3544)] = 115543, - [SMALL_STATE(3545)] = 115547, - [SMALL_STATE(3546)] = 115551, - [SMALL_STATE(3547)] = 115555, - [SMALL_STATE(3548)] = 115559, - [SMALL_STATE(3549)] = 115563, - [SMALL_STATE(3550)] = 115567, - [SMALL_STATE(3551)] = 115571, - [SMALL_STATE(3552)] = 115575, - [SMALL_STATE(3553)] = 115579, - [SMALL_STATE(3554)] = 115583, - [SMALL_STATE(3555)] = 115587, - [SMALL_STATE(3556)] = 115591, - [SMALL_STATE(3557)] = 115595, - [SMALL_STATE(3558)] = 115599, - [SMALL_STATE(3559)] = 115603, - [SMALL_STATE(3560)] = 115607, - [SMALL_STATE(3561)] = 115611, - [SMALL_STATE(3562)] = 115615, - [SMALL_STATE(3563)] = 115619, - [SMALL_STATE(3564)] = 115623, - [SMALL_STATE(3565)] = 115627, - [SMALL_STATE(3566)] = 115631, - [SMALL_STATE(3567)] = 115635, - [SMALL_STATE(3568)] = 115639, - [SMALL_STATE(3569)] = 115643, - [SMALL_STATE(3570)] = 115647, - [SMALL_STATE(3571)] = 115651, - [SMALL_STATE(3572)] = 115655, - [SMALL_STATE(3573)] = 115659, - [SMALL_STATE(3574)] = 115663, - [SMALL_STATE(3575)] = 115667, - [SMALL_STATE(3576)] = 115671, - [SMALL_STATE(3577)] = 115675, - [SMALL_STATE(3578)] = 115679, - [SMALL_STATE(3579)] = 115683, - [SMALL_STATE(3580)] = 115687, - [SMALL_STATE(3581)] = 115691, - [SMALL_STATE(3582)] = 115695, - [SMALL_STATE(3583)] = 115699, - [SMALL_STATE(3584)] = 115703, - [SMALL_STATE(3585)] = 115707, - [SMALL_STATE(3586)] = 115711, - [SMALL_STATE(3587)] = 115715, - [SMALL_STATE(3588)] = 115719, - [SMALL_STATE(3589)] = 115723, - [SMALL_STATE(3590)] = 115727, - [SMALL_STATE(3591)] = 115731, - [SMALL_STATE(3592)] = 115735, - [SMALL_STATE(3593)] = 115739, - [SMALL_STATE(3594)] = 115743, - [SMALL_STATE(3595)] = 115747, - [SMALL_STATE(3596)] = 115751, - [SMALL_STATE(3597)] = 115755, - [SMALL_STATE(3598)] = 115759, - [SMALL_STATE(3599)] = 115763, - [SMALL_STATE(3600)] = 115767, - [SMALL_STATE(3601)] = 115771, - [SMALL_STATE(3602)] = 115775, - [SMALL_STATE(3603)] = 115779, - [SMALL_STATE(3604)] = 115783, - [SMALL_STATE(3605)] = 115787, - [SMALL_STATE(3606)] = 115791, - [SMALL_STATE(3607)] = 115795, - [SMALL_STATE(3608)] = 115799, - [SMALL_STATE(3609)] = 115803, - [SMALL_STATE(3610)] = 115807, - [SMALL_STATE(3611)] = 115811, - [SMALL_STATE(3612)] = 115815, - [SMALL_STATE(3613)] = 115819, - [SMALL_STATE(3614)] = 115823, - [SMALL_STATE(3615)] = 115827, - [SMALL_STATE(3616)] = 115831, - [SMALL_STATE(3617)] = 115835, - [SMALL_STATE(3618)] = 115839, - [SMALL_STATE(3619)] = 115843, - [SMALL_STATE(3620)] = 115847, - [SMALL_STATE(3621)] = 115851, - [SMALL_STATE(3622)] = 115855, - [SMALL_STATE(3623)] = 115859, - [SMALL_STATE(3624)] = 115863, - [SMALL_STATE(3625)] = 115867, - [SMALL_STATE(3626)] = 115871, - [SMALL_STATE(3627)] = 115875, - [SMALL_STATE(3628)] = 115879, - [SMALL_STATE(3629)] = 115883, - [SMALL_STATE(3630)] = 115887, - [SMALL_STATE(3631)] = 115891, - [SMALL_STATE(3632)] = 115895, - [SMALL_STATE(3633)] = 115899, - [SMALL_STATE(3634)] = 115903, - [SMALL_STATE(3635)] = 115907, - [SMALL_STATE(3636)] = 115911, - [SMALL_STATE(3637)] = 115915, - [SMALL_STATE(3638)] = 115919, - [SMALL_STATE(3639)] = 115923, - [SMALL_STATE(3640)] = 115927, - [SMALL_STATE(3641)] = 115931, - [SMALL_STATE(3642)] = 115935, - [SMALL_STATE(3643)] = 115939, - [SMALL_STATE(3644)] = 115943, - [SMALL_STATE(3645)] = 115947, - [SMALL_STATE(3646)] = 115951, - [SMALL_STATE(3647)] = 115955, - [SMALL_STATE(3648)] = 115959, - [SMALL_STATE(3649)] = 115963, - [SMALL_STATE(3650)] = 115967, - [SMALL_STATE(3651)] = 115971, - [SMALL_STATE(3652)] = 115975, - [SMALL_STATE(3653)] = 115979, - [SMALL_STATE(3654)] = 115983, - [SMALL_STATE(3655)] = 115987, - [SMALL_STATE(3656)] = 115991, - [SMALL_STATE(3657)] = 115995, - [SMALL_STATE(3658)] = 115999, - [SMALL_STATE(3659)] = 116003, - [SMALL_STATE(3660)] = 116007, - [SMALL_STATE(3661)] = 116011, - [SMALL_STATE(3662)] = 116015, - [SMALL_STATE(3663)] = 116019, - [SMALL_STATE(3664)] = 116023, - [SMALL_STATE(3665)] = 116027, - [SMALL_STATE(3666)] = 116031, - [SMALL_STATE(3667)] = 116035, - [SMALL_STATE(3668)] = 116039, - [SMALL_STATE(3669)] = 116043, - [SMALL_STATE(3670)] = 116047, - [SMALL_STATE(3671)] = 116051, - [SMALL_STATE(3672)] = 116055, - [SMALL_STATE(3673)] = 116059, - [SMALL_STATE(3674)] = 116063, - [SMALL_STATE(3675)] = 116067, - [SMALL_STATE(3676)] = 116071, - [SMALL_STATE(3677)] = 116075, - [SMALL_STATE(3678)] = 116079, - [SMALL_STATE(3679)] = 116083, - [SMALL_STATE(3680)] = 116087, - [SMALL_STATE(3681)] = 116091, - [SMALL_STATE(3682)] = 116095, - [SMALL_STATE(3683)] = 116099, - [SMALL_STATE(3684)] = 116103, - [SMALL_STATE(3685)] = 116107, - [SMALL_STATE(3686)] = 116111, - [SMALL_STATE(3687)] = 116115, - [SMALL_STATE(3688)] = 116119, - [SMALL_STATE(3689)] = 116123, - [SMALL_STATE(3690)] = 116127, - [SMALL_STATE(3691)] = 116131, - [SMALL_STATE(3692)] = 116135, - [SMALL_STATE(3693)] = 116139, - [SMALL_STATE(3694)] = 116143, - [SMALL_STATE(3695)] = 116147, - [SMALL_STATE(3696)] = 116151, - [SMALL_STATE(3697)] = 116155, - [SMALL_STATE(3698)] = 116159, - [SMALL_STATE(3699)] = 116163, - [SMALL_STATE(3700)] = 116167, - [SMALL_STATE(3701)] = 116171, - [SMALL_STATE(3702)] = 116175, - [SMALL_STATE(3703)] = 116179, - [SMALL_STATE(3704)] = 116183, - [SMALL_STATE(3705)] = 116187, - [SMALL_STATE(3706)] = 116191, - [SMALL_STATE(3707)] = 116195, - [SMALL_STATE(3708)] = 116199, - [SMALL_STATE(3709)] = 116203, - [SMALL_STATE(3710)] = 116207, - [SMALL_STATE(3711)] = 116211, - [SMALL_STATE(3712)] = 116215, - [SMALL_STATE(3713)] = 116219, - [SMALL_STATE(3714)] = 116223, - [SMALL_STATE(3715)] = 116227, - [SMALL_STATE(3716)] = 116231, - [SMALL_STATE(3717)] = 116235, - [SMALL_STATE(3718)] = 116239, - [SMALL_STATE(3719)] = 116243, - [SMALL_STATE(3720)] = 116247, - [SMALL_STATE(3721)] = 116251, - [SMALL_STATE(3722)] = 116255, - [SMALL_STATE(3723)] = 116259, - [SMALL_STATE(3724)] = 116263, - [SMALL_STATE(3725)] = 116267, - [SMALL_STATE(3726)] = 116271, - [SMALL_STATE(3727)] = 116275, - [SMALL_STATE(3728)] = 116279, - [SMALL_STATE(3729)] = 116283, - [SMALL_STATE(3730)] = 116287, - [SMALL_STATE(3731)] = 116291, - [SMALL_STATE(3732)] = 116295, - [SMALL_STATE(3733)] = 116299, - [SMALL_STATE(3734)] = 116303, - [SMALL_STATE(3735)] = 116307, - [SMALL_STATE(3736)] = 116311, - [SMALL_STATE(3737)] = 116315, - [SMALL_STATE(3738)] = 116319, - [SMALL_STATE(3739)] = 116323, - [SMALL_STATE(3740)] = 116327, - [SMALL_STATE(3741)] = 116331, - [SMALL_STATE(3742)] = 116335, - [SMALL_STATE(3743)] = 116339, - [SMALL_STATE(3744)] = 116343, - [SMALL_STATE(3745)] = 116347, - [SMALL_STATE(3746)] = 116351, - [SMALL_STATE(3747)] = 116355, - [SMALL_STATE(3748)] = 116359, - [SMALL_STATE(3749)] = 116363, - [SMALL_STATE(3750)] = 116367, - [SMALL_STATE(3751)] = 116371, - [SMALL_STATE(3752)] = 116375, - [SMALL_STATE(3753)] = 116379, - [SMALL_STATE(3754)] = 116383, - [SMALL_STATE(3755)] = 116387, - [SMALL_STATE(3756)] = 116391, - [SMALL_STATE(3757)] = 116395, - [SMALL_STATE(3758)] = 116399, - [SMALL_STATE(3759)] = 116403, - [SMALL_STATE(3760)] = 116407, - [SMALL_STATE(3761)] = 116411, - [SMALL_STATE(3762)] = 116415, - [SMALL_STATE(3763)] = 116419, - [SMALL_STATE(3764)] = 116423, - [SMALL_STATE(3765)] = 116427, - [SMALL_STATE(3766)] = 116431, - [SMALL_STATE(3767)] = 116435, - [SMALL_STATE(3768)] = 116439, - [SMALL_STATE(3769)] = 116443, - [SMALL_STATE(3770)] = 116447, - [SMALL_STATE(3771)] = 116451, - [SMALL_STATE(3772)] = 116455, - [SMALL_STATE(3773)] = 116459, - [SMALL_STATE(3774)] = 116463, - [SMALL_STATE(3775)] = 116467, - [SMALL_STATE(3776)] = 116471, - [SMALL_STATE(3777)] = 116475, - [SMALL_STATE(3778)] = 116479, - [SMALL_STATE(3779)] = 116483, - [SMALL_STATE(3780)] = 116487, - [SMALL_STATE(3781)] = 116491, - [SMALL_STATE(3782)] = 116495, - [SMALL_STATE(3783)] = 116499, - [SMALL_STATE(3784)] = 116503, - [SMALL_STATE(3785)] = 116507, - [SMALL_STATE(3786)] = 116511, - [SMALL_STATE(3787)] = 116515, - [SMALL_STATE(3788)] = 116519, - [SMALL_STATE(3789)] = 116523, - [SMALL_STATE(3790)] = 116527, - [SMALL_STATE(3791)] = 116531, - [SMALL_STATE(3792)] = 116535, - [SMALL_STATE(3793)] = 116539, - [SMALL_STATE(3794)] = 116543, - [SMALL_STATE(3795)] = 116547, - [SMALL_STATE(3796)] = 116551, - [SMALL_STATE(3797)] = 116555, - [SMALL_STATE(3798)] = 116559, - [SMALL_STATE(3799)] = 116563, - [SMALL_STATE(3800)] = 116567, - [SMALL_STATE(3801)] = 116571, - [SMALL_STATE(3802)] = 116575, - [SMALL_STATE(3803)] = 116579, - [SMALL_STATE(3804)] = 116583, - [SMALL_STATE(3805)] = 116587, - [SMALL_STATE(3806)] = 116591, - [SMALL_STATE(3807)] = 116595, - [SMALL_STATE(3808)] = 116599, - [SMALL_STATE(3809)] = 116603, - [SMALL_STATE(3810)] = 116607, - [SMALL_STATE(3811)] = 116611, - [SMALL_STATE(3812)] = 116615, - [SMALL_STATE(3813)] = 116619, - [SMALL_STATE(3814)] = 116623, - [SMALL_STATE(3815)] = 116627, - [SMALL_STATE(3816)] = 116631, - [SMALL_STATE(3817)] = 116635, - [SMALL_STATE(3818)] = 116639, - [SMALL_STATE(3819)] = 116643, - [SMALL_STATE(3820)] = 116647, - [SMALL_STATE(3821)] = 116651, - [SMALL_STATE(3822)] = 116655, - [SMALL_STATE(3823)] = 116659, - [SMALL_STATE(3824)] = 116663, - [SMALL_STATE(3825)] = 116667, - [SMALL_STATE(3826)] = 116671, - [SMALL_STATE(3827)] = 116675, - [SMALL_STATE(3828)] = 116679, - [SMALL_STATE(3829)] = 116683, - [SMALL_STATE(3830)] = 116687, - [SMALL_STATE(3831)] = 116691, - [SMALL_STATE(3832)] = 116695, - [SMALL_STATE(3833)] = 116699, - [SMALL_STATE(3834)] = 116703, - [SMALL_STATE(3835)] = 116707, - [SMALL_STATE(3836)] = 116711, - [SMALL_STATE(3837)] = 116715, - [SMALL_STATE(3838)] = 116719, - [SMALL_STATE(3839)] = 116723, - [SMALL_STATE(3840)] = 116727, - [SMALL_STATE(3841)] = 116731, - [SMALL_STATE(3842)] = 116735, - [SMALL_STATE(3843)] = 116739, - [SMALL_STATE(3844)] = 116743, - [SMALL_STATE(3845)] = 116747, - [SMALL_STATE(3846)] = 116751, - [SMALL_STATE(3847)] = 116755, - [SMALL_STATE(3848)] = 116759, - [SMALL_STATE(3849)] = 116763, - [SMALL_STATE(3850)] = 116767, - [SMALL_STATE(3851)] = 116771, - [SMALL_STATE(3852)] = 116775, - [SMALL_STATE(3853)] = 116779, - [SMALL_STATE(3854)] = 116783, - [SMALL_STATE(3855)] = 116787, - [SMALL_STATE(3856)] = 116791, - [SMALL_STATE(3857)] = 116795, - [SMALL_STATE(3858)] = 116799, - [SMALL_STATE(3859)] = 116803, - [SMALL_STATE(3860)] = 116807, - [SMALL_STATE(3861)] = 116811, - [SMALL_STATE(3862)] = 116815, - [SMALL_STATE(3863)] = 116819, - [SMALL_STATE(3864)] = 116823, - [SMALL_STATE(3865)] = 116827, - [SMALL_STATE(3866)] = 116831, - [SMALL_STATE(3867)] = 116835, - [SMALL_STATE(3868)] = 116839, - [SMALL_STATE(3869)] = 116843, - [SMALL_STATE(3870)] = 116847, - [SMALL_STATE(3871)] = 116851, - [SMALL_STATE(3872)] = 116855, - [SMALL_STATE(3873)] = 116859, - [SMALL_STATE(3874)] = 116863, - [SMALL_STATE(3875)] = 116867, - [SMALL_STATE(3876)] = 116871, - [SMALL_STATE(3877)] = 116875, - [SMALL_STATE(3878)] = 116879, - [SMALL_STATE(3879)] = 116883, - [SMALL_STATE(3880)] = 116887, - [SMALL_STATE(3881)] = 116891, - [SMALL_STATE(3882)] = 116895, - [SMALL_STATE(3883)] = 116899, - [SMALL_STATE(3884)] = 116903, - [SMALL_STATE(3885)] = 116907, - [SMALL_STATE(3886)] = 116911, - [SMALL_STATE(3887)] = 116915, - [SMALL_STATE(3888)] = 116919, - [SMALL_STATE(3889)] = 116923, - [SMALL_STATE(3890)] = 116927, - [SMALL_STATE(3891)] = 116931, - [SMALL_STATE(3892)] = 116935, - [SMALL_STATE(3893)] = 116939, - [SMALL_STATE(3894)] = 116943, - [SMALL_STATE(3895)] = 116947, - [SMALL_STATE(3896)] = 116951, - [SMALL_STATE(3897)] = 116955, - [SMALL_STATE(3898)] = 116959, - [SMALL_STATE(3899)] = 116963, - [SMALL_STATE(3900)] = 116967, - [SMALL_STATE(3901)] = 116971, - [SMALL_STATE(3902)] = 116975, - [SMALL_STATE(3903)] = 116979, - [SMALL_STATE(3904)] = 116983, - [SMALL_STATE(3905)] = 116987, - [SMALL_STATE(3906)] = 116991, - [SMALL_STATE(3907)] = 116995, - [SMALL_STATE(3908)] = 116999, - [SMALL_STATE(3909)] = 117003, - [SMALL_STATE(3910)] = 117007, - [SMALL_STATE(3911)] = 117011, - [SMALL_STATE(3912)] = 117015, - [SMALL_STATE(3913)] = 117019, - [SMALL_STATE(3914)] = 117023, - [SMALL_STATE(3915)] = 117027, - [SMALL_STATE(3916)] = 117031, - [SMALL_STATE(3917)] = 117035, - [SMALL_STATE(3918)] = 117039, - [SMALL_STATE(3919)] = 117043, - [SMALL_STATE(3920)] = 117047, - [SMALL_STATE(3921)] = 117051, - [SMALL_STATE(3922)] = 117055, - [SMALL_STATE(3923)] = 117059, - [SMALL_STATE(3924)] = 117063, - [SMALL_STATE(3925)] = 117067, - [SMALL_STATE(3926)] = 117071, - [SMALL_STATE(3927)] = 117075, - [SMALL_STATE(3928)] = 117079, - [SMALL_STATE(3929)] = 117083, - [SMALL_STATE(3930)] = 117087, - [SMALL_STATE(3931)] = 117091, - [SMALL_STATE(3932)] = 117095, - [SMALL_STATE(3933)] = 117099, - [SMALL_STATE(3934)] = 117103, - [SMALL_STATE(3935)] = 117107, - [SMALL_STATE(3936)] = 117111, - [SMALL_STATE(3937)] = 117115, - [SMALL_STATE(3938)] = 117119, - [SMALL_STATE(3939)] = 117123, - [SMALL_STATE(3940)] = 117127, - [SMALL_STATE(3941)] = 117131, - [SMALL_STATE(3942)] = 117135, - [SMALL_STATE(3943)] = 117139, - [SMALL_STATE(3944)] = 117143, - [SMALL_STATE(3945)] = 117147, - [SMALL_STATE(3946)] = 117151, - [SMALL_STATE(3947)] = 117155, - [SMALL_STATE(3948)] = 117159, - [SMALL_STATE(3949)] = 117163, - [SMALL_STATE(3950)] = 117167, - [SMALL_STATE(3951)] = 117171, - [SMALL_STATE(3952)] = 117175, - [SMALL_STATE(3953)] = 117179, - [SMALL_STATE(3954)] = 117183, - [SMALL_STATE(3955)] = 117187, - [SMALL_STATE(3956)] = 117191, - [SMALL_STATE(3957)] = 117195, - [SMALL_STATE(3958)] = 117199, - [SMALL_STATE(3959)] = 117203, - [SMALL_STATE(3960)] = 117207, - [SMALL_STATE(3961)] = 117211, - [SMALL_STATE(3962)] = 117215, - [SMALL_STATE(3963)] = 117219, - [SMALL_STATE(3964)] = 117223, - [SMALL_STATE(3965)] = 117227, - [SMALL_STATE(3966)] = 117231, - [SMALL_STATE(3967)] = 117235, - [SMALL_STATE(3968)] = 117239, - [SMALL_STATE(3969)] = 117243, - [SMALL_STATE(3970)] = 117247, - [SMALL_STATE(3971)] = 117251, - [SMALL_STATE(3972)] = 117255, - [SMALL_STATE(3973)] = 117259, - [SMALL_STATE(3974)] = 117263, - [SMALL_STATE(3975)] = 117267, - [SMALL_STATE(3976)] = 117271, - [SMALL_STATE(3977)] = 117275, - [SMALL_STATE(3978)] = 117279, - [SMALL_STATE(3979)] = 117283, - [SMALL_STATE(3980)] = 117287, - [SMALL_STATE(3981)] = 117291, - [SMALL_STATE(3982)] = 117295, - [SMALL_STATE(3983)] = 117299, - [SMALL_STATE(3984)] = 117303, - [SMALL_STATE(3985)] = 117307, - [SMALL_STATE(3986)] = 117311, - [SMALL_STATE(3987)] = 117315, - [SMALL_STATE(3988)] = 117319, - [SMALL_STATE(3989)] = 117323, - [SMALL_STATE(3990)] = 117327, - [SMALL_STATE(3991)] = 117331, - [SMALL_STATE(3992)] = 117335, - [SMALL_STATE(3993)] = 117339, - [SMALL_STATE(3994)] = 117343, - [SMALL_STATE(3995)] = 117347, - [SMALL_STATE(3996)] = 117351, - [SMALL_STATE(3997)] = 117355, - [SMALL_STATE(3998)] = 117359, - [SMALL_STATE(3999)] = 117363, - [SMALL_STATE(4000)] = 117367, - [SMALL_STATE(4001)] = 117371, - [SMALL_STATE(4002)] = 117375, - [SMALL_STATE(4003)] = 117379, - [SMALL_STATE(4004)] = 117383, - [SMALL_STATE(4005)] = 117387, - [SMALL_STATE(4006)] = 117391, - [SMALL_STATE(4007)] = 117395, - [SMALL_STATE(4008)] = 117399, - [SMALL_STATE(4009)] = 117403, - [SMALL_STATE(4010)] = 117407, - [SMALL_STATE(4011)] = 117411, - [SMALL_STATE(4012)] = 117415, - [SMALL_STATE(4013)] = 117419, - [SMALL_STATE(4014)] = 117423, - [SMALL_STATE(4015)] = 117427, - [SMALL_STATE(4016)] = 117431, - [SMALL_STATE(4017)] = 117435, - [SMALL_STATE(4018)] = 117439, - [SMALL_STATE(4019)] = 117443, - [SMALL_STATE(4020)] = 117447, - [SMALL_STATE(4021)] = 117451, - [SMALL_STATE(4022)] = 117455, - [SMALL_STATE(4023)] = 117459, - [SMALL_STATE(4024)] = 117463, - [SMALL_STATE(4025)] = 117467, - [SMALL_STATE(4026)] = 117471, - [SMALL_STATE(4027)] = 117475, - [SMALL_STATE(4028)] = 117479, - [SMALL_STATE(4029)] = 117483, - [SMALL_STATE(4030)] = 117487, - [SMALL_STATE(4031)] = 117491, - [SMALL_STATE(4032)] = 117495, - [SMALL_STATE(4033)] = 117499, - [SMALL_STATE(4034)] = 117503, - [SMALL_STATE(4035)] = 117507, - [SMALL_STATE(4036)] = 117511, - [SMALL_STATE(4037)] = 117515, - [SMALL_STATE(4038)] = 117519, - [SMALL_STATE(4039)] = 117523, - [SMALL_STATE(4040)] = 117527, - [SMALL_STATE(4041)] = 117531, - [SMALL_STATE(4042)] = 117535, - [SMALL_STATE(4043)] = 117539, - [SMALL_STATE(4044)] = 117543, - [SMALL_STATE(4045)] = 117547, - [SMALL_STATE(4046)] = 117551, - [SMALL_STATE(4047)] = 117555, - [SMALL_STATE(4048)] = 117559, - [SMALL_STATE(4049)] = 117563, - [SMALL_STATE(4050)] = 117567, - [SMALL_STATE(4051)] = 117571, - [SMALL_STATE(4052)] = 117575, - [SMALL_STATE(4053)] = 117579, - [SMALL_STATE(4054)] = 117583, - [SMALL_STATE(4055)] = 117587, - [SMALL_STATE(4056)] = 117591, - [SMALL_STATE(4057)] = 117595, - [SMALL_STATE(4058)] = 117599, - [SMALL_STATE(4059)] = 117603, - [SMALL_STATE(4060)] = 117607, - [SMALL_STATE(4061)] = 117611, - [SMALL_STATE(4062)] = 117615, - [SMALL_STATE(4063)] = 117619, - [SMALL_STATE(4064)] = 117623, - [SMALL_STATE(4065)] = 117627, - [SMALL_STATE(4066)] = 117631, - [SMALL_STATE(4067)] = 117635, + [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, }; 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(2671), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [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(3970), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [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), + [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), + [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(21), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2733), - [220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2903), - [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(321), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(193), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2790), - [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(409), - [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2562), - [303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3564), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2887), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(678), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3739), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3562), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3746), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(752), - [372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 1), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 2), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), - [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(190), - [499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(286), - [508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(288), - [514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2807), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2582), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(64), - [523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), - [529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_block_quote_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 1, 0, 0), - [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 1, 0, 0), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2733), - [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), - [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), - [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2903), - [581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(321), - [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), - [589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(193), - [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2790), - [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(409), - [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2562), - [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(74), - [634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3564), - [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2887), - [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(678), - [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3739), - [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3562), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3746), - [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(752), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 1, 0, 0), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section1, 2, 0, 0), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), - [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(487), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), - [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2583), - [747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(77), - [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), - [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), - [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(284), - [778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(286), - [784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(288), - [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2807), - [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2582), - [796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(80), - [799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), - [805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2733), - [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [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(3970), - [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), - [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2903), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(321), - [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), - [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(193), - [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2790), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(409), - [883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2562), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3564), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2887), - [907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(678), - [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3739), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3562), - [937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3746), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(752), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 2, 0, 0), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section2, 1, 0, 0), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(285), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(286), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(288), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2807), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2582), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), - [1018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [1025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), - [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(487), - [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), - [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2583), - [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), - [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), - [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 2, 0, 0), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section3, 1, 0, 0), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2733), - [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), - [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2903), - [1108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(321), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), - [1116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(272), - [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [1125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2790), - [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(409), - [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2562), - [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3564), - [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2887), - [1167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [1176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(678), - [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), - [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3739), - [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3562), - [1197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3746), - [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [1206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [1218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(752), - [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), - [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(286), - [1248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(288), - [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2807), - [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2582), - [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), - [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), - [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(487), - [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), - [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2583), - [1299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), - [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 2, 0, 0), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section4, 1, 0, 0), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2733), - [1324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), - [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), - [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [1342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2903), - [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(321), - [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), - [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [1368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [1371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2790), - [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [1380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [1383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(409), - [1386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [1389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2562), - [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [1398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [1401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3564), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2887), - [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [1413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [1422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(678), - [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), - [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3739), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [1437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3562), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3746), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [1452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [1458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(752), - [1464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(487), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), - [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2583), - [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [1503] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), - [1512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), - [1515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(287), - [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(288), - [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2807), - [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2582), - [1536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [1542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), - [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 2, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [1554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section5, 1, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [1558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2733), - [1561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [1567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), - [1573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), - [1576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [1579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [1582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [1585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2903), - [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(321), - [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), - [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2790), - [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [1617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(409), - [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [1626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2562), - [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3564), - [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2887), - [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(678), - [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), - [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3739), - [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3562), - [1674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3746), - [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [1683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(752), - [1698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), - [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [1712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(288), - [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2807), - [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2582), - [1727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [1730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), - [1736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [1741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), - [1744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(487), - [1747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [1750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), - [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2583), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [1768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), - [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 1, 0, 0), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__section6, 2, 0, 0), - [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2733), - [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [1796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), - [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), - [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [1811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(417), - [1814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2903), - [1817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(321), - [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), - [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [1828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2790), - [1831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [1834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [1837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [1840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(409), - [1843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [1846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2562), - [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(480), - [1855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(297), - [1858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2777), - [1861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3564), - [1864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2887), - [1867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [1870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [1873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [1876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [1879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [1882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(678), - [1885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), - [1888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3739), - [1891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [1894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3562), - [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3746), - [1900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [1903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [1906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [1909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [1912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [1915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [1918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(752), - [1921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2728), - [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(413), - [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2807), - [1944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2582), - [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(512), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [1953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2774), - [1956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2671), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(487), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(478), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [1971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3000), - [1974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2583), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(562), - [1980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(281), - [1983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), - [1986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 1, 0, 0), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_dot, 1, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_dot, 1, 0, 0), - [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(742), - [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3918), - [2299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3919), - [2302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2447), - [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2313), - [2308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2313), - [2311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(742), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2891), - [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3083), - [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(261), - [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(262), - [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(681), - [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(682), - [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4059), - [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(4062), - [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3908), - [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3909), - [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3354), - [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3355), - [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(866), - [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(868), - [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(319), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(869), - [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(748), - [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(871), - [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_parenthesis, 1, 0, 0), - [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_parenthesis, 1, 0, 0), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_example, 1, 0, 0), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_example, 1, 0, 0), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 1, 0, 3), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 3, 0, 0), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 4, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [2407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 2, 0, 0), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 8), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_star, 1, 0, 0), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_star, 1, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), - [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_plus_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), - [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_minus_repeat1, 2, 0, 0), SHIFT_REPEAT(422), - [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), - [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_star_repeat1, 2, 0, 0), SHIFT_REPEAT(405), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), - [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), - [2442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_dot_repeat1, 2, 0, 0), SHIFT_REPEAT(414), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_parenthesis_repeat1, 2, 0, 0), SHIFT_REPEAT(409), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), - [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__list_example_repeat1, 2, 0, 0), SHIFT_REPEAT(415), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 1, 0, 0), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_plus, 1, 0, 0), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_plus, 1, 0, 0), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_minus, 1, 0, 0), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_minus, 1, 0, 0), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 2, 0, 0), - [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 2, 0, 0), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_with_maybe_spaces, 1, 0, 0), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 3, 0, 0), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 3, 0, 0), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(306), - [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(136), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3944), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3945), - [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2461), - [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(978), - [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(978), - [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(306), - [3012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2913), - [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(1021), - [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), - [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3090), - [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(266), - [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(267), - [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(268), - [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(269), - [3035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(695), - [3038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(696), - [3041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4061), - [3044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), - [3047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3934), - [3050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), - [3053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3419), - [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3420), - [3059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(873), - [3062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(874), - [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(875), - [3068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(332), - [3071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(876), - [3074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(877), - [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(878), - [3080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(879), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 3, 0, 0), - [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 3, 0, 0), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 3, 0, 0), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 3, 0, 0), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 3, 0, 0), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 3, 0, 0), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 3, 0, 0), - [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 3, 0, 0), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 3, 0, 0), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 3, 0, 0), - [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 3, 0, 0), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 4, 0, 0), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 4, 0, 0), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 4, 0, 0), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 4, 0, 0), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 4, 0, 0), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 4, 0, 0), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 4, 0, 0), - [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 4, 0, 0), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 4, 0, 0), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 4, 0, 0), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 4, 0, 0), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 4, 0, 0), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 1, 0, 0), - [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 1, 0, 0), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 1, 0, 0), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), SHIFT_REPEAT(355), - [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), - [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 4, 0, 0), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 3, 0, 0), - [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 3, 0, 0), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 1, 0, 0), - [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 1, 0, 0), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_ref_def, 3, 0, 0), - [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_ref_def, 3, 0, 0), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_list, 1, 0, 0), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_list, 1, 0, 0), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 4, 0, 0), - [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 4, 0, 0), - [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 4, 0, 0), - [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 4, 0, 0), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_caption, 4, 0, 0), - [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_caption, 4, 0, 0), - [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 2, 0, 0), - [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 2, 0, 0), - [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 2, 0, 0), - [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 2, 0, 0), - [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 2, 0, 0), - [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 2, 0, 0), - [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 2, 0, 0), - [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 2, 0, 0), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_block_quote, 5, 0, 0), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_block_quote, 5, 0, 0), - [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 5, 0, 0), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 5, 0, 0), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 5, 0, 27), - [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 5, 0, 27), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 5, 0, 0), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 5, 0, 0), - [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 5, 0, 0), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_plus, 5, 0, 0), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_plus, 5, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_minus, 5, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_minus, 5, 0, 0), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_star, 5, 0, 0), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_star, 5, 0, 0), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_dot, 5, 0, 0), - [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_dot, 5, 0, 0), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_parenthesis, 5, 0, 0), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_example, 5, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__list_item_example, 5, 0, 0), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 6, 0, 0), - [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 6, 0, 0), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 6, 0, 27), - [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 6, 0, 27), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), - [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 6, 0, 0), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 6, 0, 0), - [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 6, 0, 0), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 7, 0, 0), - [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 7, 0, 0), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 7, 0, 27), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 7, 0, 27), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 7, 0, 0), - [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 7, 0, 0), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 8, 0, 0), - [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 8, 0, 0), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table, 8, 0, 27), - [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipe_table, 8, 0, 27), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 8, 0, 0), - [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 8, 0, 0), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), - [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 8, 0, 0), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_block, 9, 0, 0), - [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_block, 9, 0, 0), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), - [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_note_definition_fenced_block, 9, 0, 0), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_div, 9, 0, 0), - [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_div, 9, 0, 0), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 2, 0, 0), - [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 2, 0, 0), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__newline, 2, 0, 0), - [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__newline, 2, 0, 0), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 2, 0, 0), - [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 2, 0, 0), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__soft_line_break, 2, 0, 0), - [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line, 1, 0, 0), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 1, 0, 0), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__line, 2, 0, 0), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line, 2, 0, 0), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [3474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(404), - [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(161), - [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), - [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(162), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), - [3487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3892), - [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3893), - [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2454), - [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), - [3499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1247), - [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(404), - [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2869), - [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(903), - [3511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3077), - [3514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [3517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(255), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(256), - [3523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(257), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(667), - [3529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(668), - [3532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4057), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3882), - [3541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3883), - [3544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3289), - [3547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3290), - [3550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [3553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(859), - [3556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [3559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(343), - [3562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [3565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(862), - [3568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(863), - [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(864), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_star, 1, 0, 0), - [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_star, 1, 0, 0), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_parenthesis, 1, 0, 0), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_dot, 1, 0, 0), - [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_dot, 1, 0, 0), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_example, 1, 0, 0), - [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_example, 1, 0, 0), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_horizontal_rule, 2, 0, 0), - [3616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_horizontal_rule, 2, 0, 0), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(421), - [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [3631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3970), - [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3990), - [3637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2459), - [3640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [3643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1061), - [3646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(421), - [3649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2903), - [3652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(902), - [3655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2887), - [3658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(282), - [3661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(293), - [3664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(294), - [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(289), - [3670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [3673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(678), - [3676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), - [3679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3739), - [3682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [3685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3562), - [3688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3746), - [3691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [3694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(750), - [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(756), - [3700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(757), - [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(752), - [3712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_minus, 1, 0, 0), - [3720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_minus, 1, 0, 0), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_marker_plus, 1, 0, 0), - [3724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_marker_plus, 1, 0, 0), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 1), - [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section1_repeat1, 1, 0, 1), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 1), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section2_repeat1, 1, 0, 1), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 1), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section3_repeat1, 1, 0, 1), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 1), - [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section4_repeat1, 1, 0, 1), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [3818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 1), - [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__section5_repeat1, 1, 0, 1), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_paragraph, 2, 0, 0), - [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_paragraph, 2, 0, 0), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [3848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_document_repeat1, 1, 0, 0), - [3850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading1, 3, 0, 0), - [3852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading1, 3, 0, 0), - [3854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading2, 3, 0, 0), - [3856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading2, 3, 0, 0), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading3, 3, 0, 0), - [3860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading3, 3, 0, 0), - [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading4, 3, 0, 0), - [3864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading4, 3, 0, 0), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading5, 3, 0, 0), - [3868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading5, 3, 0, 0), - [3870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading6, 3, 0, 0), - [3872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__atx_heading6, 3, 0, 0), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(520), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [3887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3632), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3633), - [3893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2460), - [3896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2025), - [3902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(520), - [3905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2837), - [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(905), - [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2992), - [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [3920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(197), - [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(731), - [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(649), - [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4037), - [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4038), - [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3621), - [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3622), - [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3712), - [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3715), - [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(778), - [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(779), - [3956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(780), - [3959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(334), - [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(782), - [3968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(784), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [4116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(560), - [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [4122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [4125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3658), - [4128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3659), - [4131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2443), - [4134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2115), - [4137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2115), - [4140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(560), - [4143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2850), - [4146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(899), - [4149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2999), - [4152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [4158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [4164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(713), - [4167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(716), - [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4039), - [4173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4040), - [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3648), - [4179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3649), - [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3784), - [4185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3792), - [4188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(786), - [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(787), - [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(788), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(335), - [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [4203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(791), - [4209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(792), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [4284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(575), - [4287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [4290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [4293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), - [4296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), - [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2448), - [4302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2202), - [4305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2202), - [4308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(575), - [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3074), - [4314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(896), - [4317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [4323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(669), - [4335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(670), - [4338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4041), - [4341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4042), - [4344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3674), - [4347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), - [4350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), - [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3551), - [4356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(794), - [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(795), - [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(796), - [4365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(336), - [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(798), - [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(799), - [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(800), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(578), - [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(147), - [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(148), - [4457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3710), - [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3711), - [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2445), - [4466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2130), - [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2130), - [4472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(578), - [4475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2823), - [4478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(894), - [4481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3021), - [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [4487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [4490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(214), - [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [4496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(714), - [4499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(715), - [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4043), - [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4044), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3700), - [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), - [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3766), - [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3767), - [4520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(802), - [4523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(803), - [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(804), - [4529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(299), - [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(805), - [4535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(806), - [4538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(807), - [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(808), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [4612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(589), - [4615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(149), - [4618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(150), - [4621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3736), - [4624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3737), - [4627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2453), - [4630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1975), - [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1975), - [4636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(589), - [4639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2890), - [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(900), - [4645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3030), - [4648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [4651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [4657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(699), - [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(648), - [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4045), - [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4046), - [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3726), - [4675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3727), - [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3292), - [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3293), - [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(810), - [4687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(811), - [4690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(812), - [4693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(337), - [4696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(813), - [4699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [4702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [4718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(592), - [4721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [4724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [4727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3762), - [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3763), - [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2457), - [4736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), - [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1720), - [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(592), - [4745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2980), - [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(906), - [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3037), - [4754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [4757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(226), - [4763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(227), - [4766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(675), - [4769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(676), - [4772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4047), - [4775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4048), - [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3752), - [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3753), - [4784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3464), - [4787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3465), - [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [4793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(819), - [4796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(820), - [4799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(338), - [4802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(821), - [4805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(822), - [4808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [4814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(593), - [4817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(138), - [4820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [4823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3514), - [4826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3515), - [4829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2446), - [4832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(1846), - [4835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(1846), - [4838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(593), - [4841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2926), - [4844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(1937), - [4847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2943), - [4850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(264), - [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(198), - [4856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [4862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(720), - [4865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(722), - [4868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4033), - [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4034), - [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3503), - [4877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3504), - [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3434), - [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3448), - [4886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(763), - [4889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(765), - [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(331), - [4898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(767), - [4904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(880), - [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(768), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [4978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [4981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(153), - [4984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(154), - [4987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3788), - [4990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3789), - [4993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2462), - [4996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), - [4999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1865), - [5002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [5005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3066), - [5008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(898), - [5011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3047), - [5014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [5017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [5020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [5023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [5026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(697), - [5029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(647), - [5032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4049), - [5035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3288), - [5038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3778), - [5041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3779), - [5044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3579), - [5047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3580), - [5050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(826), - [5053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [5056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(828), - [5059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [5062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(830), - [5068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [5071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(832), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(602), - [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(140), - [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [5087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3577), - [5090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3578), - [5093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2451), - [5096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), - [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), - [5102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(602), - [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3049), - [5108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(904), - [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), - [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [5120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(253), - [5123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(258), - [5126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(693), - [5129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(694), - [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4035), - [5135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4036), - [5138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3566), - [5141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3567), - [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3764), - [5147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3765), - [5150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(770), - [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(771), - [5156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(772), - [5159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(333), - [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(773), - [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(774), - [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(775), - [5171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(776), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [5242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(605), - [5245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [5248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(156), - [5251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3814), - [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3815), - [5257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2456), - [5260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2083), - [5263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2083), - [5266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(605), - [5269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2795), - [5272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(895), - [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3057), - [5278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(236), - [5281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(237), - [5284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(239), - [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(718), - [5293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(719), - [5296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4051), - [5299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4052), - [5302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3804), - [5305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3805), - [5308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3670), - [5311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3671), - [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(834), - [5317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(835), - [5320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(836), - [5323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(340), - [5326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(837), - [5329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [5332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(839), - [5335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [5406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(608), - [5409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [5412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(158), - [5415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3840), - [5418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3841), - [5421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2444), - [5424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), - [5427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1530), - [5430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(608), - [5433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2822), - [5436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(897), - [5439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3062), - [5442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(242), - [5445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(243), - [5448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(244), - [5451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(245), - [5454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(740), - [5457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(741), - [5460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4053), - [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), - [5466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3830), - [5469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3831), - [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3773), - [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3774), - [5478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(842), - [5481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(843), - [5484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(844), - [5487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(341), - [5490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(845), - [5493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(846), - [5496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(847), - [5499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(848), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [5570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [5573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(159), - [5576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(160), - [5579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3866), - [5582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3867), - [5585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2458), - [5588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1621), - [5591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(1621), - [5594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(612), - [5597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(2846), - [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(901), - [5603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3069), - [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(248), - [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(250), - [5615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(251), - [5618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(653), - [5621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(654), - [5624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4055), - [5627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), - [5630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3856), - [5633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3857), - [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3897), - [5639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(3898), - [5642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [5645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(851), - [5648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(852), - [5651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(342), - [5654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [5657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(854), - [5660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(855), - [5663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 0), SHIFT_REPEAT(856), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(665), - [5713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [5716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [5719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3918), - [5722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3919), - [5725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2447), - [5728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2313), - [5731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2313), - [5734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(665), - [5737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2891), - [5740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(2305), - [5743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3083), - [5746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [5749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(261), - [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(262), - [5755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [5758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(681), - [5761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(682), - [5764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4059), - [5767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(4062), - [5770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3908), - [5773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3909), - [5776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3354), - [5779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(3355), - [5782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(866), - [5785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(867), - [5788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(868), - [5791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(319), - [5794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(869), - [5797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(748), - [5800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [5803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 2, 0, 0), SHIFT_REPEAT(871), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [6046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), - [6048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 1, 0, 0), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 13), - [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 13), - [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 21), - [6058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 21), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 15), - [6062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 15), - [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 2, 0, 6), - [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 2, 0, 6), - [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 3, 0, 0), - [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 3, 0, 0), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 2, 0, 0), - [6078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 2, 0, 0), - [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 2, 0, 0), - [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 2, 0, 0), - [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 23), - [6086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 23), - [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_span, 3, 0, 9), - [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_span, 3, 0, 9), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [6094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 4, 0, 21), - [6096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 4, 0, 21), - [6098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 22), - [6100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 22), - [6102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 3, 0, 9), - [6104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 3, 0, 9), - [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 3, 0, 0), - [6108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 3, 0, 0), - [6110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 2, 0, 4), - [6112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 2, 0, 4), - [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 10), - [6116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 10), - [6118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 11), - [6120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 11), - [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 9), - [6124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 9), - [6126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 3, 0, 0), - [6128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 3, 0, 0), - [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 12), - [6132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 12), - [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 3, 0, 9), - [6136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 3, 0, 9), - [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 4, 0, 21), - [6140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 21), - [6142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 14), - [6144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 14), - [6146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 20), - [6148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 20), - [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), - [6152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pipe_table_newline, 2, 0, 0), - [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 2, 0, 0), - [6156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 2, 0, 0), - [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 2, 0, 5), - [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 2, 0, 5), - [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 5, 0, 23), - [6164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 5, 0, 23), - [6166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), - [6168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 5, 0, 0), - [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 14), - [6172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 14), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 5, 0, 0), - [6176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 5, 0, 0), - [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 4, 0, 30), - [6180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 4, 0, 30), - [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 5, 0, 21), - [6184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 5, 0, 21), - [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_line_break, 2, 0, 0), - [6188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_line_break, 2, 0, 0), - [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 5, 0, 21), - [6192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 5, 0, 21), - [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), - [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 6, 0, 0), - [6198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 5, 0, 33), - [6200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 5, 0, 33), - [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), - [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode_escaped, 7, 0, 0), - [6206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 6, 0, 35), - [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 6, 0, 35), - [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 2, 0, 0), - [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 2, 0, 0), - [6214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 2, 0, 0), - [6216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 2, 0, 0), - [6218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 0), - [6220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 0), - [6222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_single_quote, 3, 0, 9), - [6224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_single_quote, 3, 0, 9), - [6226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 18), - [6228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pandoc_attr_specifier, 3, 0, 18), - [6230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 0), - [6232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 0), - [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_specifier, 3, 0, 18), - [6236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_specifier, 3, 0, 18), - [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 4, 0, 15), - [6240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 4, 0, 15), - [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 4, 0, 0), - [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 4, 0, 0), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 5, 0, 0), - [6250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 5, 0, 0), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 6, 0, 0), - [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 6, 0, 0), - [6256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_double_quote, 3, 0, 9), - [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_double_quote, 3, 0, 9), - [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode, 7, 0, 0), - [6262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shortcode, 7, 0, 0), - [6264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_target, 3, 0, 24), - [6266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_target, 3, 0, 24), - [6268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 4, 0, 9), - [6270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 4, 0, 9), - [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_span, 4, 0, 0), - [6274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_span, 4, 0, 0), - [6276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 4, 0, 9), - [6278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 9), - [6280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_str, 1, 0, 0), - [6282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_str, 1, 0, 0), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 3, 0, 4), - [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 3, 0, 4), - [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 12), - [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 12), - [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_math, 3, 0, 0), - [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_math, 3, 0, 0), - [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 16), - [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 16), - [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_display_math, 3, 0, 0), - [6304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_display_math, 3, 0, 0), - [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_image, 4, 0, 0), - [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_image, 4, 0, 0), - [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 4, 0, 13), - [6312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 4, 0, 13), - [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_single_quote, 2, 0, 0), - [6316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_single_quote, 2, 0, 0), - [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 3, 0, 17), - [6320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 3, 0, 17), - [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_code_span, 4, 0, 9), - [6324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_code_span, 4, 0, 9), - [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 10), - [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 10), - [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_double_quote, 2, 0, 0), - [6332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_double_quote, 2, 0, 0), - [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_edit_comment, 3, 0, 6), - [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_edit_comment, 3, 0, 6), - [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 4, 0, 11), - [6340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 4, 0, 11), - [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 0), - [6344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 0), - [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_strikeout, 3, 0, 0), - [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_strikeout, 3, 0, 0), - [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 9), - [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 9), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [6356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_highlight, 5, 0, 20), - [6358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_highlight, 5, 0, 20), - [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_subscript, 3, 0, 0), - [6362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_subscript, 3, 0, 0), - [6364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_with_maybe_spaces_repeat1, 1, 0, 3), - [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4, 0, 0), - [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4, 0, 0), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_superscript, 3, 0, 0), - [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_superscript, 3, 0, 0), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inline_note, 3, 0, 0), - [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inline_note, 3, 0, 0), - [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_strong, 3, 0, 0), - [6382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_strong, 3, 0, 0), - [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 5, 0, 21), - [6386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 5, 0, 21), - [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_citation, 2, 0, 7), - [6390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_citation, 2, 0, 7), - [6392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pandoc_emph, 3, 0, 0), - [6394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pandoc_emph, 3, 0, 0), - [6396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 5, 0, 22), - [6398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 5, 0, 22), - [6400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete, 3, 0, 5), - [6402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delete, 3, 0, 5), - [6404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 8), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [6410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), - [6412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 3, 0, 0), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__line_repeat1, 2, 0, 3), - [6438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__line_repeat1, 2, 0, 3), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), - [6444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 4, 0, 0), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_table_row_repeat1, 2, 0, 0), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), - [6478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(241), - [6481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(271), - [6484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(234), - [6487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(217), - [6490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(222), - [6493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_document_repeat2, 2, 0, 0), SHIFT_REPEAT(223), - [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 0), - [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 3, 0, 2), - [6500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_document, 2, 0, 1), - [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [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(1666), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [6840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 1, 0, 0), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [6940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(3256), - [6943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2626), - [6946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), SHIFT_REPEAT(2734), - [6949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 2, 0, 0), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [6953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 2, 0, 0), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [6961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 3, 0, 0), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 26), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [6989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 1, 0, 0), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [6993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 1, 0, 0), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [7017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 2, 0, 0), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [7029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), - [7031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(2523), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), - [7046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(3181), - [7049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(2675), - [7052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_kv_repeat1, 2, 0, 0), SHIFT_REPEAT(2631), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [7095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 4, 0, 0), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [7099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), SHIFT_REPEAT(2655), - [7102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), - [7104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 2, 0, 0), SHIFT_REPEAT(4060), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [7117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 2, 0, 0), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), - [7127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2554), - [7130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2554), - [7133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_double_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4065), - [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), - [7138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), SHIFT_REPEAT(3943), - [7141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_specifier_start_with_class_repeat1, 2, 0, 0), SHIFT_REPEAT(2538), - [7144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 3, 0, 0), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [7148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 1, 0, 0), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 2, 0, 0), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [7166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(2565), - [7169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), SHIFT_REPEAT(2623), - [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_code_fence_content_repeat1, 2, 0, 0), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [7210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_code_fence_content, 1, 0, 0), - [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 3, 0, 0), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [7216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), - [7218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2576), - [7221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2576), - [7224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__commonmark_single_quote_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4064), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_row_repeat1, 4, 0, 0), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 4, 0, 0), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [7267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), - [7269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [7300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), - [7302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_repeat1, 2, 0, 0), SHIFT_REPEAT(914), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_kv, 3, 0, 0), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 2, 0, 28), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [7349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 5, 0, 0), - [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inlines, 1, 0, 0), - [7353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inlines, 1, 0, 0), - [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_cell, 3, 0, 32), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [7363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [7365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inlines, 2, 0, 0), - [7367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inlines, 2, 0, 0), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [7371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 5, 0, 0), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [7375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [7379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [7393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [7395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 0), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 1, 0, 0), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [7407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [7411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [7413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_cell, 1, 0, 0), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [7417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [7421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_target_repeat1, 1, 0, 0), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [7483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_table_delimiter_cell_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3916), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [7514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_single_quote_string, 3, 0, 0), - [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_double_quote_string, 3, 0, 0), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [7520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 5, 0, 34), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [7530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 2, 0, 0), SHIFT_REPEAT(2880), - [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 2, 0, 0), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 3, 0, 25), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [7561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_single_quote_string, 4, 0, 0), - [7563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_row, 6, 0, 0), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_double_quote_string, 4, 0, 0), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_table_delimiter_row, 6, 0, 0), - [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_key_value_specifier, 4, 0, 31), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 19), - [7645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inlines_repeat1, 2, 0, 19), - [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [7701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [7761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [7763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [7777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [7779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [7783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [7785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pandoc_code_span_repeat1, 1, 0, 0), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [7795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [7805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 4, 0, 0), - [7811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [7813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [7821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [7853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [7855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [7897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [7997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [7999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [8079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__commonmark_specifier_start_with_class, 3, 0, 0), - [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 3, 0, 0), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [8257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_repeat1, 2, 0, 0), SHIFT_REPEAT(3278), - [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__atx_heading_content, 2, 0, 0), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [8312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), SHIFT_REPEAT(2455), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [8375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), SHIFT_REPEAT(3269), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [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(985), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [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(1105), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 1, 0, 0), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [8614] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [8632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_language_specifier, 3, 0, 0), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [8708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 3, 0, 25), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [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(2201), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [8996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__list_item_content, 4, 0, 0), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [9002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 4, 0, 31), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [9006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blank_line, 2, 0, 0), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [9042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_key_value_specifier, 5, 0, 34), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_repeat1, 2, 0, 0), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [9230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unnumbered_specifier, 1, 0, 0), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [9268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 29), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [9314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__shortcode_value, 1, 0, 0), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [9394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_naked_string, 1, 0, 0), - [9396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat2, 2, 0, 0), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [9400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shortcode_string, 1, 0, 0), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [9458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shortcode_escaped_repeat1, 2, 0, 0), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [9600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_commonmark_specifier, 5, 0, 0), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [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), }; enum ts_external_scanner_symbol_identifiers { @@ -181706,6 +179514,7 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token_inline_note_reference = 79, ts_external_token_html_element = 80, ts_external_token__pipe_table_delimiter = 81, + ts_external_token__pandoc_line_break = 82, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -181791,9 +179600,10 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_inline_note_reference] = sym_inline_note_reference, [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, }; -static const bool ts_external_scanner_states[105][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[92][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, @@ -181877,6 +179687,7 @@ static const bool ts_external_scanner_states[105][EXTERNAL_TOKEN_COUNT] = { [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, }, [2] = { [ts_external_token__line_ending] = true, @@ -181931,6 +179742,7 @@ static const bool ts_external_scanner_states[105][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__pandoc_line_break] = true, }, [3] = { [ts_external_token__line_ending] = true, @@ -181987,6 +179799,7 @@ static const bool ts_external_scanner_states[105][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__pandoc_line_break] = true, }, [4] = { [ts_external_token__line_ending] = true, @@ -182042,6 +179855,7 @@ static const bool ts_external_scanner_states[105][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__pandoc_line_break] = true, }, [5] = { [ts_external_token__line_ending] = true, @@ -182098,322 +179912,9 @@ static const bool ts_external_scanner_states[105][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__pandoc_line_break] = true, }, - [6] = { - [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_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, - }, - [7] = { - [ts_external_token__line_ending] = true, - [ts_external_token__soft_line_ending] = true, - [ts_external_token__block_close] = 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_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, - }, - [8] = { - [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, - [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, - }, - [9] = { - [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__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, - }, - [10] = { - [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, - [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, - }, - [11] = { - [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, - [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, - }, - [12] = { - [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, - }, - [13] = { - [ts_external_token__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__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, - }, - [14] = { - [ts_external_token__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__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, - }, - [15] = { + [6] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, [ts_external_token__block_close] = true, @@ -182442,7 +179943,6 @@ static const bool ts_external_scanner_states[105][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, @@ -182469,11 +179969,12 @@ static const bool ts_external_scanner_states[105][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__pandoc_line_break] = true, }, - [16] = { + [7] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, + [ts_external_token__block_close] = true, [ts_external_token__block_quote_start] = true, [ts_external_token_atx_h1_marker] = true, [ts_external_token_atx_h2_marker] = true, @@ -182524,38 +180025,12 @@ static const bool ts_external_scanner_states[105][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__pandoc_line_break] = true, }, - [17] = { - [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, - }, - [18] = { + [8] = { [ts_external_token__line_ending] = true, - [ts_external_token__soft_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, @@ -182581,66 +180056,10 @@ static const bool ts_external_scanner_states[105][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, }, - [19] = { - [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__single_quote_span_close] = 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, - }, - [20] = { - [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, - }, - [21] = { + [9] = { [ts_external_token__soft_line_ending] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, @@ -182658,7 +180077,6 @@ static const bool ts_external_scanner_states[105][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, @@ -182668,9 +180086,12 @@ static const bool ts_external_scanner_states[105][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__pandoc_line_break] = true, }, - [22] = { - [ts_external_token__soft_line_ending] = true, + [10] = { + [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, @@ -182688,7 +180109,6 @@ static const bool ts_external_scanner_states[105][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, @@ -182697,9 +180117,9 @@ static const bool ts_external_scanner_states[105][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__pandoc_line_break] = true, }, - [23] = { - [ts_external_token__soft_line_ending] = true, + [11] = { [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -182718,7 +180138,6 @@ static const bool ts_external_scanner_states[105][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, @@ -182726,9 +180145,12 @@ static const bool ts_external_scanner_states[105][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, }, - [24] = { - [ts_external_token__soft_line_ending] = true, + [12] = { + [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, @@ -182749,15 +180171,44 @@ static const bool ts_external_scanner_states[105][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, [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, + [ts_external_token__pandoc_line_break] = true, }, - [25] = { + [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, @@ -182779,14 +180230,41 @@ static const bool ts_external_scanner_states[105][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, }, - [26] = { + [14] = { + [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = 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_ref_id_specifier] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -182809,13 +180287,13 @@ static const bool ts_external_scanner_states[105][EXTERNAL_TOKEN_COUNT] = { [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_close_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, }, - [27] = { - [ts_external_token__soft_line_ending] = true, + [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, @@ -182839,11 +180317,13 @@ static const bool ts_external_scanner_states[105][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__pipe_table_delimiter] = true, + [ts_external_token__pandoc_line_break] = true, }, - [28] = { + [16] = { + [ts_external_token__line_ending] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -182853,7 +180333,6 @@ static const bool ts_external_scanner_states[105][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, @@ -182870,8 +180349,9 @@ static const bool ts_external_scanner_states[105][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__pandoc_line_break] = true, }, - [29] = { + [17] = { [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -182880,7 +180360,6 @@ static const bool ts_external_scanner_states[105][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__shortcode_open_escaped] = true, [ts_external_token__shortcode_open] = true, @@ -182898,12 +180377,12 @@ static const bool ts_external_scanner_states[105][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__pandoc_line_break] = true, }, - [30] = { + [18] = { [ts_external_token__line_ending] = true, - [ts_external_token_block_continuation] = true, + [ts_external_token__soft_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, @@ -182929,11 +180408,10 @@ static const bool ts_external_scanner_states[105][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, }, - [31] = { + [19] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -182954,17 +180432,16 @@ static const bool ts_external_scanner_states[105][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, [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, + [ts_external_token__pandoc_line_break] = true, }, - [32] = { - [ts_external_token__line_ending] = true, + [20] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, - [ts_external_token__eof] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -182986,14 +180463,15 @@ static const bool ts_external_scanner_states[105][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, }, - [33] = { + [21] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -183002,7 +180480,6 @@ static const bool ts_external_scanner_states[105][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__shortcode_open_escaped] = true, [ts_external_token__shortcode_open] = true, @@ -183017,13 +180494,14 @@ static const bool ts_external_scanner_states[105][EXTERNAL_TOKEN_COUNT] = { [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_close_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, }, - [34] = { + [22] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -183032,8 +180510,8 @@ static const bool ts_external_scanner_states[105][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, @@ -183050,10 +180528,10 @@ static const bool ts_external_scanner_states[105][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__pandoc_line_break] = true, }, - [35] = { + [23] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -183070,7 +180548,6 @@ static const bool ts_external_scanner_states[105][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, @@ -183078,12 +180555,13 @@ static const bool ts_external_scanner_states[105][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, }, - [36] = { + [24] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -183093,6 +180571,7 @@ static const bool ts_external_scanner_states[105][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, @@ -183101,7 +180580,6 @@ static const bool ts_external_scanner_states[105][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, @@ -183110,10 +180588,10 @@ static const bool ts_external_scanner_states[105][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__pandoc_line_break] = true, }, - [37] = { + [25] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -183130,9 +180608,9 @@ static const bool ts_external_scanner_states[105][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__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, @@ -183140,10 +180618,10 @@ static const bool ts_external_scanner_states[105][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__pandoc_line_break] = true, }, - [38] = { + [26] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -183161,19 +180639,19 @@ static const bool ts_external_scanner_states[105][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, [ts_external_token_inline_note_reference] = true, [ts_external_token_html_element] = true, + [ts_external_token__pandoc_line_break] = true, }, - [39] = { + [27] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -183192,18 +180670,17 @@ static const bool ts_external_scanner_states[105][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, [ts_external_token_html_element] = true, + [ts_external_token__pandoc_line_break] = true, }, - [40] = { - [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, + [28] = { [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -183212,6 +180689,7 @@ static const bool ts_external_scanner_states[105][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__shortcode_open_escaped] = true, [ts_external_token__shortcode_open] = true, @@ -183226,14 +180704,12 @@ static const bool ts_external_scanner_states[105][EXTERNAL_TOKEN_COUNT] = { [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_close_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, }, - [41] = { - [ts_external_token__soft_line_ending] = true, - [ts_external_token_block_continuation] = true, + [29] = { [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, [ts_external_token__autolink] = true, @@ -183243,6 +180719,7 @@ static const bool ts_external_scanner_states[105][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, @@ -183257,13 +180734,15 @@ static const bool ts_external_scanner_states[105][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, }, - [42] = { + [30] = { [ts_external_token__line_ending] = true, [ts_external_token_block_continuation] = 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, @@ -183290,37 +180769,9 @@ static const bool ts_external_scanner_states[105][EXTERNAL_TOKEN_COUNT] = { [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, }, - [43] = { - [ts_external_token_block_continuation] = 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__pipe_table_delimiter] = true, - }, - [44] = { + [31] = { [ts_external_token_block_continuation] = true, [ts_external_token__code_span_start] = true, [ts_external_token__html_comment] = true, @@ -183347,8 +180798,9 @@ static const bool ts_external_scanner_states[105][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__pandoc_line_break] = true, }, - [45] = { + [32] = { [ts_external_token_atx_h1_marker] = true, [ts_external_token_atx_h2_marker] = true, [ts_external_token_atx_h3_marker] = true, @@ -183356,237 +180808,237 @@ static const bool ts_external_scanner_states[105][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_atx_h5_marker] = true, [ts_external_token_atx_h6_marker] = true, }, - [46] = { + [33] = { [ts_external_token__soft_line_ending] = true, [ts_external_token__language_specifier_token] = true, [ts_external_token__shortcode_open] = true, }, - [47] = { + [34] = { [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, }, - [48] = { + [35] = { [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, }, - [49] = { + [36] = { [ts_external_token__soft_line_ending] = true, [ts_external_token_raw_specifier] = true, [ts_external_token__language_specifier_token] = true, [ts_external_token__key_specifier_token] = true, }, - [50] = { + [37] = { [ts_external_token__soft_line_ending] = true, [ts_external_token__key_specifier_token] = true, }, - [51] = { + [38] = { [ts_external_token__language_specifier_token] = true, [ts_external_token__shortcode_open] = true, }, - [52] = { + [39] = { [ts_external_token__soft_line_ending] = true, [ts_external_token__value_specifier_token] = true, }, - [53] = { + [40] = { [ts_external_token__soft_line_ending] = true, [ts_external_token__shortcode_open] = true, }, - [54] = { + [41] = { [ts_external_token__line_ending] = true, [ts_external_token__eof] = true, [ts_external_token__pipe_table_line_ending] = true, }, - [55] = { + [42] = { [ts_external_token_block_continuation] = true, [ts_external_token__language_specifier_token] = true, [ts_external_token__shortcode_open] = true, }, - [56] = { + [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, }, - [57] = { + [44] = { [ts_external_token__pipe_table_delimiter] = true, }, - [58] = { + [45] = { [ts_external_token__line_ending] = true, [ts_external_token__block_close] = true, [ts_external_token__fenced_code_block_end_backtick] = true, }, - [59] = { + [46] = { [ts_external_token__value_specifier_token] = true, }, - [60] = { + [47] = { [ts_external_token_block_continuation] = true, }, - [61] = { - [ts_external_token__soft_line_ending] = true, + [48] = { + [ts_external_token__line_ending] = true, }, - [62] = { + [49] = { [ts_external_token__shortcode_open] = true, }, - [63] = { - [ts_external_token__key_specifier_token] = true, + [50] = { + [ts_external_token_block_continuation] = true, + [ts_external_token__value_specifier_token] = true, }, - [64] = { - [ts_external_token__line_ending] = true, + [51] = { + [ts_external_token__soft_line_ending] = true, }, - [65] = { + [52] = { + [ts_external_token__key_specifier_token] = true, + }, + [53] = { + [ts_external_token__soft_line_ending] = true, [ts_external_token_block_continuation] = true, - [ts_external_token__value_specifier_token] = true, + [ts_external_token__key_specifier_token] = true, }, - [66] = { + [54] = { [ts_external_token__line_ending] = true, [ts_external_token__soft_line_ending] = true, [ts_external_token__eof] = true, }, - [67] = { - [ts_external_token__soft_line_ending] = true, + [55] = { [ts_external_token_block_continuation] = true, - [ts_external_token__key_specifier_token] = true, + [ts_external_token__pipe_table_delimiter] = true, }, - [68] = { + [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, }, - [69] = { - [ts_external_token_block_continuation] = true, - [ts_external_token__pipe_table_delimiter] = true, + [57] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__strong_emphasis_close_star] = true, }, - [70] = { - [ts_external_token_fenced_div_note_id] = true, + [58] = { + [ts_external_token__soft_line_ending] = true, + [ts_external_token__double_quote_span_close] = true, }, - [71] = { + [59] = { [ts_external_token__code_span_close] = true, }, - [72] = { + [60] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__emphasis_close_underscore] = true, - }, - [73] = { - [ts_external_token_block_continuation] = true, - [ts_external_token__key_specifier_token] = true, + [ts_external_token__subscript_close] = true, }, - [74] = { - [ts_external_token__soft_line_ending] = true, - [ts_external_token__single_quote_span_close] = true, + [61] = { + [ts_external_token_fenced_div_note_id] = true, }, - [75] = { + [62] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__strikeout_close] = true, + [ts_external_token__emphasis_close_underscore] = true, }, - [76] = { + [63] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__strong_emphasis_close_star] = true, + [ts_external_token__strong_emphasis_close_underscore] = true, }, - [77] = { - [ts_external_token__soft_line_ending] = true, - [ts_external_token__double_quote_span_close] = true, + [64] = { + [ts_external_token_block_continuation] = true, + [ts_external_token__key_specifier_token] = true, }, - [78] = { + [65] = { [ts_external_token__soft_line_ending] = true, [ts_external_token__emphasis_close_star] = true, }, - [79] = { + [66] = { [ts_external_token__soft_line_ending] = true, [ts_external_token__superscript_close] = true, }, - [80] = { + [67] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__subscript_close] = true, + [ts_external_token__strikeout_close] = true, }, - [81] = { + [68] = { [ts_external_token__soft_line_ending] = true, - [ts_external_token__strong_emphasis_close_underscore] = true, + [ts_external_token__single_quote_span_close] = true, }, - [82] = { + [69] = { [ts_external_token__line_ending] = true, [ts_external_token__eof] = true, }, - [83] = { + [70] = { [ts_external_token__key_specifier_token] = true, [ts_external_token__shortcode_close_escaped] = true, }, - [84] = { + [71] = { [ts_external_token__key_specifier_token] = true, [ts_external_token__shortcode_close] = true, }, - [85] = { + [72] = { [ts_external_token__line_ending] = true, [ts_external_token__pipe_table_delimiter] = true, }, - [86] = { - [ts_external_token__line_ending] = true, - [ts_external_token_block_continuation] = true, - [ts_external_token__eof] = true, + [73] = { + [ts_external_token__language_specifier_token] = true, }, - [87] = { + [74] = { [ts_external_token_block_continuation] = true, [ts_external_token__shortcode_open] = true, }, - [88] = { - [ts_external_token__language_specifier_token] = true, + [75] = { + [ts_external_token__line_ending] = true, + [ts_external_token_block_continuation] = true, + [ts_external_token__eof] = true, }, - [89] = { + [76] = { [ts_external_token__block_close] = true, [ts_external_token__fenced_code_block_end_backtick] = true, }, - [90] = { - [ts_external_token__block_close] = true, + [77] = { [ts_external_token_block_continuation] = true, + [ts_external_token__blank_line_start] = true, }, - [91] = { - [ts_external_token_block_continuation] = true, + [78] = { [ts_external_token__blank_line_start] = true, }, - [92] = { + [79] = { + [ts_external_token__block_close] = true, + [ts_external_token_block_continuation] = true, + }, + [80] = { [ts_external_token_block_continuation] = true, [ts_external_token__close_block] = true, }, - [93] = { - [ts_external_token__blank_line_start] = true, + [81] = { + [ts_external_token__double_quote_span_close] = true, }, - [94] = { + [82] = { + [ts_external_token__block_close] = true, + }, + [83] = { + [ts_external_token__single_quote_span_close] = true, + }, + [84] = { [ts_external_token__strikeout_close] = true, }, - [95] = { + [85] = { [ts_external_token__subscript_close] = true, }, - [96] = { - [ts_external_token__close_block] = true, - }, - [97] = { + [86] = { [ts_external_token__superscript_close] = true, }, - [98] = { - [ts_external_token__block_close] = true, - }, - [99] = { + [87] = { [ts_external_token__strong_emphasis_close_star] = true, }, - [100] = { - [ts_external_token__single_quote_span_close] = true, - }, - [101] = { - [ts_external_token__double_quote_span_close] = true, - }, - [102] = { + [88] = { [ts_external_token__strong_emphasis_close_underscore] = true, }, - [103] = { + [89] = { [ts_external_token__emphasis_close_star] = true, }, - [104] = { + [90] = { [ts_external_token__emphasis_close_underscore] = true, }, + [91] = { + [ts_external_token__close_block] = true, + }, }; #ifdef __cplusplus 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 d5a16ed..8925d0e 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/src/scanner.c @@ -122,6 +122,8 @@ typedef enum { HTML_ELEMENT, // simply for good error reporting PIPE_TABLE_DELIMITER, // to allow naked '|' in markdown + + PANDOC_LINE_BREAK, } TokenType; #ifdef SCAN_DEBUG @@ -1918,6 +1920,24 @@ static bool parse_caret(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { return false; } +static bool parse_line_break(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { + // unused + (void)(s); + (void)(valid_symbols); + + // we've seen \, so now we need to decide if it's an escaped character or a line break + + lexer->advance(lexer, false); + if (lexer->eof(lexer) || lexer->lookahead == '\r' || lexer->lookahead == '\n') { + // do not eat the newline (to allow blocks to end), but emit line break + lexer->mark_end(lexer); + EMIT_TOKEN(PANDOC_LINE_BREAK); + } + // we've advanced the lexer, so we can no longer try to match other tokens. + // return control to internal lexer + return false; +} + static int match_line(Scanner *s, TSLexer *lexer) { // DEBUG_PRINT("in match_line\n"); // DEBUG_EXP("%d", (int)s->indentation); @@ -2157,6 +2177,10 @@ static bool scan(Scanner *s, TSLexer *lexer, const bool *valid_symbols) { break; case '@': return parse_cite_author_in_text(s, lexer, valid_symbols); + case '\\': + if (valid_symbols[PANDOC_LINE_BREAK]) { + return parse_line_break(s, lexer, valid_symbols); + } } DEBUG_HERE; if (lexer->lookahead == '|' && valid_symbols[PIPE_TABLE_DELIMITER]) { diff --git a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/paragraph.txt b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/paragraph.txt index 0815484..244082d 100644 --- a/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/paragraph.txt +++ b/crates/tree-sitter-qmd/tree-sitter-markdown/test/corpus/paragraph.txt @@ -40,7 +40,7 @@ Yes: this. And `this`: and _that_: too. (pandoc_space) (pandoc_str)))) ================================================================================ -paragraph.txt 3: hard line breaks +paragraph.txt 3: hard line breaks (pandoc_soft_break cleaned up in postprocess) ================================================================================ Hello\ World @@ -50,4 +50,5 @@ World (pandoc_paragraph (pandoc_str) (pandoc_line_break) + (pandoc_soft_break) (pandoc_str)))) \ No newline at end of file